From 3213c47188cc96d84a1108261ab83a57882cd51c Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Mon, 25 Feb 2013 08:18:02 +0100 Subject: [PATCH 01/40] Use count SQL to check for user existance --- lib/user/database.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/user/database.php b/lib/user/database.php index 210c7f3e1e..5eff8f199b 100644 --- a/lib/user/database.php +++ b/lib/user/database.php @@ -237,13 +237,13 @@ class OC_User_Database extends OC_User_Backend { * @return boolean */ public function userExists($uid) { - $query = OC_DB::prepare( 'SELECT * FROM `*PREFIX*users` WHERE LOWER(`uid`) = LOWER(?)' ); + $query = OC_DB::prepare( 'SELECT COUNT(*) FROM `*PREFIX*users` WHERE LOWER(`uid`) = LOWER(?)' ); $result = $query->execute( array( $uid )); if (OC_DB::isError($result)) { OC_Log::write('core', OC_DB::getErrorMessage($result), OC_Log::ERROR); return false; } - return $result->numRows() > 0; + return $result->fetchColumn() > 0; } /** From fa8214ecc99ff8de41b748edffed1f11155e53f8 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Sat, 6 Apr 2013 15:38:30 +0200 Subject: [PATCH 02/40] Use the MDB2 function to get the count result --- lib/user/database.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/user/database.php b/lib/user/database.php index 5eff8f199b..ea938790d2 100644 --- a/lib/user/database.php +++ b/lib/user/database.php @@ -243,7 +243,7 @@ class OC_User_Database extends OC_User_Backend { OC_Log::write('core', OC_DB::getErrorMessage($result), OC_Log::ERROR); return false; } - return $result->fetchColumn() > 0; + return $result->fetchOne() > 0; } /** From 870b73ce5a3140da651033696b47eccf676869b1 Mon Sep 17 00:00:00 2001 From: Thomas Tanghus Date: Sat, 6 Apr 2013 23:24:43 +0200 Subject: [PATCH 03/40] Add octemplate jQuery plugin --- core/js/octemplate.js | 96 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 96 insertions(+) create mode 100644 core/js/octemplate.js diff --git a/core/js/octemplate.js b/core/js/octemplate.js new file mode 100644 index 0000000000..f25f70eb37 --- /dev/null +++ b/core/js/octemplate.js @@ -0,0 +1,96 @@ +/** + * jQuery plugin for micro templates + * + * Strings are automatically escaped, but that can be disabled by setting escapeFunction to null. + * + * Usage examples: + * + * var str = 'Bake, uncovered, until the {greasystuff} is melted and the {pasta} is heated through, about {min} minutes.' + * $(str).octemplate({greasystuff: 'cheese', pasta: 'macaroni', min: 10}); + * + * var htmlStr = '

Welcome back {user}

'; + * $(htmlStr).octemplate({user: 'John Q. Public'}, {escapeFunction: null}); + * + * For anything larger than one-liners, you can use a simple $.get() ajax request to get the template, + * or you can embed them it the page using the text/template type: + * + * + * + * var $tmpl = $('#contactListItemTemplate'); + * var contacts = // fetched in some ajax call + * + * $.each(contacts, function(idx, contact) { + * $contactList.append( + * $tmpl.octemplate({ + * id: contact.getId(), + * name: contact.getDisplayName(), + * email: contact.getPreferredEmail(), + * phone: contact.getPreferredPhone(), + * }); + * ); + * }); + */ +(function( $ ) { + /** + * Object Template + * Inspired by micro templating done by e.g. underscore.js + */ + var Template = { + init: function(vars, options, elem) { + // Mix in the passed in options with the default options + this.vars = vars; + this.options = $.extend({},this.options,options); + + this.elem = elem; + var self = this; + + if(typeof this.options.escapeFunction === 'function') { + $.each(this.vars, function(key, val) { + if(typeof val === 'string') { + self.vars[key] = self.options.escapeFunction(val); + } + }); + } + + var _html = this._build(this.vars); + return $(_html); + }, + // From stackoverflow.com/questions/1408289/best-way-to-do-variable-interpolation-in-javascript + _build: function(o){ + var data = this.elem.attr('type') === 'text/template' ? this.elem.html() : this.elem.get(0).outerHTML; + try { + return data.replace(/{([^{}]*)}/g, + function (a, b) { + var r = o[b]; + return typeof r === 'string' || typeof r === 'number' ? r : a; + } + ); + } catch(e) { + console.error(e, 'data:', data) + } + }, + options: { + escapeFunction: function(str) {return $('').text(str).html();} + } + }; + + $.fn.octemplate = function(vars, options) { + var vars = vars ? vars : {}; + if(this.length) { + var _template = Object.create(Template); + return _template.init(vars, options, this); + } + }; + +})( jQuery ); + From 2180a4c4205466e34888f689bdbf1c7624c3ad87 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Fri, 12 Apr 2013 00:58:14 +0200 Subject: [PATCH 04/40] -L10N: cache the result of findLanguage --- lib/l10n.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lib/l10n.php b/lib/l10n.php index 1e07a9b955..315e326b29 100644 --- a/lib/l10n.php +++ b/lib/l10n.php @@ -298,10 +298,16 @@ class OC_L10N{ $temp = explode(';', $i); $temp[0] = str_replace('-', '_', $temp[0]); if( ($key = array_search($temp[0], $available)) !== false) { + if (is_null($app)) { + self::$language = $available[$key]; + } return $available[$key]; } foreach($available as $l) { if ( $temp[0] == substr($l, 0, 2) ) { + if (is_null($app)) { + self::$language = $l; + } return $l; } } From a56dc4bc94fb02081049d107040e5eb437c849eb Mon Sep 17 00:00:00 2001 From: Bernhard Posselt Date: Fri, 12 Apr 2013 14:30:16 +0200 Subject: [PATCH 05/40] dont overwrite background image when hovering over button --- core/css/styles.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/css/styles.css b/core/css/styles.css index c54f02ec62..823e5af08a 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -89,7 +89,7 @@ input[type="button"]:hover, input[type="button"]:focus, button:hover, button:focus, .button:hover, .button:focus, select:hover, select:focus, select:active { - background:rgba(250,250,250,.9); + background-color:rgba(250,250,250,.9); color:#333; } input[type="submit"] img, input[type="button"] img, button img, .button img { cursor:pointer; } From 5228eb8a18beb77df0eebff3a0adfa943e391ff7 Mon Sep 17 00:00:00 2001 From: raghunayyar Date: Fri, 12 Apr 2013 18:15:59 +0530 Subject: [PATCH 06/40] Add span tag while enabling or disbling apps as well. --- settings/js/apps.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/settings/js/apps.js b/settings/js/apps.js index 182fc16466..9c1604cfcd 100644 --- a/settings/js/apps.js +++ b/settings/js/apps.js @@ -142,7 +142,9 @@ OC.Settings.Apps = OC.Settings.Apps || { li.attr('data-id', entry.id); var img= $('').attr({ src: entry.icon}); var a=$('').attr('href', entry.href); - a.text(entry.name); + var filename=$('') + filename.text(entry.name); + a.prepend(filename); a.prepend(img); li.append(a); container.append(li); From c9c83c618575efe13b3bcc0376174a74b5d8b582 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Fri, 12 Apr 2013 19:18:11 +0200 Subject: [PATCH 07/40] add .disabled class so it can be used for simple a buttons as well --- core/css/styles.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/css/styles.css b/core/css/styles.css index 823e5af08a..47973a5f2a 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -98,7 +98,8 @@ input[type="submit"] img, input[type="button"] img, button img, .button img { cu /* disabled input fields and buttons */ input:disabled, input:disabled:hover, input:disabled:focus, button:disabled, button:disabled:hover, button:disabled:focus, -.button:disabled, .button:disabled:hover, .button:disabled:focus { +.button:disabled, .button:disabled:hover, .button:disabled:focus, +a.disabled, a.disabled:hover, a.disabled:focus { background: rgba(230,230,230,.9); color: #999; cursor: default; From e3b733f23d2f4f73f4331d74b8e3f2fca8b5f673 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Sat, 13 Apr 2013 00:33:21 +0200 Subject: [PATCH 08/40] allow Storages to join MountPoint initialization --- lib/files/filesystem.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/files/filesystem.php b/lib/files/filesystem.php index 6f56de9f26..c8e62956f1 100644 --- a/lib/files/filesystem.php +++ b/lib/files/filesystem.php @@ -23,6 +23,7 @@ * post_rename(oldpath,newpath) * copy(oldpath,newpath, &run) (if the newpath doesn't exists yes, copy, create and write will be emitted in that order) * post_rename(oldpath,newpath) + * post_initMountPoints(user, user_dir) * * the &run parameter can be set to false to prevent the operation from occurring */ @@ -280,6 +281,9 @@ class Filesystem { } } } + + // Chance to mount for other storages + \OC_Hook::emit('OC_Filesystem', 'post_initMountPoints', array('user' => $user, 'user_dir' => $root)); } /** From 19afc216cfb76e0896b3e9292561eb9992327443 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Sat, 13 Apr 2013 02:15:54 +0200 Subject: [PATCH 09/40] [tx-robot] updated from transifex --- apps/files/l10n/ka_GE.php | 25 +++- apps/files/l10n/pl.php | 1 + apps/files_encryption/l10n/ka_GE.php | 7 ++ apps/files_external/l10n/ka_GE.php | 22 +++- apps/files_sharing/l10n/ka_GE.php | 3 + apps/files_trashbin/l10n/ka_GE.php | 11 +- apps/files_versions/l10n/ka_GE.php | 11 ++ apps/user_ldap/l10n/ka_GE.php | 2 + apps/user_webdavauth/l10n/ka_GE.php | 5 + core/l10n/ka_GE.php | 48 +++++++- l10n/ka_GE/core.po | 128 ++++++++++----------- l10n/ka_GE/files.po | 53 ++++----- l10n/ka_GE/files_encryption.po | 17 +-- l10n/ka_GE/files_external.po | 51 +++++---- l10n/ka_GE/files_sharing.po | 21 ++-- l10n/ka_GE/files_trashbin.po | 25 ++-- l10n/ka_GE/files_versions.po | 29 ++--- l10n/ka_GE/lib.po | 79 ++++++------- l10n/ka_GE/settings.po | 165 ++++++++++++++------------- l10n/ka_GE/user_ldap.po | 124 ++++++++++---------- l10n/ka_GE/user_webdavauth.po | 15 +-- l10n/pl/files.po | 8 +- l10n/sq/settings.po | 6 +- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- lib/l10n/ka_GE.php | 38 +++++- settings/l10n/ka_GE.php | 71 +++++++++++- settings/l10n/sq.php | 1 + 37 files changed, 610 insertions(+), 378 deletions(-) create mode 100644 apps/files_encryption/l10n/ka_GE.php create mode 100644 apps/files_versions/l10n/ka_GE.php create mode 100644 apps/user_webdavauth/l10n/ka_GE.php diff --git a/apps/files/l10n/ka_GE.php b/apps/files/l10n/ka_GE.php index bdaf4d0a5c..6ea75a2ea9 100644 --- a/apps/files/l10n/ka_GE.php +++ b/apps/files/l10n/ka_GE.php @@ -1,11 +1,19 @@ "%s –ის გადატანა ვერ მოხერხდა – ფაილი ამ სახელით უკვე არსებობს", +"Could not move %s" => "%s –ის გადატანა ვერ მოხერხდა", +"Unable to rename file" => "ფაილის სახელის გადარქმევა ვერ მოხერხდა", +"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: " => "ატვირთული ფაილი აჭარბებს upload_max_filesize დირექტივას php.ini ფაილში", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "ატვირთული ფაილი აჭარბებს MAX_FILE_SIZE დირექტივას, რომელიც მითითებულია HTML ფორმაში", "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" => "ფაილები", +"Delete permanently" => "სრულად წაშლა", "Delete" => "წაშლა", "Rename" => "გადარქმევა", "Pending" => "მოცდის რეჟიმში", @@ -15,10 +23,21 @@ "cancel" => "უარყოფა", "replaced {new_name} with {old_name}" => "{new_name} შეცვლილია {old_name}–ით", "undo" => "დაბრუნება", +"perform delete operation" => "მიმდინარეობს წაშლის ოპერაცია", "1 file uploading" => "1 ფაილის ატვირთვა", +"files uploading" => "ფაილები იტვირთება", +"'.' is an invalid file name." => "'.' არის დაუშვებელი ფაილის სახელი.", +"File name cannot be empty." => "ფაილის სახელი არ შეიძლება იყოს ცარიელი.", +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "არადაშვებადი სახელი, '\\', '/', '<', '>', ':', '\"', '|', '?' და '*' არ არის დაიშვებული.", +"Your storage is full, files can not be updated or synced anymore!" => "თქვენი საცავი გადაივსო. ფაილების განახლება და სინქრონიზირება ვერ მოხერხდება!", +"Your storage is almost full ({usedSpacePercent}%)" => "თქვენი საცავი თითქმის გადაივსო ({usedSpacePercent}%)", +"Your download is being prepared. This might take some time if the files are big." => "გადმოწერის მოთხოვნა მუშავდება. ის მოითხოვს გარკვეულ დროს რაგდან ფაილები არის დიდი ზომის.", "Unable to upload your file as it is a directory or has 0 bytes" => "თქვენი ფაილის ატვირთვა ვერ მოხერხდა. ის არის საქაღალდე და შეიცავს 0 ბაიტს", +"Not enough space available" => "საკმარისი ადგილი არ არის", "Upload cancelled." => "ატვირთვა შეჩერებულ იქნა.", "File upload is in progress. Leaving the page now will cancel the upload." => "მიმდინარეობს ფაილის ატვირთვა. სხვა გვერდზე გადასვლა გამოიწვევს ატვირთვის შეჩერებას", +"URL cannot be empty." => "URL არ შეიძლება იყოს ცარიელი.", +"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "დაუშვებელი ფოლდერის სახელი. 'Shared'–ის გამოყენება რეზერვირებულია Owncloud–ის მიერ", "Error" => "შეცდომა", "Name" => "სახელი", "Size" => "ზომა", @@ -39,12 +58,16 @@ "New" => "ახალი", "Text file" => "ტექსტური ფაილი", "Folder" => "საქაღალდე", +"From link" => "მისამართიდან", +"Deleted files" => "წაშლილი ფაილები", "Cancel upload" => "ატვირთვის გაუქმება", +"You don’t have write permissions here." => "თქვენ არ გაქვთ ჩაწერის უფლება აქ.", "Nothing in here. Upload something!" => "აქ არაფერი არ არის. ატვირთე რამე!", "Download" => "ჩამოტვირთვა", "Unshare" => "გაზიარების მოხსნა", "Upload too large" => "ასატვირთი ფაილი ძალიან დიდია", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "ფაილის ზომა რომლის ატვირთვასაც თქვენ აპირებთ, აჭარბებს სერვერზე დაშვებულ მაქსიმუმს.", "Files are being scanned, please wait." => "მიმდინარეობს ფაილების სკანირება, გთხოვთ დაელოდოთ.", -"Current scanning" => "მიმდინარე სკანირება" +"Current scanning" => "მიმდინარე სკანირება", +"Upgrading filesystem cache..." => "ფაილური სისტემის ქეშის განახლება...." ); diff --git a/apps/files/l10n/pl.php b/apps/files/l10n/pl.php index ae705aec4e..e9a78e2f44 100644 --- a/apps/files/l10n/pl.php +++ b/apps/files/l10n/pl.php @@ -25,6 +25,7 @@ "undo" => "cofnij", "perform delete operation" => "wykonaj operację usunięcia", "1 file uploading" => "1 plik wczytywany", +"files uploading" => "pliki wczytane", "'.' is an invalid file name." => "„.” jest nieprawidłową nazwą pliku.", "File name cannot be empty." => "Nazwa pliku nie może być pusta.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nieprawidłowa nazwa. Znaki '\\', '/', '<', '>', ':', '\"', '|', '?' oraz '*' są niedozwolone.", diff --git a/apps/files_encryption/l10n/ka_GE.php b/apps/files_encryption/l10n/ka_GE.php new file mode 100644 index 0000000000..0362c676f0 --- /dev/null +++ b/apps/files_encryption/l10n/ka_GE.php @@ -0,0 +1,7 @@ + "ენკრიპცია", +"File encryption is enabled." => "ფაილის ენკრიპცია ჩართულია.", +"The following file types will not be encrypted:" => "შემდეგი ფაილური ტიპების ენკრიპცია არ მოხდება:", +"Exclude the following file types from encryption:" => "ამოიღე შემდეგი ფაილის ტიპები ენკრიპციიდან:", +"None" => "არა" +); diff --git a/apps/files_external/l10n/ka_GE.php b/apps/files_external/l10n/ka_GE.php index efccca9fd7..d10f82849d 100644 --- a/apps/files_external/l10n/ka_GE.php +++ b/apps/files_external/l10n/ka_GE.php @@ -1,5 +1,25 @@ "დაშვება მინიჭებულია", +"Error configuring Dropbox storage" => "შეცდომა Dropbox საცავის კონფიგურირების დროს", +"Grant access" => "დაშვების მინიჭება", +"Please provide a valid Dropbox app key and secret." => "გთხოვთ მიუთითოთ Dropbox აპლიკაციის გასაღები და კოდი.", +"Error configuring Google Drive storage" => "შეცდომა Google Drive საცავის კონფიგურირების დროს", +"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "გაფრთხილება: \"smbclient\" არ არის ინსტალირებული. CIFS/SMB ზიარების მონტირება შეუძლებელია. გთხოვთ თხოვოთ თქვენს სისტემურ ადმინისტრატორებს დააინსტალიროს ის.", +"Warning: The FTP support in PHP is not enabled or installed. Mounting of FTP shares is not possible. Please ask your system administrator to install it." => "გაფრთხილება: FTP მხარდაჭერა არ არის აქტიური ან დაინსტალირებული. FTP ზიარის მონტირება შეუძლებელია. გთხოვთ თხოვოთ თქვენს სისტემურ ადმინისტრატორებს დააინსტალიროს ის.", +"External Storage" => "ექსტერნალ საცავი", +"Folder name" => "ფოლდერის სახელი", +"External storage" => "ექსტერნალ საცავი", +"Configuration" => "კონფიგურაცია", +"Options" => "ოფცია", +"Applicable" => "მიღებადი", +"Add storage" => "საცავის დამატება", +"None set" => "არაფერია მითითებული", +"All Users" => "ყველა მომხმარებელი", "Groups" => "ჯგუფები", "Users" => "მომხმარებელი", -"Delete" => "წაშლა" +"Delete" => "წაშლა", +"Enable User External Storage" => "მომხმარებლის ექსტერნალ საცავის აქტივირება", +"Allow users to mount their own external storage" => "მიეცით მომხმარებლებს თავისი ექსტერნალ საცავის მონტირების უფლება", +"SSL root certificates" => "SSL root სერთიფიკატები", +"Import Root Certificate" => "Root სერთიფიკატის იმპორტირება" ); diff --git a/apps/files_sharing/l10n/ka_GE.php b/apps/files_sharing/l10n/ka_GE.php index ef42196d2c..6da1a8b019 100644 --- a/apps/files_sharing/l10n/ka_GE.php +++ b/apps/files_sharing/l10n/ka_GE.php @@ -1,6 +1,9 @@ "პაროლი", "Submit" => "გაგზავნა", +"%s shared the folder %s with you" => "%s–მა გაგიზიარათ ფოლდერი %s", +"%s shared the file %s with you" => "%s–მა გაგიზიარათ ფაილი %s", "Download" => "ჩამოტვირთვა", +"No preview available for" => "წინასწარი დათვალიერება შეუძლებელია", "web services under your control" => "web services under your control" ); diff --git a/apps/files_trashbin/l10n/ka_GE.php b/apps/files_trashbin/l10n/ka_GE.php index 6aa1709546..667eb500eb 100644 --- a/apps/files_trashbin/l10n/ka_GE.php +++ b/apps/files_trashbin/l10n/ka_GE.php @@ -1,9 +1,18 @@ "ფაილი %s–ის სრულად წაშლა ვერ მოხერხდა", +"Couldn't restore %s" => "%s–ის აღდგენა ვერ მოხერხდა", +"perform restore operation" => "მიმდინარეობს აღდგენის ოპერაცია", "Error" => "შეცდომა", +"delete file permanently" => "ფაილის სრულად წაშლა", +"Delete permanently" => "სრულად წაშლა", "Name" => "სახელი", +"Deleted" => "წაშლილი", "1 folder" => "1 საქაღალდე", "{count} folders" => "{count} საქაღალდე", "1 file" => "1 ფაილი", "{count} files" => "{count} ფაილი", -"Delete" => "წაშლა" +"Nothing in here. Your trash bin is empty!" => "აქ არაფერი არ არის. სანაგვე ყუთი ცარიელია!", +"Restore" => "აღდგენა", +"Delete" => "წაშლა", +"Deleted Files" => "წაშლილი ფაილები" ); diff --git a/apps/files_versions/l10n/ka_GE.php b/apps/files_versions/l10n/ka_GE.php new file mode 100644 index 0000000000..6856d647da --- /dev/null +++ b/apps/files_versions/l10n/ka_GE.php @@ -0,0 +1,11 @@ + "ვერ მოხერხდა უკან დაბრუნება: %s", +"success" => "დასრულდა", +"File %s was reverted to version %s" => "ფაილი %s დაბრუნდა ვერსიაზე %s", +"failure" => "შეცდომა", +"File %s could not be reverted to version %s" => "ვერ მოხერხდა %s ფაილის %s ვერსიაზე დაბრუნება", +"No old versions available" => "ძველი ვერსია არ არსებობს", +"No path specified" => "გზა არ არის მითითებული", +"Versions" => "ვერსიები", +"Revert a file to a previous version by clicking on its revert button" => "დააბრუნეთ ფაილი წინა პოზიციაზე revert ღილაკზე დაჭერით" +); diff --git a/apps/user_ldap/l10n/ka_GE.php b/apps/user_ldap/l10n/ka_GE.php index b31767fe93..0385103f9b 100644 --- a/apps/user_ldap/l10n/ka_GE.php +++ b/apps/user_ldap/l10n/ka_GE.php @@ -1,4 +1,6 @@ "წაშლის ველი", +"Host" => "ჰოსტი", +"Port" => "პორტი", "Help" => "დახმარება" ); diff --git a/apps/user_webdavauth/l10n/ka_GE.php b/apps/user_webdavauth/l10n/ka_GE.php new file mode 100644 index 0000000000..f475ea0b73 --- /dev/null +++ b/apps/user_webdavauth/l10n/ka_GE.php @@ -0,0 +1,5 @@ + "WebDAV აუთენთიფიკაცია", +"URL: http://" => "URL: http://", +"ownCloud will send the user credentials to this URL. This plugin checks the response and will interpret the HTTP statuscodes 401 and 403 as invalid credentials, and all other responses as valid credentials." => "ownCloud–ი გამოგიგზავნით ანგარიშის მონაცემებს ამ URL–ზე. ეს პლაგინი შეამოწმებს პასუხს და მოახდენს მის ინტერპრეტაციას HTTP სტატუსკოდებში 401 და 403 დაუშვებელი მონაცემებისთვის, ხოლო სხვა დანარჩენს დაშვებადი მონაცემებისთვის." +); diff --git a/core/l10n/ka_GE.php b/core/l10n/ka_GE.php index 4cdada58d9..190a2f5eab 100644 --- a/core/l10n/ka_GE.php +++ b/core/l10n/ka_GE.php @@ -1,6 +1,16 @@ "მომხმარებელმა %s გაგიზიარათ ფაილი", +"User %s shared a folder with you" => "მომხმარებელმა %s გაგიზიარათ ფოლდერი", +"User %s shared the file \"%s\" with you. It is available for download here: %s" => "მომხმარებელმა %s გაგიზიარათ ფაილი \"%s\". ის ხელმისაწვდომია გადმოსაწერად აქ: %s", +"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "მომხმარებელმა %s გაგიზიარათ ფოლდერი \"%s\". ის ხელმისაწვდომია გადმოსაწერად აქ: %s", +"Category type not provided." => "კატეგორიის ტიპი არ არის განხილული.", "No category to add?" => "არ არის კატეგორია დასამატებლად?", +"This category already exists: %s" => "კატეგორია უკვე არსებობს: %s", +"Object type not provided." => "ობიექტის ტიპი არ არის განხილული.", +"%s ID not provided." => "%s ID არ არის განხილული", +"Error adding %s to favorites." => "შეცდომა %s–ის ფევორიტებში დამატების დროს.", "No categories selected for deletion." => "სარედაქტირებელი კატეგორია არ არის არჩეული ", +"Error removing %s from favorites." => "შეცდომა %s–ის ფევორიტებიდან წაშლის დროს.", "Sunday" => "კვირა", "Monday" => "ორშაბათი", "Tuesday" => "სამშაბათი", @@ -24,32 +34,44 @@ "seconds ago" => "წამის წინ", "1 minute ago" => "1 წუთის წინ", "{minutes} minutes ago" => "{minutes} წუთის წინ", +"1 hour ago" => "1 საათის წინ", +"{hours} hours ago" => "{hours} საათის წინ", "today" => "დღეს", "yesterday" => "გუშინ", "{days} days ago" => "{days} დღის წინ", "last month" => "გასულ თვეში", +"{months} months ago" => "{months} თვის წინ", "months ago" => "თვის წინ", "last year" => "ბოლო წელს", "years ago" => "წლის წინ", -"Choose" => "არჩევა", -"Cancel" => "უარყოფა", -"No" => "არა", -"Yes" => "კი", "Ok" => "დიახ", +"Cancel" => "უარყოფა", +"Choose" => "არჩევა", +"Yes" => "კი", +"No" => "არა", +"The object type is not specified." => "ობიექტის ტიპი არ არის მითითებული.", "Error" => "შეცდომა", +"The app name is not specified." => "აპლიკაციის სახელი არ არის მითითებული.", +"The required file {file} is not installed!" => "მოთხოვნილი ფაილი {file} არ არის დაინსტალირებული.", +"Shared" => "გაზიარებული", "Share" => "გაზიარება", "Error while sharing" => "შეცდომა გაზიარების დროს", "Error while unsharing" => "შეცდომა გაზიარების გაუქმების დროს", "Error while changing permissions" => "შეცდომა დაშვების ცვლილების დროს", +"Shared with you and the group {group} by {owner}" => "გაზიარდა თქვენთვის და ჯგუფისთვის {group}, {owner}–ის მიერ", +"Shared with you by {owner}" => "გაზიარდა თქვენთვის {owner}–ის მიერ", "Share with" => "გაუზიარე", "Share with link" => "გაუზიარე ლინკით", "Password protect" => "პაროლით დაცვა", "Password" => "პაროლი", +"Email link to person" => "ლინკის პიროვნების იმეილზე გაგზავნა", +"Send" => "გაგზავნა", "Set expiration date" => "მიუთითე ვადის გასვლის დრო", "Expiration date" => "ვადის გასვლის დრო", "Share via email:" => "გააზიარე მეილზე", "No people found" => "მომხმარებელი არ არის ნაპოვნი", "Resharing is not allowed" => "მეორეჯერ გაზიარება არ არის დაშვებული", +"Shared in {item} with {user}" => "გაზიარდა {item}–ში {user}–ის მიერ", "Unshare" => "გაზიარების მოხსნა", "can edit" => "შეგიძლია შეცვლა", "access control" => "დაშვების კონტროლი", @@ -60,9 +82,15 @@ "Password protected" => "პაროლით დაცული", "Error unsetting expiration date" => "შეცდომა ვადის გასვლის მოხსნის დროს", "Error setting expiration date" => "შეცდომა ვადის გასვლის მითითების დროს", +"Sending ..." => "გაგზავნა ....", +"Email sent" => "იმეილი გაიგზავნა", +"The update was unsuccessful. Please report this issue to the ownCloud community." => "განახლება ვერ განხორციელდა. გთხოვთ შეგვატყობინოთ ამ პრობლემის შესახებ აქ: ownCloud community.", +"The update was successful. Redirecting you to ownCloud now." => "განახლება ვერ განხორციელდა. გადამისამართება თქვენს ownCloud–ზე.", "ownCloud password reset" => "ownCloud პაროლის შეცვლა", "Use the following link to reset your password: {link}" => "გამოიყენე შემდეგი ლინკი პაროლის შესაცვლელად: {link}", "You will receive a link to reset your password via Email." => "თქვენ მოგივათ პაროლის შესაცვლელი ლინკი მეილზე", +"Reset email send." => "რესეტის მეილი გაიგზავნა", +"Request failed!" => "მოთხოვნა შეწყდა!", "Username" => "მომხმარებელი", "Request reset" => "პაროლის შეცვლის მოთხოვნა", "Your password was reset" => "თქვენი პაროლი შეცვლილია", @@ -79,10 +107,14 @@ "Edit categories" => "კატეგორიების რედაქტირება", "Add" => "დამატება", "Security Warning" => "უსაფრთხოების გაფრთხილება", +"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "თქვენი PHP ვერსია შეიცავს საფრთხეს NULL Byte შეტევებისთვის (CVE-2006-7243)", +"Please update your PHP installation to use ownCloud securely." => "იმისათვის რომ გამოიყენოთ ownCloud უსაფრთხოდ, გთხოვთ განაახლოთ თქვენი PHP ვერსია.", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "შემთხვევითი სიმბოლოების გენერატორი არ არსებობს, გთხოვთ ჩართოთ PHP OpenSSL გაფართოება.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "შემთხვევითი სიმბოლოების გენერატორის გარეშე, შემტევმა შეიძლება ამოიცნოს თქვენი პაროლი შეგიცვალოთ ის და დაეუფლოს თქვენს ექაუნთს.", +"Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "თქვენი data დირექტორია და ფაილები დაშვებადია ინტერნეტში რადგან .htaccess ფაილი არ მუშაობს.", +"For information how to properly configure your server, please see the documentation." => "სერვერის კორექტულად დასაკონფიგურირებლად, ნახეთ შემდეგი დოკუმენტაცია.", "Create an admin account" => "შექმენი ადმინ ექაუნტი", -"Advanced" => "Advanced", +"Advanced" => "დამატებითი ფუნქციები", "Data folder" => "მონაცემთა საქაღალდე", "Configure the database" => "მონაცემთა ბაზის კონფიგურირება", "will be used" => "გამოყენებული იქნება", @@ -95,9 +127,13 @@ "web services under your control" => "თქვენი კონტროლის ქვეშ მყოფი ვებ სერვისები", "Log out" => "გამოსვლა", "Automatic logon rejected!" => "ავტომატური შესვლა უარყოფილია!", +"If you did not change your password recently, your account may be compromised!" => "თუ თქვენ არ შეცვლით პაროლს, თქვენი ანგარიში შეიძლება იყოს დაშვებადი სხვებისთვის", +"Please change your password to secure your account again." => "გთხოვთ შეცვალოთ თქვენი პაროლი, თქვენი ანგარიშის დასაცავად.", "Lost your password?" => "დაგავიწყდათ პაროლი?", "remember" => "დამახსოვრება", "Log in" => "შესვლა", +"Alternative Logins" => "ალტერნატიული Login–ი", "prev" => "წინა", -"next" => "შემდეგი" +"next" => "შემდეგი", +"Updating ownCloud to version %s, this may take a while." => "ownCloud–ის განახლება %s–ვერსიამდე. ეს მოითხოვს გარკვეულ დროს." ); diff --git a/l10n/ka_GE/core.po b/l10n/ka_GE/core.po index ff47c61d8b..8f28e3ceb9 100644 --- a/l10n/ka_GE/core.po +++ b/l10n/ka_GE/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-13 02:12+0200\n" +"PO-Revision-Date: 2013-04-12 07:48+0000\n" +"Last-Translator: drlinux64 \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,30 +22,30 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "User %s shared a file with you" -msgstr "" +msgstr "მომხმარებელმა %s გაგიზიარათ ფაილი" #: ajax/share.php:99 #, php-format msgid "User %s shared a folder with you" -msgstr "" +msgstr "მომხმარებელმა %s გაგიზიარათ ფოლდერი" #: ajax/share.php:101 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "" +msgstr "მომხმარებელმა %s გაგიზიარათ ფაილი \"%s\". ის ხელმისაწვდომია გადმოსაწერად აქ: %s" #: ajax/share.php:104 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "" +msgstr "მომხმარებელმა %s გაგიზიარათ ფოლდერი \"%s\". ის ხელმისაწვდომია გადმოსაწერად აქ: %s" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." -msgstr "" +msgstr "კატეგორიის ტიპი არ არის განხილული." #: ajax/vcategories/add.php:30 msgid "No category to add?" @@ -54,24 +54,24 @@ msgstr "არ არის კატეგორია დასამატე #: ajax/vcategories/add.php:37 #, php-format msgid "This category already exists: %s" -msgstr "" +msgstr "კატეგორია უკვე არსებობს: %s" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 #: ajax/vcategories/removeFromFavorites.php:26 msgid "Object type not provided." -msgstr "" +msgstr "ობიექტის ტიპი არ არის განხილული." #: ajax/vcategories/addToFavorites.php:30 #: ajax/vcategories/removeFromFavorites.php:30 #, php-format msgid "%s ID not provided." -msgstr "" +msgstr "%s ID არ არის განხილული" #: ajax/vcategories/addToFavorites.php:35 #, php-format msgid "Error adding %s to favorites." -msgstr "" +msgstr "შეცდომა %s–ის ფევორიტებში დამატების დროს." #: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 msgid "No categories selected for deletion." @@ -80,7 +80,7 @@ msgstr "სარედაქტირებელი კატეგორი #: ajax/vcategories/removeFromFavorites.php:35 #, php-format msgid "Error removing %s from favorites." -msgstr "" +msgstr "შეცდომა %s–ის ფევორიტებიდან წაშლის დროს." #: js/config.php:34 msgid "Sunday" @@ -162,82 +162,82 @@ msgstr "დეკემბერი" msgid "Settings" msgstr "პარამეტრები" -#: js/js.js:707 +#: js/js.js:717 msgid "seconds ago" msgstr "წამის წინ" -#: js/js.js:708 +#: js/js.js:718 msgid "1 minute ago" msgstr "1 წუთის წინ" -#: js/js.js:709 +#: js/js.js:719 msgid "{minutes} minutes ago" msgstr "{minutes} წუთის წინ" -#: js/js.js:710 +#: js/js.js:720 msgid "1 hour ago" -msgstr "" +msgstr "1 საათის წინ" -#: js/js.js:711 +#: js/js.js:721 msgid "{hours} hours ago" -msgstr "" +msgstr "{hours} საათის წინ" -#: js/js.js:712 +#: js/js.js:722 msgid "today" msgstr "დღეს" -#: js/js.js:713 +#: js/js.js:723 msgid "yesterday" msgstr "გუშინ" -#: js/js.js:714 +#: js/js.js:724 msgid "{days} days ago" msgstr "{days} დღის წინ" -#: js/js.js:715 +#: js/js.js:725 msgid "last month" msgstr "გასულ თვეში" -#: js/js.js:716 +#: js/js.js:726 msgid "{months} months ago" -msgstr "" +msgstr "{months} თვის წინ" -#: js/js.js:717 +#: js/js.js:727 msgid "months ago" msgstr "თვის წინ" -#: js/js.js:718 +#: js/js.js:728 msgid "last year" msgstr "ბოლო წელს" -#: js/js.js:719 +#: js/js.js:729 msgid "years ago" msgstr "წლის წინ" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "არჩევა" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "დიახ" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "უარყოფა" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "არა" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "არჩევა" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "კი" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "დიახ" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "არა" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." -msgstr "" +msgstr "ობიექტის ტიპი არ არის მითითებული." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 @@ -249,15 +249,15 @@ msgstr "შეცდომა" #: js/oc-vcategories.js:179 msgid "The app name is not specified." -msgstr "" +msgstr "აპლიკაციის სახელი არ არის მითითებული." #: js/oc-vcategories.js:194 msgid "The required file {file} is not installed!" -msgstr "" +msgstr "მოთხოვნილი ფაილი {file} არ არის დაინსტალირებული." #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" -msgstr "" +msgstr "გაზიარებული" #: js/share.js:90 msgid "Share" @@ -277,11 +277,11 @@ msgstr "შეცდომა დაშვების ცვლილები #: js/share.js:152 msgid "Shared with you and the group {group} by {owner}" -msgstr "" +msgstr "გაზიარდა თქვენთვის და ჯგუფისთვის {group}, {owner}–ის მიერ" #: js/share.js:154 msgid "Shared with you by {owner}" -msgstr "" +msgstr "გაზიარდა თქვენთვის {owner}–ის მიერ" #: js/share.js:159 msgid "Share with" @@ -301,11 +301,11 @@ msgstr "პაროლი" #: js/share.js:173 msgid "Email link to person" -msgstr "" +msgstr "ლინკის პიროვნების იმეილზე გაგზავნა" #: js/share.js:174 msgid "Send" -msgstr "" +msgstr "გაგზავნა" #: js/share.js:178 msgid "Set expiration date" @@ -329,7 +329,7 @@ msgstr "მეორეჯერ გაზიარება არ არის #: js/share.js:287 msgid "Shared in {item} with {user}" -msgstr "" +msgstr "გაზიარდა {item}–ში {user}–ის მიერ" #: js/share.js:308 msgid "Unshare" @@ -373,22 +373,22 @@ msgstr "შეცდომა ვადის გასვლის მითი #: js/share.js:604 msgid "Sending ..." -msgstr "" +msgstr "გაგზავნა ...." #: js/share.js:615 msgid "Email sent" -msgstr "" +msgstr "იმეილი გაიგზავნა" #: js/update.js:14 msgid "" "The update was unsuccessful. Please report this issue to the ownCloud " "community." -msgstr "" +msgstr "განახლება ვერ განხორციელდა. გთხოვთ შეგვატყობინოთ ამ პრობლემის შესახებ აქ: ownCloud community." #: js/update.js:18 msgid "The update was successful. Redirecting you to ownCloud now." -msgstr "" +msgstr "განახლება ვერ განხორციელდა. გადამისამართება თქვენს ownCloud–ზე." #: lostpassword/controller.php:48 msgid "ownCloud password reset" @@ -404,11 +404,11 @@ msgstr "თქვენ მოგივათ პაროლის შესა #: lostpassword/templates/lostpassword.php:5 msgid "Reset email send." -msgstr "" +msgstr "რესეტის მეილი გაიგზავნა" #: lostpassword/templates/lostpassword.php:8 msgid "Request failed!" -msgstr "" +msgstr "მოთხოვნა შეწყდა!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 #: templates/login.php:28 @@ -478,11 +478,11 @@ msgstr "უსაფრთხოების გაფრთხილება" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" -msgstr "" +msgstr "თქვენი PHP ვერსია შეიცავს საფრთხეს NULL Byte შეტევებისთვის (CVE-2006-7243)" #: templates/installation.php:26 msgid "Please update your PHP installation to use ownCloud securely." -msgstr "" +msgstr "იმისათვის რომ გამოიყენოთ ownCloud უსაფრთხოდ, გთხოვთ განაახლოთ თქვენი PHP ვერსია." #: templates/installation.php:32 msgid "" @@ -500,14 +500,14 @@ msgstr "შემთხვევითი სიმბოლოების გ msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." -msgstr "" +msgstr "თქვენი data დირექტორია და ფაილები დაშვებადია ინტერნეტში რადგან .htaccess ფაილი არ მუშაობს." #: templates/installation.php:40 msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "" +msgstr "სერვერის კორექტულად დასაკონფიგურირებლად, ნახეთ შემდეგი დოკუმენტაცია." #: templates/installation.php:44 msgid "Create an admin account" @@ -515,7 +515,7 @@ msgstr "შექმენი ადმინ ექაუნტი, 2012. +# Romeo Pirtskhalava , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:09+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-13 02:12+0200\n" +"PO-Revision-Date: 2013-04-12 07:49+0000\n" +"Last-Translator: drlinux64 \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,20 +22,20 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "" +msgstr "%s –ის გადატანა ვერ მოხერხდა – ფაილი ამ სახელით უკვე არსებობს" #: ajax/move.php:27 ajax/move.php:30 #, php-format msgid "Could not move %s" -msgstr "" +msgstr "%s –ის გადატანა ვერ მოხერხდა" #: ajax/rename.php:22 ajax/rename.php:25 msgid "Unable to rename file" -msgstr "" +msgstr "ფაილის სახელის გადარქმევა ვერ მოხერხდა" #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" -msgstr "" +msgstr "ფაილი არ აიტვირთა. უცნობი შეცდომა" #: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" @@ -43,7 +44,7 @@ msgstr "ჭოცდომა არ დაფიქსირდა, ფაი #: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "" +msgstr "ატვირთული ფაილი აჭარბებს upload_max_filesize დირექტივას php.ini ფაილში" #: ajax/upload.php:29 msgid "" @@ -69,11 +70,11 @@ msgstr "შეცდომა დისკზე ჩაწერისას" #: ajax/upload.php:51 msgid "Not enough storage available" -msgstr "" +msgstr "საცავში საკმარისი ადგილი არ არის" #: ajax/upload.php:83 msgid "Invalid directory." -msgstr "" +msgstr "დაუშვებელი დირექტორია." #: appinfo/app.php:12 msgid "Files" @@ -81,7 +82,7 @@ msgstr "ფაილები" #: js/fileactions.js:125 msgid "Delete permanently" -msgstr "" +msgstr "სრულად წაშლა" #: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 msgid "Delete" @@ -121,7 +122,7 @@ msgstr "დაბრუნება" #: js/filelist.js:324 msgid "perform delete operation" -msgstr "" +msgstr "მიმდინარეობს წაშლის ოპერაცია" #: js/filelist.js:406 msgid "1 file uploading" @@ -129,35 +130,35 @@ msgstr "1 ფაილის ატვირთვა" #: js/filelist.js:409 js/filelist.js:463 msgid "files uploading" -msgstr "" +msgstr "ფაილები იტვირთება" #: js/files.js:52 msgid "'.' is an invalid file name." -msgstr "" +msgstr "'.' არის დაუშვებელი ფაილის სახელი." #: js/files.js:56 msgid "File name cannot be empty." -msgstr "" +msgstr "ფაილის სახელი არ შეიძლება იყოს ცარიელი." #: js/files.js:64 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." -msgstr "" +msgstr "არადაშვებადი სახელი, '\\', '/', '<', '>', ':', '\"', '|', '?' და '*' არ არის დაიშვებული." #: js/files.js:78 msgid "Your storage is full, files can not be updated or synced anymore!" -msgstr "" +msgstr "თქვენი საცავი გადაივსო. ფაილების განახლება და სინქრონიზირება ვერ მოხერხდება!" #: js/files.js:82 msgid "Your storage is almost full ({usedSpacePercent}%)" -msgstr "" +msgstr "თქვენი საცავი თითქმის გადაივსო ({usedSpacePercent}%)" #: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." -msgstr "" +msgstr "გადმოწერის მოთხოვნა მუშავდება. ის მოითხოვს გარკვეულ დროს რაგდან ფაილები არის დიდი ზომის." #: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" @@ -165,7 +166,7 @@ msgstr "თქვენი ფაილის ატვირთვა ვერ #: js/files.js:272 msgid "Not enough space available" -msgstr "" +msgstr "საკმარისი ადგილი არ არის" #: js/files.js:312 msgid "Upload cancelled." @@ -178,11 +179,11 @@ msgstr "მიმდინარეობს ფაილის ატვირ #: js/files.js:481 msgid "URL cannot be empty." -msgstr "" +msgstr "URL არ შეიძლება იყოს ცარიელი." #: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "" +msgstr "დაუშვებელი ფოლდერის სახელი. 'Shared'–ის გამოყენება რეზერვირებულია Owncloud–ის მიერ" #: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 msgid "Error" @@ -266,11 +267,11 @@ msgstr "საქაღალდე" #: templates/index.php:14 msgid "From link" -msgstr "" +msgstr "მისამართიდან" #: templates/index.php:42 msgid "Deleted files" -msgstr "" +msgstr "წაშლილი ფაილები" #: templates/index.php:48 msgid "Cancel upload" @@ -278,7 +279,7 @@ msgstr "ატვირთვის გაუქმება" #: templates/index.php:55 msgid "You don’t have write permissions here." -msgstr "" +msgstr "თქვენ არ გაქვთ ჩაწერის უფლება აქ." #: templates/index.php:62 msgid "Nothing in here. Upload something!" @@ -312,4 +313,4 @@ msgstr "მიმდინარე სკანირება" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." -msgstr "" +msgstr "ფაილური სისტემის ქეშის განახლება...." diff --git a/l10n/ka_GE/files_encryption.po b/l10n/ka_GE/files_encryption.po index 81a4932c14..c0eb489fc8 100644 --- a/l10n/ka_GE/files_encryption.po +++ b/l10n/ka_GE/files_encryption.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Romeo Pirtskhalava , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-13 02:12+0200\n" +"PO-Revision-Date: 2013-04-12 14:10+0000\n" +"Last-Translator: drlinux64 \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,20 +20,20 @@ msgstr "" #: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" -msgstr "" +msgstr "ენკრიპცია" #: templates/settings-personal.php:7 msgid "File encryption is enabled." -msgstr "" +msgstr "ფაილის ენკრიპცია ჩართულია." #: templates/settings-personal.php:11 msgid "The following file types will not be encrypted:" -msgstr "" +msgstr "შემდეგი ფაილური ტიპების ენკრიპცია არ მოხდება:" #: templates/settings.php:7 msgid "Exclude the following file types from encryption:" -msgstr "" +msgstr "ამოიღე შემდეგი ფაილის ტიპები ენკრიპციიდან:" #: templates/settings.php:12 msgid "None" -msgstr "" +msgstr "არა" diff --git a/l10n/ka_GE/files_external.po b/l10n/ka_GE/files_external.po index b38a37b7e5..c9092e688d 100644 --- a/l10n/ka_GE/files_external.po +++ b/l10n/ka_GE/files_external.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Romeo Pirtskhalava , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-13 02:12+0200\n" +"PO-Revision-Date: 2013-04-12 14:30+0000\n" +"Last-Translator: drlinux64 \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,72 +20,72 @@ msgstr "" #: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 msgid "Access granted" -msgstr "" +msgstr "დაშვება მინიჭებულია" #: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 msgid "Error configuring Dropbox storage" -msgstr "" +msgstr "შეცდომა Dropbox საცავის კონფიგურირების დროს" #: js/dropbox.js:65 js/google.js:66 msgid "Grant access" -msgstr "" +msgstr "დაშვების მინიჭება" #: js/dropbox.js:101 msgid "Please provide a valid Dropbox app key and secret." -msgstr "" +msgstr "გთხოვთ მიუთითოთ Dropbox აპლიკაციის გასაღები და კოდი." #: js/google.js:36 js/google.js:93 msgid "Error configuring Google Drive storage" -msgstr "" +msgstr "შეცდომა Google Drive საცავის კონფიგურირების დროს" -#: lib/config.php:421 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." -msgstr "" +msgstr "გაფრთხილება: \"smbclient\" არ არის ინსტალირებული. CIFS/SMB ზიარების მონტირება შეუძლებელია. გთხოვთ თხოვოთ თქვენს სისტემურ ადმინისტრატორებს დააინსტალიროს ის." -#: lib/config.php:424 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." -msgstr "" +msgstr "გაფრთხილება: FTP მხარდაჭერა არ არის აქტიური ან დაინსტალირებული. FTP ზიარის მონტირება შეუძლებელია. გთხოვთ თხოვოთ თქვენს სისტემურ ადმინისტრატორებს დააინსტალიროს ის." #: templates/settings.php:3 msgid "External Storage" -msgstr "" +msgstr "ექსტერნალ საცავი" #: templates/settings.php:9 templates/settings.php:28 msgid "Folder name" -msgstr "" +msgstr "ფოლდერის სახელი" #: templates/settings.php:10 msgid "External storage" -msgstr "" +msgstr "ექსტერნალ საცავი" #: templates/settings.php:11 msgid "Configuration" -msgstr "" +msgstr "კონფიგურაცია" #: templates/settings.php:12 msgid "Options" -msgstr "" +msgstr "ოფცია" #: templates/settings.php:13 msgid "Applicable" -msgstr "" +msgstr "მიღებადი" #: templates/settings.php:33 msgid "Add storage" -msgstr "" +msgstr "საცავის დამატება" #: templates/settings.php:90 msgid "None set" -msgstr "" +msgstr "არაფერია მითითებული" #: templates/settings.php:91 msgid "All Users" -msgstr "" +msgstr "ყველა მომხმარებელი" #: templates/settings.php:92 msgid "Groups" @@ -101,16 +102,16 @@ msgstr "წაშლა" #: templates/settings.php:129 msgid "Enable User External Storage" -msgstr "" +msgstr "მომხმარებლის ექსტერნალ საცავის აქტივირება" #: templates/settings.php:130 msgid "Allow users to mount their own external storage" -msgstr "" +msgstr "მიეცით მომხმარებლებს თავისი ექსტერნალ საცავის მონტირების უფლება" #: templates/settings.php:141 msgid "SSL root certificates" -msgstr "" +msgstr "SSL root სერთიფიკატები" #: templates/settings.php:159 msgid "Import Root Certificate" -msgstr "" +msgstr "Root სერთიფიკატის იმპორტირება" diff --git a/l10n/ka_GE/files_sharing.po b/l10n/ka_GE/files_sharing.po index 8b33377df9..2edbce0e43 100644 --- a/l10n/ka_GE/files_sharing.po +++ b/l10n/ka_GE/files_sharing.po @@ -4,12 +4,13 @@ # # Translators: # , 2012. +# Romeo Pirtskhalava , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-27 00:01+0200\n" -"PO-Revision-Date: 2012-10-26 12:58+0000\n" +"POT-Creation-Date: 2013-04-13 02:12+0200\n" +"PO-Revision-Date: 2013-04-12 11:09+0000\n" "Last-Translator: drlinux64 \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -26,24 +27,24 @@ msgstr "პაროლი" msgid "Submit" msgstr "გაგზავნა" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" -msgstr "" +msgstr "%s–მა გაგიზიარათ ფოლდერი %s" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" -msgstr "" +msgstr "%s–მა გაგიზიარათ ფაილი %s" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "ჩამოტვირთვა" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" -msgstr "" +msgstr "წინასწარი დათვალიერება შეუძლებელია" -#: templates/public.php:35 +#: templates/public.php:50 msgid "web services under your control" msgstr "web services under your control" diff --git a/l10n/ka_GE/files_trashbin.po b/l10n/ka_GE/files_trashbin.po index 1a52e33a94..6e8e37e818 100644 --- a/l10n/ka_GE/files_trashbin.po +++ b/l10n/ka_GE/files_trashbin.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Romeo Pirtskhalava , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-13 02:12+0200\n" +"PO-Revision-Date: 2013-04-12 07:30+0000\n" +"Last-Translator: drlinux64 \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,16 +21,16 @@ msgstr "" #: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" -msgstr "" +msgstr "ფაილი %s–ის სრულად წაშლა ვერ მოხერხდა" #: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" -msgstr "" +msgstr "%s–ის აღდგენა ვერ მოხერხდა" #: js/trash.js:7 js/trash.js:96 msgid "perform restore operation" -msgstr "" +msgstr "მიმდინარეობს აღდგენის ოპერაცია" #: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 msgid "Error" @@ -37,11 +38,11 @@ msgstr "შეცდომა" #: js/trash.js:34 msgid "delete file permanently" -msgstr "" +msgstr "ფაილის სრულად წაშლა" #: js/trash.js:121 msgid "Delete permanently" -msgstr "" +msgstr "სრულად წაშლა" #: js/trash.js:174 templates/index.php:17 msgid "Name" @@ -49,7 +50,7 @@ msgstr "სახელი" #: js/trash.js:175 templates/index.php:27 msgid "Deleted" -msgstr "" +msgstr "წაშლილი" #: js/trash.js:184 msgid "1 folder" @@ -69,11 +70,11 @@ msgstr "{count} ფაილი" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" -msgstr "" +msgstr "აქ არაფერი არ არის. სანაგვე ყუთი ცარიელია!" #: templates/index.php:20 templates/index.php:22 msgid "Restore" -msgstr "" +msgstr "აღდგენა" #: templates/index.php:30 templates/index.php:31 msgid "Delete" @@ -81,4 +82,4 @@ msgstr "წაშლა" #: templates/part.breadcrumb.php:9 msgid "Deleted Files" -msgstr "" +msgstr "წაშლილი ფაილები" diff --git a/l10n/ka_GE/files_versions.po b/l10n/ka_GE/files_versions.po index b37855b93c..77b0ca0d8d 100644 --- a/l10n/ka_GE/files_versions.po +++ b/l10n/ka_GE/files_versions.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Romeo Pirtskhalava , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-13 02:12+0200\n" +"PO-Revision-Date: 2013-04-12 14:10+0000\n" +"Last-Translator: drlinux64 \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,38 +21,38 @@ msgstr "" #: ajax/rollbackVersion.php:15 #, php-format msgid "Could not revert: %s" -msgstr "" +msgstr "ვერ მოხერხდა უკან დაბრუნება: %s" #: history.php:40 msgid "success" -msgstr "" +msgstr "დასრულდა" #: history.php:42 #, php-format msgid "File %s was reverted to version %s" -msgstr "" +msgstr "ფაილი %s დაბრუნდა ვერსიაზე %s" #: history.php:49 msgid "failure" -msgstr "" +msgstr "შეცდომა" #: history.php:51 #, php-format msgid "File %s could not be reverted to version %s" -msgstr "" +msgstr "ვერ მოხერხდა %s ფაილის %s ვერსიაზე დაბრუნება" -#: history.php:68 +#: history.php:69 msgid "No old versions available" -msgstr "" +msgstr "ძველი ვერსია არ არსებობს" -#: history.php:73 +#: history.php:74 msgid "No path specified" -msgstr "" +msgstr "გზა არ არის მითითებული" #: js/versions.js:6 msgid "Versions" -msgstr "" +msgstr "ვერსიები" #: templates/history.php:20 msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "" +msgstr "დააბრუნეთ ფაილი წინა პოზიციაზე revert ღილაკზე დაჭერით" diff --git a/l10n/ka_GE/lib.po b/l10n/ka_GE/lib.po index 24aa183a1e..75c4fc2139 100644 --- a/l10n/ka_GE/lib.po +++ b/l10n/ka_GE/lib.po @@ -4,13 +4,14 @@ # # Translators: # , 2012. +# Romeo Pirtskhalava , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-13 02:12+0200\n" +"PO-Revision-Date: 2013-04-12 11:09+0000\n" +"Last-Translator: drlinux64 \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -44,27 +45,27 @@ msgstr "ადმინისტრატორი" #: files.php:209 msgid "ZIP download is turned off." -msgstr "" +msgstr "ZIP download–ი გათიშულია" #: files.php:210 msgid "Files need to be downloaded one by one." -msgstr "" +msgstr "ფაილები უნდა გადმოიტვირთოს სათითაოდ." #: files.php:211 files.php:244 msgid "Back to Files" -msgstr "" +msgstr "უკან ფაილებში" #: files.php:241 msgid "Selected files too large to generate zip file." -msgstr "" +msgstr "არჩეული ფაილები ძალიან დიდია zip ფაილის გენერაციისთვის." #: helper.php:228 msgid "couldn't be determined" -msgstr "" +msgstr "ვერ განისაზღვრა" #: json.php:28 msgid "Application is not enabled" -msgstr "" +msgstr "აპლიკაცია არ არის აქტიური" #: json.php:39 json.php:62 json.php:73 msgid "Authentication error" @@ -72,7 +73,7 @@ msgstr "ავთენტიფიკაციის შეცდომა" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "" +msgstr "Token–ს ვადა გაუვიდა. გთხოვთ განაახლოთ გვერდი." #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" @@ -84,55 +85,55 @@ msgstr "ტექსტი" #: search/provider/file.php:29 msgid "Images" -msgstr "" +msgstr "სურათები" #: setup.php:34 msgid "Set an admin username." -msgstr "" +msgstr "დააყენეთ ადმინისტრატორის სახელი." #: setup.php:37 msgid "Set an admin password." -msgstr "" +msgstr "დააყენეთ ადმინისტრატორის პაროლი." #: setup.php:40 msgid "Specify a data folder." -msgstr "" +msgstr "მიუთითეთ data ფოლდერი." #: setup.php:55 #, php-format msgid "%s enter the database username." -msgstr "" +msgstr "%s შეიყვანეთ ბაზის იუზერნეიმი." #: setup.php:58 #, php-format msgid "%s enter the database name." -msgstr "" +msgstr "%s შეიყვანეთ ბაზის სახელი." #: setup.php:61 #, php-format msgid "%s you may not use dots in the database name" -msgstr "" +msgstr "%s არ მიუთითოთ წერტილი ბაზის სახელში" #: setup.php:64 #, php-format msgid "%s set the database host." -msgstr "" +msgstr "%s მიუთითეთ ბაზის ჰოსტი." #: setup.php:132 setup.php:324 setup.php:369 msgid "PostgreSQL username and/or password not valid" -msgstr "" +msgstr "PostgreSQL იუზერნეიმი და/ან პაროლი არ არის სწორი" #: setup.php:133 setup.php:156 setup.php:233 msgid "You need to enter either an existing account or the administrator." -msgstr "" +msgstr "თქვენ უნდა შეიყვანოთ არსებული მომხმარებელის სახელი ან ადმინისტრატორი." #: setup.php:155 setup.php:457 setup.php:524 msgid "Oracle username and/or password not valid" -msgstr "" +msgstr "Oracle იუზერნეიმი და/ან პაროლი არ არის სწორი" #: setup.php:232 msgid "MySQL username and/or password not valid" -msgstr "" +msgstr "MySQL იუზერნეიმი და/ან პაროლი არ არის სწორი" #: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 #: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 @@ -140,53 +141,53 @@ msgstr "" #: setup.php:614 #, php-format msgid "DB Error: \"%s\"" -msgstr "" +msgstr "DB შეცდომა: \"%s\"" #: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 #: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 #: setup.php:576 setup.php:592 setup.php:600 setup.php:609 #, php-format msgid "Offending command was: \"%s\"" -msgstr "" +msgstr "Offending ბრძანება იყო: \"%s\"" #: setup.php:303 #, php-format msgid "MySQL user '%s'@'localhost' exists already." -msgstr "" +msgstr "MySQL მომხმარებელი '%s'@'localhost' უკვე არსებობს." #: setup.php:304 msgid "Drop this user from MySQL" -msgstr "" +msgstr "წაშალე ეს მომხამრებელი MySQL–იდან" #: setup.php:309 #, php-format msgid "MySQL user '%s'@'%%' already exists" -msgstr "" +msgstr "MySQL მომხმარებელი '%s'@'%%' უკვე არსებობს" #: setup.php:310 msgid "Drop this user from MySQL." -msgstr "" +msgstr "წაშალე ეს მომხამრებელი MySQL–იდან" #: setup.php:583 setup.php:615 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" -msgstr "" +msgstr "Offending ბრძანება იყო: \"%s\", სახელი: %s, პაროლი: %s" #: setup.php:635 #, php-format msgid "MS SQL username and/or password not valid: %s" -msgstr "" +msgstr "MS SQL მომხმარებელი და/ან პაროლი არ არის მართებული: %s" #: setup.php:853 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "" +msgstr "თქვენი web სერვერი არ არის კონფიგურირებული ფაილ სინქრონიზაციისთვის, რადგან WebDAV ინტერფეისი შეიძლება იყოს გატეხილი." #: setup.php:854 #, php-format msgid "Please double check the installation guides." -msgstr "" +msgstr "გთხოვთ გადაათვალიეროთ ინსტალაციის გზამკვლევი." #: template.php:113 msgid "seconds ago" @@ -199,16 +200,16 @@ msgstr "1 წუთის წინ" #: template.php:115 #, php-format msgid "%d minutes ago" -msgstr "" +msgstr "%d წუთის წინ" #: template.php:116 msgid "1 hour ago" -msgstr "" +msgstr "1 საათის წინ" #: template.php:117 #, php-format msgid "%d hours ago" -msgstr "" +msgstr "%d საათის წინ" #: template.php:118 msgid "today" @@ -221,7 +222,7 @@ msgstr "გუშინ" #: template.php:120 #, php-format msgid "%d days ago" -msgstr "" +msgstr "%d დღის წინ" #: template.php:121 msgid "last month" @@ -230,7 +231,7 @@ msgstr "გასულ თვეში" #: template.php:122 #, php-format msgid "%d months ago" -msgstr "" +msgstr "%d თვის წინ" #: template.php:123 msgid "last year" @@ -243,7 +244,7 @@ msgstr "წლის წინ" #: updater.php:78 #, php-format msgid "%s is available. Get more information" -msgstr "" +msgstr "%s ხელმისაწვდომია. მიიღეთ უფრო მეტი ინფორმაცია" #: updater.php:81 msgid "up to date" @@ -256,4 +257,4 @@ msgstr "განახლების ძებნა გათიშული #: vcategories.php:188 vcategories.php:249 #, php-format msgid "Could not find category \"%s\"" -msgstr "" +msgstr "\"%s\" კატეგორიის მოძებნა ვერ მოხერხდა" diff --git a/l10n/ka_GE/settings.po b/l10n/ka_GE/settings.po index a67765829c..7f37b1717c 100644 --- a/l10n/ka_GE/settings.po +++ b/l10n/ka_GE/settings.po @@ -4,13 +4,14 @@ # # Translators: # , 2012. +# Romeo Pirtskhalava , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-13 02:12+0200\n" +"PO-Revision-Date: 2013-04-12 11:20+0000\n" +"Last-Translator: drlinux64 \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,7 +30,7 @@ msgstr "ავთენტიფიკაციის შეცდომა" #: ajax/changedisplayname.php:32 msgid "Unable to change display name" -msgstr "" +msgstr "დისფლეის სახელის შეცვლა ვერ მოხერხდა" #: ajax/creategroup.php:10 msgid "Group already exists" @@ -69,7 +70,7 @@ msgstr "არასწორი მოთხოვნა" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" -msgstr "" +msgstr "ადმინისტრატორებს არ შეუძლიათ საკუთარი თავის წაშლა ადმინ ჯგუფიდან" #: ajax/togglegroups.php:30 #, php-format @@ -83,11 +84,11 @@ msgstr "მომხმარებლის წაშლა ვერ მოხ #: ajax/updateapp.php:14 msgid "Couldn't update app." -msgstr "" +msgstr "ვერ მოხერხდა აპლიკაციის განახლება." #: js/apps.js:30 msgid "Update to {appversion}" -msgstr "" +msgstr "განაახლე {appversion}–მდე" #: js/apps.js:36 js/apps.js:76 msgid "Disable" @@ -99,7 +100,7 @@ msgstr "ჩართვა" #: js/apps.js:55 msgid "Please wait...." -msgstr "" +msgstr "დაიცადეთ...." #: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 msgid "Error" @@ -107,60 +108,60 @@ msgstr "შეცდომა" #: js/apps.js:90 msgid "Updating...." -msgstr "" +msgstr "მიმდინარეობს განახლება...." #: js/apps.js:93 msgid "Error while updating app" -msgstr "" +msgstr "შეცდომა აპლიკაციის განახლების დროს" #: js/apps.js:96 msgid "Updated" -msgstr "" +msgstr "განახლებულია" #: js/personal.js:99 msgid "Saving..." msgstr "შენახვა..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" -msgstr "" +msgstr "წაშლილი" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "დაბრუნება" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" -msgstr "" +msgstr "მომხმარებლის წაშლა ვერ მოხერხდა" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "ჯგუფი" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "ჯგუფის ადმინისტრატორი" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "წაშლა" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" -msgstr "" +msgstr "ჯგუფის დამატება" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" -msgstr "" +msgstr "უნდა მიუთითოთ არსებული მომხმარებლის სახელი" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" -msgstr "" +msgstr "შეცდომა მომხმარებლის შექმნისას" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" -msgstr "" +msgstr "უნდა მიუთითოთ არსებული პაროლი" #: personal.php:29 personal.php:30 msgid "__language_name__" @@ -177,36 +178,36 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "" +msgstr "თქვენი data დირექტორია და ფაილები არის დაშვებადი ინტერნეტიდან. .htaccess ფაილი რომელსაც ownCloud გვთავაზობს არ მუშაობს. ჩვენ გირჩევთ რომ თქვენი ვებსერვერი დააკონფიგურიროთ ისე რომ data დირექტორია არ იყოს დაშვებადი, ან გაიტანოთ data დირექტორია ვებსერვერის document root დირექტორიის გარეთ." #: templates/admin.php:29 msgid "Setup Warning" -msgstr "" +msgstr "გაფრთხილება დაყენებისას" #: templates/admin.php:32 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "" +msgstr "თქვენი web სერვერი არ არის კონფიგურირებული ფაილ სინქრონიზაციისთვის, რადგან WebDAV ინტერფეისი შეიძლება იყოს გატეხილი." #: templates/admin.php:33 #, php-format msgid "Please double check the installation guides." -msgstr "" +msgstr "გთხოვთ გადაათვალიეროთ ინსტალაციის გზამკვლევი." #: templates/admin.php:44 msgid "Module 'fileinfo' missing" -msgstr "" +msgstr "მოდული 'fileinfo' არ არსებობს" #: templates/admin.php:47 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." -msgstr "" +msgstr "PHP მოდული 'fileinfo' არ არსებობს. ჩვენ გირჩევთ რომ აუცილებლად ჩართოთ ეს მოდული, რომ მიიღოთ კარგი შედეგები mime-type–ს აღმოჩენისას." #: templates/admin.php:58 msgid "Locale not working" -msgstr "" +msgstr "ლოკალიზაცია არ მუშაობს" #: templates/admin.php:63 #, php-format @@ -214,11 +215,11 @@ msgid "" "This ownCloud server can't set system locale to %s. This means that there " "might be problems with certain characters in file names. We strongly suggest" " to install the required packages on your system to support %s." -msgstr "" +msgstr "თქვენი ownCloud სერვერი ვერ აყენებს %s სისტემურ ენას. ეს გულისხმობს იმას რომ შეიძლება შეიქმნას პრობლემა გარკვეულ სიმბოლოებზე ფაილის სახელებში. ჩვენ გიჩევთ რომ დააინსტალიროთ საჭირო პაკეტები თქვენს სისტემაზე იმისათვის რომ იყოს %s –ის მხარდაჭერა." #: templates/admin.php:75 msgid "Internet connection not working" -msgstr "" +msgstr "ინტერნეტ კავშირი არ მუშაობს" #: templates/admin.php:78 msgid "" @@ -228,102 +229,102 @@ msgid "" "remote and sending of notification emails might also not work. We suggest to" " enable internet connection for this server if you want to have all features" " of ownCloud." -msgstr "" +msgstr "ownCloud სერვერს არ გააჩნია ინტერნეტთან კავშირი. ეს ნიშნავს იმას რომ გარკვეული ფუნქციები როგორიცაა ექსტერნალ საცავების მონტირება, შეტყობინებები განახლების შესახებ ან სხვადასხვა 3rd აპლიკაციების ინსტალაცია არ იმუშავებს. ფაილებთან წვდომა გარე სამყაროდან და შეტყობინების იმეილებიც აგრეთვე არ იმუშავებს. ჩვენ გირჩევთ რომ ჩართოთ ინტერნეტ კავშირი ამ სერვერისთვის იმისათვის რომ გქონდეთ ownCloud–ის ყველა ფუნქცია გააქტიურებული." #: templates/admin.php:92 msgid "Cron" -msgstr "" +msgstr "Cron–ი" #: templates/admin.php:101 msgid "Execute one task with each page loaded" -msgstr "" +msgstr "გაუშვი თითო მოქმედება ყველა ჩატვირთულ გვერდზე" #: templates/admin.php:111 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." -msgstr "" +msgstr "cron.php რეგისტრირებულია webcron სერვისად. გაუშვით cron.php გვერდი რომელიც მოთავსებულია owncloud root დირექტორიაში, წუთში ერთხელ http–ით." #: templates/admin.php:121 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "" +msgstr "გამოიყენე სისტემური cron სერვისი. გაუშვით cron.php ფაილი owncloud ფოლდერიდან სისტემურ cronjob–ში წუთში ერთხელ." #: templates/admin.php:128 msgid "Sharing" -msgstr "" +msgstr "გაზიარება" #: templates/admin.php:134 msgid "Enable Share API" -msgstr "" +msgstr "Share API–ის ჩართვა" #: templates/admin.php:135 msgid "Allow apps to use the Share API" -msgstr "" +msgstr "დაუშვი აპლიკაციების უფლება Share API –ზე" #: templates/admin.php:142 msgid "Allow links" -msgstr "" +msgstr "ლინკების დაშვება" #: templates/admin.php:143 msgid "Allow users to share items to the public with links" -msgstr "" +msgstr "მიეცი მომხმარებლებს უფლება რომ გააზიაროს ელემენტები საჯაროდ ლინკებით" #: templates/admin.php:150 msgid "Allow resharing" -msgstr "" +msgstr "გადაზიარების დაშვება" #: templates/admin.php:151 msgid "Allow users to share items shared with them again" -msgstr "" +msgstr "მიეცით მომხმარებლებს უფლება რომ გააზიაროს მისთვის გაზიარებული" #: templates/admin.php:158 msgid "Allow users to share with anyone" -msgstr "" +msgstr "მიეცით უფლება მომხმარებლებს გააზიაროს ყველასთვის" #: templates/admin.php:161 msgid "Allow users to only share with users in their groups" -msgstr "" +msgstr "მიეცით უფლება მომხმარებლებს რომ გააზიაროს მხოლოდ თავიანთი ჯგუფისთვის" #: templates/admin.php:168 msgid "Security" -msgstr "" +msgstr "უსაფრთხოება" #: templates/admin.php:181 msgid "Enforce HTTPS" -msgstr "" +msgstr "HTTPS–ის ჩართვა" #: templates/admin.php:182 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "" +msgstr "ვაიძულოთ მომხმარებლები რომ დაუკავშირდნენ ownCloud დაცული კავშირით (https)." #: templates/admin.php:185 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." -msgstr "" +msgstr "გთხოვთ დაუკავშირდეთ ownCloud–ს HTTPS–ით რომ შეძლოთ SSL–ის ჩართვა გამორთვა." #: templates/admin.php:195 msgid "Log" -msgstr "" +msgstr "ლოგი" #: templates/admin.php:196 msgid "Log level" -msgstr "" +msgstr "ლოგირების დონე" #: templates/admin.php:223 msgid "More" -msgstr "" +msgstr "უფრო მეტი" #: templates/admin.php:224 msgid "Less" -msgstr "" +msgstr "naklebi" #: templates/admin.php:231 templates/personal.php:102 msgid "Version" -msgstr "" +msgstr "ვერსია" #: templates/admin.php:234 templates/personal.php:105 msgid "" @@ -333,7 +334,7 @@ msgid "" "licensed under the AGPL." -msgstr "" +msgstr "წარმოებულია ownCloud community–ის მიერ. source code ვრცელდება AGPL ლიცენზიის ფარგლებში." #: templates/apps.php:11 msgid "Add your App" @@ -361,40 +362,40 @@ msgstr "განახლება" #: templates/help.php:4 msgid "User Documentation" -msgstr "" +msgstr "მომხმარებლის დოკუმენტაცია" #: templates/help.php:6 msgid "Administrator Documentation" -msgstr "" +msgstr "ადმინისტრატორის დოკუმენტაცია" #: templates/help.php:9 msgid "Online Documentation" -msgstr "" +msgstr "ონლაინ დოკუმენტაცია" #: templates/help.php:11 msgid "Forum" -msgstr "" +msgstr "ფორუმი" #: templates/help.php:14 msgid "Bugtracker" -msgstr "" +msgstr "ბაგთრექერი" #: templates/help.php:17 msgid "Commercial Support" -msgstr "" +msgstr "კომერციული მხარდაჭერა" #: templates/personal.php:8 #, php-format msgid "You have used %s of the available %s" -msgstr "" +msgstr "თქვენ გამოყენებული გაქვთ %s –ი –%s–დან" #: templates/personal.php:15 msgid "Get the apps to sync your files" -msgstr "" +msgstr "აპლიკაცია ფაილების სინქრონიზაციისთვის" #: templates/personal.php:26 msgid "Show First Run Wizard again" -msgstr "" +msgstr "მაჩვენე თავიდან გაშვებული ვიზარდი" #: templates/personal.php:37 templates/users.php:23 templates/users.php:79 msgid "Password" @@ -422,19 +423,19 @@ msgstr "პაროლის შეცვლა" #: templates/personal.php:56 templates/users.php:78 msgid "Display Name" -msgstr "" +msgstr "დისპლეის სახელი" #: templates/personal.php:57 msgid "Your display name was changed" -msgstr "" +msgstr "დისფლეის სახელი შეიცვალა" #: templates/personal.php:58 msgid "Unable to change your display name" -msgstr "" +msgstr "თქვენი დისფლეის სახელის შეცვლა ვერ მოხერხდა" #: templates/personal.php:61 msgid "Change display name" -msgstr "" +msgstr "დისფლეის სახელის შეცვლა" #: templates/personal.php:70 msgid "Email" @@ -458,15 +459,15 @@ msgstr "თარგმნის დახმარება" #: templates/personal.php:91 msgid "WebDAV" -msgstr "" +msgstr "WebDAV" #: templates/personal.php:93 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "" +msgstr "გამოიყენე შემდეგი მისამართი ownCloud–თან დასაკავშირებლად შენს ფაილმენეჯერში" #: templates/users.php:21 templates/users.php:77 msgid "Login Name" -msgstr "" +msgstr "მომხმარებლის სახელი" #: templates/users.php:32 msgid "Create" @@ -474,11 +475,11 @@ msgstr "შექმნა" #: templates/users.php:35 msgid "Default Storage" -msgstr "" +msgstr "საწყისი საცავი" #: templates/users.php:41 templates/users.php:139 msgid "Unlimited" -msgstr "" +msgstr "ულიმიტო" #: templates/users.php:59 templates/users.php:154 msgid "Other" @@ -486,16 +487,16 @@ msgstr "სხვა" #: templates/users.php:84 msgid "Storage" -msgstr "" +msgstr "საცავი" #: templates/users.php:95 msgid "change display name" -msgstr "" +msgstr "შეცვალე დისფლეის სახელი" #: templates/users.php:99 msgid "set new password" -msgstr "" +msgstr "დააყენეთ ახალი პაროლი" #: templates/users.php:134 msgid "Default" -msgstr "" +msgstr "საწყისი პარამეტრები" diff --git a/l10n/ka_GE/user_ldap.po b/l10n/ka_GE/user_ldap.po index 33202c71fc..ebde56128d 100644 --- a/l10n/ka_GE/user_ldap.po +++ b/l10n/ka_GE/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-02 00:03+0100\n" -"PO-Revision-Date: 2013-03-01 23:04+0000\n" +"POT-Creation-Date: 2013-04-13 02:12+0200\n" +"PO-Revision-Date: 2013-04-12 07:50+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -86,248 +86,248 @@ msgstr "" msgid "Server configuration" msgstr "" -#: templates/settings.php:18 +#: templates/settings.php:31 msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:23 +#: templates/settings.php:36 msgid "Host" -msgstr "" +msgstr "ჰოსტი" -#: templates/settings.php:25 +#: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:26 +#: templates/settings.php:39 msgid "Base DN" msgstr "" -#: templates/settings.php:27 +#: templates/settings.php:40 msgid "One Base DN per line" msgstr "" -#: templates/settings.php:28 +#: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" -#: templates/settings.php:30 +#: templates/settings.php:43 msgid "User DN" msgstr "" -#: templates/settings.php:32 +#: templates/settings.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 "" -#: templates/settings.php:33 +#: templates/settings.php:46 msgid "Password" msgstr "" -#: templates/settings.php:36 +#: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:37 +#: templates/settings.php:50 msgid "User Login Filter" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:55 msgid "User List Filter" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." msgstr "" -#: templates/settings.php:47 +#: templates/settings.php:60 msgid "Group Filter" msgstr "" -#: templates/settings.php:50 +#: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:68 msgid "Connection Settings" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "Configuration Active" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:71 msgid "Port" -msgstr "" +msgstr "პორტი" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:73 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Use TLS" msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" -#: templates/settings.php:63 +#: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Not recommended, use for testing only." msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:67 +#: templates/settings.php:80 msgid "Directory Settings" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "Base User Tree" msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:71 +#: templates/settings.php:84 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:71 templates/settings.php:74 +#: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:74 +#: templates/settings.php:87 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:88 msgid "Group-Member association" msgstr "" -#: templates/settings.php:77 +#: templates/settings.php:90 msgid "Special Attributes" msgstr "" -#: templates/settings.php:79 +#: templates/settings.php:92 msgid "Quota Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "Quota Default" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "in bytes" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:94 msgid "Email Field" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Test Configuration" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Help" msgstr "დახმარება" diff --git a/l10n/ka_GE/user_webdavauth.po b/l10n/ka_GE/user_webdavauth.po index b7a0b55763..f4ffea5b9a 100644 --- a/l10n/ka_GE/user_webdavauth.po +++ b/l10n/ka_GE/user_webdavauth.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Romeo Pirtskhalava , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-13 02:12+0200\n" +"PO-Revision-Date: 2013-04-12 07:50+0000\n" +"Last-Translator: drlinux64 \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,15 +20,15 @@ msgstr "" #: templates/settings.php:3 msgid "WebDAV Authentication" -msgstr "" +msgstr "WebDAV აუთენთიფიკაცია" #: templates/settings.php:4 msgid "URL: http://" -msgstr "" +msgstr "URL: http://" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " "credentials, and all other responses as valid credentials." -msgstr "" +msgstr "ownCloud–ი გამოგიგზავნით ანგარიშის მონაცემებს ამ URL–ზე. ეს პლაგინი შეამოწმებს პასუხს და მოახდენს მის ინტერპრეტაციას HTTP სტატუსკოდებში 401 და 403 დაუშვებელი მონაცემებისთვის, ხოლო სხვა დანარჩენს დაშვებადი მონაცემებისთვის." diff --git a/l10n/pl/files.po b/l10n/pl/files.po index aca2fe3094..f0d3b79dee 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/files.po @@ -17,9 +17,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:09+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-13 02:12+0200\n" +"PO-Revision-Date: 2013-04-12 08:40+0000\n" +"Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -138,7 +138,7 @@ msgstr "1 plik wczytywany" #: js/filelist.js:409 js/filelist.js:463 msgid "files uploading" -msgstr "" +msgstr "pliki wczytane" #: js/files.js:52 msgid "'.' is an invalid file name." diff --git a/l10n/sq/settings.po b/l10n/sq/settings.po index d930d956b4..9fe3e67ef4 100644 --- a/l10n/sq/settings.po +++ b/l10n/sq/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-11 02:09+0200\n" -"PO-Revision-Date: 2013-04-10 09:20+0000\n" +"POT-Creation-Date: 2013-04-13 02:12+0200\n" +"PO-Revision-Date: 2013-04-12 16:20+0000\n" "Last-Translator: Odeen \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -390,7 +390,7 @@ msgstr "" #: templates/personal.php:15 msgid "Get the apps to sync your files" -msgstr "" +msgstr "Merrni app-et për sinkronizimin e skedarëve tuaj" #: templates/personal.php:26 msgid "Show First Run Wizard again" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 86a9b2c1b1..ea7306a96e 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-12 02:09+0200\n" +"POT-Creation-Date: 2013-04-13 02:12+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 8edc5de503..2a33aa7dd5 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-12 02:09+0200\n" +"POT-Creation-Date: 2013-04-13 02:12+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index a42837154c..cd172f299d 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-12 02:09+0200\n" +"POT-Creation-Date: 2013-04-13 02:12+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index a330942757..954f4fec31 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-12 02:09+0200\n" +"POT-Creation-Date: 2013-04-13 02:12+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 6057a9d4d0..75d71eb61d 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-12 02:09+0200\n" +"POT-Creation-Date: 2013-04-13 02:12+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index 5da7f66146..fa48d4dd17 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-12 02:09+0200\n" +"POT-Creation-Date: 2013-04-13 02:12+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 3b250f190c..b4ed2f9460 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-12 02:09+0200\n" +"POT-Creation-Date: 2013-04-13 02:12+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 99de57599b..f970e81e27 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-12 02:09+0200\n" +"POT-Creation-Date: 2013-04-13 02:12+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 72f7997b53..ace40e933d 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-12 02:09+0200\n" +"POT-Creation-Date: 2013-04-13 02:12+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index ec58b85606..a912ffc498 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-12 02:09+0200\n" +"POT-Creation-Date: 2013-04-13 02:12+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index 4265784ac4..2993850808 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-12 02:09+0200\n" +"POT-Creation-Date: 2013-04-13 02:12+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/lib/l10n/ka_GE.php b/lib/l10n/ka_GE.php index ff62382721..26b356b634 100644 --- a/lib/l10n/ka_GE.php +++ b/lib/l10n/ka_GE.php @@ -5,16 +5,52 @@ "Users" => "მომხმარებელი", "Apps" => "აპლიკაციები", "Admin" => "ადმინისტრატორი", +"ZIP download is turned off." => "ZIP download–ი გათიშულია", +"Files need to be downloaded one by one." => "ფაილები უნდა გადმოიტვირთოს სათითაოდ.", +"Back to Files" => "უკან ფაილებში", +"Selected files too large to generate zip file." => "არჩეული ფაილები ძალიან დიდია zip ფაილის გენერაციისთვის.", +"couldn't be determined" => "ვერ განისაზღვრა", +"Application is not enabled" => "აპლიკაცია არ არის აქტიური", "Authentication error" => "ავთენტიფიკაციის შეცდომა", +"Token expired. Please reload page." => "Token–ს ვადა გაუვიდა. გთხოვთ განაახლოთ გვერდი.", "Files" => "ფაილები", "Text" => "ტექსტი", +"Images" => "სურათები", +"Set an admin username." => "დააყენეთ ადმინისტრატორის სახელი.", +"Set an admin password." => "დააყენეთ ადმინისტრატორის პაროლი.", +"Specify a data folder." => "მიუთითეთ data ფოლდერი.", +"%s enter the database username." => "%s შეიყვანეთ ბაზის იუზერნეიმი.", +"%s enter the database name." => "%s შეიყვანეთ ბაზის სახელი.", +"%s you may not use dots in the database name" => "%s არ მიუთითოთ წერტილი ბაზის სახელში", +"%s set the database host." => "%s მიუთითეთ ბაზის ჰოსტი.", +"PostgreSQL username and/or password not valid" => "PostgreSQL იუზერნეიმი და/ან პაროლი არ არის სწორი", +"You need to enter either an existing account or the administrator." => "თქვენ უნდა შეიყვანოთ არსებული მომხმარებელის სახელი ან ადმინისტრატორი.", +"Oracle username and/or password not valid" => "Oracle იუზერნეიმი და/ან პაროლი არ არის სწორი", +"MySQL username and/or password not valid" => "MySQL იუზერნეიმი და/ან პაროლი არ არის სწორი", +"DB Error: \"%s\"" => "DB შეცდომა: \"%s\"", +"Offending command was: \"%s\"" => "Offending ბრძანება იყო: \"%s\"", +"MySQL user '%s'@'localhost' exists already." => "MySQL მომხმარებელი '%s'@'localhost' უკვე არსებობს.", +"Drop this user from MySQL" => "წაშალე ეს მომხამრებელი MySQL–იდან", +"MySQL user '%s'@'%%' already exists" => "MySQL მომხმარებელი '%s'@'%%' უკვე არსებობს", +"Drop this user from MySQL." => "წაშალე ეს მომხამრებელი MySQL–იდან", +"Offending command was: \"%s\", name: %s, password: %s" => "Offending ბრძანება იყო: \"%s\", სახელი: %s, პაროლი: %s", +"MS SQL username and/or password not valid: %s" => "MS SQL მომხმარებელი და/ან პაროლი არ არის მართებული: %s", +"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "თქვენი web სერვერი არ არის კონფიგურირებული ფაილ სინქრონიზაციისთვის, რადგან WebDAV ინტერფეისი შეიძლება იყოს გატეხილი.", +"Please double check the installation guides." => "გთხოვთ გადაათვალიეროთ ინსტალაციის გზამკვლევი.", "seconds ago" => "წამის წინ", "1 minute ago" => "1 წუთის წინ", +"%d minutes ago" => "%d წუთის წინ", +"1 hour ago" => "1 საათის წინ", +"%d hours ago" => "%d საათის წინ", "today" => "დღეს", "yesterday" => "გუშინ", +"%d days ago" => "%d დღის წინ", "last month" => "გასულ თვეში", +"%d months ago" => "%d თვის წინ", "last year" => "ბოლო წელს", "years ago" => "წლის წინ", +"%s is available. Get more information" => "%s ხელმისაწვდომია. მიიღეთ უფრო მეტი ინფორმაცია", "up to date" => "განახლებულია", -"updates check is disabled" => "განახლების ძებნა გათიშულია" +"updates check is disabled" => "განახლების ძებნა გათიშულია", +"Could not find category \"%s\"" => "\"%s\" კატეგორიის მოძებნა ვერ მოხერხდა" ); diff --git a/settings/l10n/ka_GE.php b/settings/l10n/ka_GE.php index 27699d3f98..09de18ae1c 100644 --- a/settings/l10n/ka_GE.php +++ b/settings/l10n/ka_GE.php @@ -1,6 +1,7 @@ "აპლიკაციების სია ვერ ჩამოიტვირთა App Store", "Authentication error" => "ავთენტიფიკაციის შეცდომა", +"Unable to change display name" => "დისფლეის სახელის შეცვლა ვერ მოხერხდა", "Group already exists" => "ჯგუფი უკვე არსებობს", "Unable to add group" => "ჯგუფის დამატება ვერ მოხერხდა", "Could not enable app. " => "ვერ მოხერხდა აპლიკაციის ჩართვა.", @@ -10,35 +11,103 @@ "Unable to delete user" => "მომხმარებლის წაშლა ვერ მოხერხდა", "Language changed" => "ენა შეცვლილია", "Invalid request" => "არასწორი მოთხოვნა", +"Admins can't remove themself from the admin group" => "ადმინისტრატორებს არ შეუძლიათ საკუთარი თავის წაშლა ადმინ ჯგუფიდან", "Unable to add user to group %s" => "მომხმარებლის დამატება ვერ მოხეხდა ჯგუფში %s", "Unable to remove user from group %s" => "მომხმარებლის წაშლა ვერ მოხეხდა ჯგუფიდან %s", +"Couldn't update app." => "ვერ მოხერხდა აპლიკაციის განახლება.", +"Update to {appversion}" => "განაახლე {appversion}–მდე", "Disable" => "გამორთვა", "Enable" => "ჩართვა", +"Please wait...." => "დაიცადეთ....", "Error" => "შეცდომა", +"Updating...." => "მიმდინარეობს განახლება....", +"Error while updating app" => "შეცდომა აპლიკაციის განახლების დროს", +"Updated" => "განახლებულია", "Saving..." => "შენახვა...", +"deleted" => "წაშლილი", "undo" => "დაბრუნება", +"Unable to remove user" => "მომხმარებლის წაშლა ვერ მოხერხდა", "Groups" => "ჯგუფი", "Group Admin" => "ჯგუფის ადმინისტრატორი", "Delete" => "წაშლა", +"add group" => "ჯგუფის დამატება", +"A valid username must be provided" => "უნდა მიუთითოთ არსებული მომხმარებლის სახელი", +"Error creating user" => "შეცდომა მომხმარებლის შექმნისას", +"A valid password must be provided" => "უნდა მიუთითოთ არსებული პაროლი", "__language_name__" => "__language_name__", "Security Warning" => "უსაფრთხოების გაფრთხილება", +"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "თქვენი data დირექტორია და ფაილები არის დაშვებადი ინტერნეტიდან. .htaccess ფაილი რომელსაც ownCloud გვთავაზობს არ მუშაობს. ჩვენ გირჩევთ რომ თქვენი ვებსერვერი დააკონფიგურიროთ ისე რომ data დირექტორია არ იყოს დაშვებადი, ან გაიტანოთ data დირექტორია ვებსერვერის document root დირექტორიის გარეთ.", +"Setup Warning" => "გაფრთხილება დაყენებისას", +"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "თქვენი web სერვერი არ არის კონფიგურირებული ფაილ სინქრონიზაციისთვის, რადგან WebDAV ინტერფეისი შეიძლება იყოს გატეხილი.", +"Please double check the installation guides." => "გთხოვთ გადაათვალიეროთ ინსტალაციის გზამკვლევი.", +"Module 'fileinfo' missing" => "მოდული 'fileinfo' არ არსებობს", +"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "PHP მოდული 'fileinfo' არ არსებობს. ჩვენ გირჩევთ რომ აუცილებლად ჩართოთ ეს მოდული, რომ მიიღოთ კარგი შედეგები mime-type–ს აღმოჩენისას.", +"Locale not working" => "ლოკალიზაცია არ მუშაობს", +"This ownCloud server can't set system locale to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "თქვენი ownCloud სერვერი ვერ აყენებს %s სისტემურ ენას. ეს გულისხმობს იმას რომ შეიძლება შეიქმნას პრობლემა გარკვეულ სიმბოლოებზე ფაილის სახელებში. ჩვენ გიჩევთ რომ დააინსტალიროთ საჭირო პაკეტები თქვენს სისტემაზე იმისათვის რომ იყოს %s –ის მხარდაჭერა.", +"Internet connection not working" => "ინტერნეტ კავშირი არ მუშაობს", +"This ownCloud server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features of ownCloud." => "ownCloud სერვერს არ გააჩნია ინტერნეტთან კავშირი. ეს ნიშნავს იმას რომ გარკვეული ფუნქციები როგორიცაა ექსტერნალ საცავების მონტირება, შეტყობინებები განახლების შესახებ ან სხვადასხვა 3rd აპლიკაციების ინსტალაცია არ იმუშავებს. ფაილებთან წვდომა გარე სამყაროდან და შეტყობინების იმეილებიც აგრეთვე არ იმუშავებს. ჩვენ გირჩევთ რომ ჩართოთ ინტერნეტ კავშირი ამ სერვერისთვის იმისათვის რომ გქონდეთ ownCloud–ის ყველა ფუნქცია გააქტიურებული.", +"Cron" => "Cron–ი", +"Execute one task with each page loaded" => "გაუშვი თითო მოქმედება ყველა ჩატვირთულ გვერდზე", +"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php რეგისტრირებულია webcron სერვისად. გაუშვით cron.php გვერდი რომელიც მოთავსებულია owncloud root დირექტორიაში, წუთში ერთხელ http–ით.", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "გამოიყენე სისტემური cron სერვისი. გაუშვით cron.php ფაილი owncloud ფოლდერიდან სისტემურ cronjob–ში წუთში ერთხელ.", +"Sharing" => "გაზიარება", +"Enable Share API" => "Share API–ის ჩართვა", +"Allow apps to use the Share API" => "დაუშვი აპლიკაციების უფლება Share API –ზე", +"Allow links" => "ლინკების დაშვება", +"Allow users to share items to the public with links" => "მიეცი მომხმარებლებს უფლება რომ გააზიაროს ელემენტები საჯაროდ ლინკებით", +"Allow resharing" => "გადაზიარების დაშვება", +"Allow users to share items shared with them again" => "მიეცით მომხმარებლებს უფლება რომ გააზიაროს მისთვის გაზიარებული", +"Allow users to share with anyone" => "მიეცით უფლება მომხმარებლებს გააზიაროს ყველასთვის", +"Allow users to only share with users in their groups" => "მიეცით უფლება მომხმარებლებს რომ გააზიაროს მხოლოდ თავიანთი ჯგუფისთვის", +"Security" => "უსაფრთხოება", +"Enforce HTTPS" => "HTTPS–ის ჩართვა", +"Enforces the clients to connect to ownCloud via an encrypted connection." => "ვაიძულოთ მომხმარებლები რომ დაუკავშირდნენ ownCloud დაცული კავშირით (https).", +"Please connect to this ownCloud instance via HTTPS to enable or disable the SSL enforcement." => "გთხოვთ დაუკავშირდეთ ownCloud–ს HTTPS–ით რომ შეძლოთ SSL–ის ჩართვა გამორთვა.", +"Log" => "ლოგი", +"Log level" => "ლოგირების დონე", +"More" => "უფრო მეტი", +"Less" => "naklebi", +"Version" => "ვერსია", +"Developed by the ownCloud community, the source code is licensed under the AGPL." => "წარმოებულია ownCloud community–ის მიერ. source code ვრცელდება AGPL ლიცენზიის ფარგლებში.", "Add your App" => "დაამატე შენი აპლიკაცია", "More Apps" => "უფრო მეტი აპლიკაციები", "Select an App" => "აირჩიეთ აპლიკაცია", "See application page at apps.owncloud.com" => "ნახეთ აპლიკაციის გვერდი apps.owncloud.com –ზე", "-licensed by " => "-ლიცენსირებულია ", "Update" => "განახლება", +"User Documentation" => "მომხმარებლის დოკუმენტაცია", +"Administrator Documentation" => "ადმინისტრატორის დოკუმენტაცია", +"Online Documentation" => "ონლაინ დოკუმენტაცია", +"Forum" => "ფორუმი", +"Bugtracker" => "ბაგთრექერი", +"Commercial Support" => "კომერციული მხარდაჭერა", +"You have used %s of the available %s" => "თქვენ გამოყენებული გაქვთ %s –ი –%s–დან", +"Get the apps to sync your files" => "აპლიკაცია ფაილების სინქრონიზაციისთვის", +"Show First Run Wizard again" => "მაჩვენე თავიდან გაშვებული ვიზარდი", "Password" => "პაროლი", "Your password was changed" => "თქვენი პაროლი შეიცვალა", "Unable to change your password" => "თქვენი პაროლი არ შეიცვალა", "Current password" => "მიმდინარე პაროლი", "New password" => "ახალი პაროლი", "Change password" => "პაროლის შეცვლა", +"Display Name" => "დისპლეის სახელი", +"Your display name was changed" => "დისფლეის სახელი შეიცვალა", +"Unable to change your display name" => "თქვენი დისფლეის სახელის შეცვლა ვერ მოხერხდა", +"Change display name" => "დისფლეის სახელის შეცვლა", "Email" => "იმეილი", "Your email address" => "თქვენი იმეილ მისამართი", "Fill in an email address to enable password recovery" => "შეავსეთ იმეილ მისამართის ველი პაროლის აღსადგენად", "Language" => "ენა", "Help translate" => "თარგმნის დახმარება", +"WebDAV" => "WebDAV", +"Use this address to connect to your ownCloud in your file manager" => "გამოიყენე შემდეგი მისამართი ownCloud–თან დასაკავშირებლად შენს ფაილმენეჯერში", +"Login Name" => "მომხმარებლის სახელი", "Create" => "შექმნა", -"Other" => "სხვა" +"Default Storage" => "საწყისი საცავი", +"Unlimited" => "ულიმიტო", +"Other" => "სხვა", +"Storage" => "საცავი", +"change display name" => "შეცვალე დისფლეის სახელი", +"set new password" => "დააყენეთ ახალი პაროლი", +"Default" => "საწყისი პარამეტრები" ); diff --git a/settings/l10n/sq.php b/settings/l10n/sq.php index 99f2f2aeaa..36ae95c825 100644 --- a/settings/l10n/sq.php +++ b/settings/l10n/sq.php @@ -7,6 +7,7 @@ "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Serveri web i juaji nuk është konfiguruar akoma për të lejuar sinkronizimin e skedarëve sepse ndërfaqja WebDAV mund të jetë e dëmtuar.", "Please double check the installation guides." => "Ju lutemi kontrolloni mirë shoqëruesin e instalimit.", "Update" => "Azhurno", +"Get the apps to sync your files" => "Merrni app-et për sinkronizimin e skedarëve tuaj", "Password" => "Kodi", "New password" => "Kodi i ri" ); From 59be6a910c781506674aa47057f6ca55dd3df41e Mon Sep 17 00:00:00 2001 From: raghunayyar Date: Sat, 13 Apr 2013 09:45:30 +0530 Subject: [PATCH 10/40] Implements Toggle for Database Password. --- core/css/styles.css | 10 +++++----- core/js/js.js | 1 + core/templates/installation.php | 6 ++++-- 3 files changed, 10 insertions(+), 7 deletions(-) diff --git a/core/css/styles.css b/core/css/styles.css index 823e5af08a..e44b7adcd5 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -221,11 +221,11 @@ label.infield { cursor:text !important; top:1.05em; left:.85em; } #login form .errors { background:#fed7d7; border:1px solid #f00; list-style-indent:inside; margin:0 0 2em; padding:1em; } /* Show password toggle */ -#show { position:absolute; right:1em; top:.8em; float:right; } -#show, #personal-show { display:none; } -#show + label { right:1em; top:1.25em!important; } -#show:checked + label, #personal-show:checked + label { -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=80)"; filter:alpha(opacity=80); opacity:.8; } -#show + label, #personal-show + label { +#show, #dbpassword { position:absolute; right:1em; top:.8em; float:right; } +#show, #dbpassword, #personal-show { display:none; } +#show + label, #dbpassword + label { right:1em; top:1.25em!important; } +#show:checked + label, #dbpassword:checked + label, #personal-show:checked + label { -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=80)"; filter:alpha(opacity=80); opacity:.8; } +#show + label, #dbpassword + label, #personal-show + label { position:absolute!important; height:14px; width:24px; background-image:url("../img/actions/toggle.png"); background-repeat:no-repeat; -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)"; filter:alpha(opacity=30); opacity:.3; diff --git a/core/js/js.js b/core/js/js.js index 1bb546f708..d85e6d88f8 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -605,6 +605,7 @@ $(document).ready(function(){ setShowPassword($('#password'), $('label[for=show]')); setShowPassword($('#adminpass'), $('label[for=show]')); setShowPassword($('#pass2'), $('label[for=personal-show]')); + setShowPassword($('#dbpass'), $('label[for=dbpassword]')); //use infield labels $("label.infield").inFieldLabels({ diff --git a/core/templates/installation.php b/core/templates/installation.php index c70903cba5..c034fe5b52 100644 --- a/core/templates/installation.php +++ b/core/templates/installation.php @@ -138,9 +138,11 @@ value="" autocomplete="off" />

- - + + +

From d759dca2038c669a59168a168a1e047392a157b4 Mon Sep 17 00:00:00 2001 From: kondou Date: Sat, 13 Apr 2013 15:56:01 +0200 Subject: [PATCH 11/40] Handle empty datafolder better. If datafolder is erased, the default value will be shown as a placeholder. If installation is submitted without a datafolder the default value will be used. --- core/templates/installation.php | 1 + lib/setup.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/core/templates/installation.php b/core/templates/installation.php index c70903cba5..7951004230 100644 --- a/core/templates/installation.php +++ b/core/templates/installation.php @@ -63,6 +63,7 @@

diff --git a/lib/setup.php b/lib/setup.php index 7082f0b2af..769fae1165 100644 --- a/lib/setup.php +++ b/lib/setup.php @@ -37,7 +37,7 @@ class OC_Setup { $error[] = $l->t('Set an admin password.'); } if(empty($options['directory'])) { - $error[] = $l->t('Specify a data folder.'); + $options['directory'] = OC::$SERVERROOT."/data"; } if($dbtype == 'mysql' or $dbtype == 'pgsql' or $dbtype == 'oci' or $dbtype == 'mssql') { //mysql and postgresql needs more config options From d7f6bc1ab8ae053033c5ecad1922b570fae4a323 Mon Sep 17 00:00:00 2001 From: Georg Ehrke Date: Sat, 13 Apr 2013 21:00:39 +0300 Subject: [PATCH 12/40] Update CONTRIBUTING.md --- CONTRIBUTING.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 1de46ac8b8..3c8eead05c 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -8,7 +8,14 @@ If you have questions about how to use ownCloud, please direct these to the [mai - [Android client](https://github.com/owncloud/android/issues) - [iOS client](https://github.com/owncloud/ios-issues/issues) - [Desktop client](https://github.com/owncloud/mirall/issues) - - [ownCloud apps](https://github.com/owncloud/apps/issues) (e.g. Calendar, Contacts...) + - Apps: + - [Bookmarks](https://github.com/owncloud/bookmarks/issues) + - [Calendar](https://github.com/owncloud/calendar/issues) + - [Mail](https://github.com/owncloud/mail/issues) + - [News](https://github.com/owncloud/news/issues) + - [Notes](https://github.com/owncloud/notes/issues) + - [Shorty](https://github.com/owncloud/shorty/issues) + - [other ownCloud apps](https://github.com/owncloud/apps/issues) (e.g. Contacts, Gallery...) * Search the existing issues first, it's likely that your issue was already reported. If your issue appears to be a bug, and hasn't been reported, open a new issue. From 489d9dffc50aa0424c0dc8796c9e71cfdfc32443 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Sun, 14 Apr 2013 00:49:55 +0300 Subject: [PATCH 13/40] correct naming for Pictures app, add Music --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 3c8eead05c..2dacf7f3fc 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -15,7 +15,7 @@ If you have questions about how to use ownCloud, please direct these to the [mai - [News](https://github.com/owncloud/news/issues) - [Notes](https://github.com/owncloud/notes/issues) - [Shorty](https://github.com/owncloud/shorty/issues) - - [other ownCloud apps](https://github.com/owncloud/apps/issues) (e.g. Contacts, Gallery...) + - [other pps](https://github.com/owncloud/apps/issues) (e.g. Contacts, Pictures, Music, ...) * Search the existing issues first, it's likely that your issue was already reported. If your issue appears to be a bug, and hasn't been reported, open a new issue. From de89b26f0290ae3e388c78234ce107959270eeb5 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Sun, 14 Apr 2013 00:51:34 +0300 Subject: [PATCH 14/40] move notice to search existing issues up --- CONTRIBUTING.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 2dacf7f3fc..3f3cf20e9a 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -3,6 +3,7 @@ If you have questions about how to use ownCloud, please direct these to the [mailing list][mailinglist] or our [forum][forum]. We are also available on [IRC][irc]. ### Guidelines +* Please search the existing issues first, it's likely that your issue was already reported. * [Report the issue](https://github.com/owncloud/core/issues/new) using our [template][template], it includes all the informations we need to track down the issue. * This repository is *only* for issues within the ownCloud core code. Issues in other compontents should be reported in their own repositores: - [Android client](https://github.com/owncloud/android/issues) @@ -15,8 +16,7 @@ If you have questions about how to use ownCloud, please direct these to the [mai - [News](https://github.com/owncloud/news/issues) - [Notes](https://github.com/owncloud/notes/issues) - [Shorty](https://github.com/owncloud/shorty/issues) - - [other pps](https://github.com/owncloud/apps/issues) (e.g. Contacts, Pictures, Music, ...) -* Search the existing issues first, it's likely that your issue was already reported. + - [other apps](https://github.com/owncloud/apps/issues) (e.g. Contacts, Pictures, Music, ...) If your issue appears to be a bug, and hasn't been reported, open a new issue. From 7d68cd4040dcc67d963fe36fc67090dc3c8d0256 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Sun, 14 Apr 2013 02:20:35 +0200 Subject: [PATCH 15/40] [tx-robot] updated from transifex --- apps/files/l10n/fr.php | 1 + l10n/fr/files.po | 9 ++++--- l10n/templates/core.pot | 38 ++++++++++++++--------------- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- 13 files changed, 35 insertions(+), 33 deletions(-) diff --git a/apps/files/l10n/fr.php b/apps/files/l10n/fr.php index 4a602c21ec..093a0b891c 100644 --- a/apps/files/l10n/fr.php +++ b/apps/files/l10n/fr.php @@ -25,6 +25,7 @@ "undo" => "annuler", "perform delete operation" => "effectuer l'opération de suppression", "1 file uploading" => "1 fichier en cours de téléchargement", +"files uploading" => "fichiers en cours de téléchargement", "'.' is an invalid file name." => "'.' n'est pas un nom de fichier valide.", "File name cannot be empty." => "Le nom de fichier ne peut être vide.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nom invalide, les caractères '\\', '/', '<', '>', ':', '\"', '|', '?' et '*' ne sont pas autorisés.", diff --git a/l10n/fr/files.po b/l10n/fr/files.po index edf0f8f11a..5a42c71afe 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -9,6 +9,7 @@ # Cyril Glapa , 2012. # David Basquin , 2013. # , 2013. +# froozeify , 2013. # Geoffrey Guerrier , 2012. # , 2012. # , 2012. @@ -23,9 +24,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:09+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-14 02:14+0200\n" +"PO-Revision-Date: 2013-04-13 13:20+0000\n" +"Last-Translator: froozeify \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -144,7 +145,7 @@ msgstr "1 fichier en cours de téléchargement" #: js/filelist.js:409 js/filelist.js:463 msgid "files uploading" -msgstr "" +msgstr "fichiers en cours de téléchargement" #: js/files.js:52 msgid "'.' is an invalid file name." diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index ea7306a96e..fb9b7b4b3d 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-13 02:12+0200\n" +"POT-Creation-Date: 2013-04-14 02:15+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -160,55 +160,55 @@ msgstr "" msgid "Settings" msgstr "" -#: js/js.js:717 +#: js/js.js:718 msgid "seconds ago" msgstr "" -#: js/js.js:718 +#: js/js.js:719 msgid "1 minute ago" msgstr "" -#: js/js.js:719 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:720 +#: js/js.js:721 msgid "1 hour ago" msgstr "" -#: js/js.js:721 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "" -#: js/js.js:722 +#: js/js.js:723 msgid "today" msgstr "" -#: js/js.js:723 +#: js/js.js:724 msgid "yesterday" msgstr "" -#: js/js.js:724 +#: js/js.js:725 msgid "{days} days ago" msgstr "" -#: js/js.js:725 +#: js/js.js:726 msgid "last month" msgstr "" -#: js/js.js:726 +#: js/js.js:727 msgid "{months} months ago" msgstr "" -#: js/js.js:727 +#: js/js.js:728 msgid "months ago" msgstr "" -#: js/js.js:728 +#: js/js.js:729 msgid "last year" msgstr "" -#: js/js.js:729 +#: js/js.js:730 msgid "years ago" msgstr "" @@ -533,23 +533,23 @@ msgstr "" msgid "Database user" msgstr "" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 2a33aa7dd5..b2ca7724b9 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-13 02:12+0200\n" +"POT-Creation-Date: 2013-04-14 02:14+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index cd172f299d..c975785d64 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-13 02:12+0200\n" +"POT-Creation-Date: 2013-04-14 02:14+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 954f4fec31..09245197c9 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-13 02:12+0200\n" +"POT-Creation-Date: 2013-04-14 02:14+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 75d71eb61d..c51eb1fa18 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-13 02:12+0200\n" +"POT-Creation-Date: 2013-04-14 02:14+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index fa48d4dd17..15722f5f78 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-13 02:12+0200\n" +"POT-Creation-Date: 2013-04-14 02:14+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index b4ed2f9460..20567ebec2 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-13 02:12+0200\n" +"POT-Creation-Date: 2013-04-14 02:15+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index f970e81e27..f7ed8d6972 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-13 02:12+0200\n" +"POT-Creation-Date: 2013-04-14 02:16+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index ace40e933d..16e9ef6913 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-13 02:12+0200\n" +"POT-Creation-Date: 2013-04-14 02:16+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index a912ffc498..281ea65aa4 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-13 02:12+0200\n" +"POT-Creation-Date: 2013-04-14 02:15+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index 2993850808..c45b57887f 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-13 02:12+0200\n" +"POT-Creation-Date: 2013-04-14 02:15+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" From 694c080dd2e695d440876fe3b8f34f0ef4411267 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Sun, 14 Apr 2013 19:25:46 +0200 Subject: [PATCH 16/40] fix navigation hover effect, documentation --- core/css/styles.css | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/core/css/styles.css b/core/css/styles.css index 043ca161c7..33bfd36eb0 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -266,19 +266,22 @@ fieldset.warning a { color:#b94a48 !important; font-weight:bold; } -moz-box-shadow:0 0 7px #000; -webkit-box-shadow:0 0 7px #000; box-shadow:0 0 7px #000; overflow:hidden; box-sizing:border-box; -moz-box-sizing:border-box; } -#navigation:hover { overflow-y:auto; } +#navigation:hover { overflow-y:auto; } /* show scrollbar only on hover */ #navigation a span { display:block; text-decoration:none; font-size:10px; text-align:center; color:#fff; text-shadow:#000 0 -1px 0; - -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; filter:alpha(opacity=50); opacity:.5; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; /* ellipsize long app names */ } + /* icon opacity and hover effect */ + #navigation a { -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; filter:alpha(opacity=50); opacity:.5; } #navigation a:hover, #navigation a:focus { -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=80)"; filter:alpha(opacity=80); opacity:.8; } - #navigation a.active .icon, #navigation a.active span { -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; filter:alpha(opacity=100); opacity:1; } + #navigation a.active { -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; filter:alpha(opacity=100); opacity:1; } + /* positioning */ #navigation .icon { - display:block; width:32px; height:32px; margin:0 16px 0; padding:8px 0 4px; - -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; filter:alpha(opacity=50); opacity:.5; + display:block; + width:32px; height:32px; + margin:0 16px 0; padding:8px 0 4px; } #navigation li:first-child a { padding-top:16px; } From 846f77ed9298f22623dd53b672f6ee52bd87713e Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Sun, 14 Apr 2013 19:30:16 +0200 Subject: [PATCH 17/40] additional comments --- core/css/styles.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/css/styles.css b/core/css/styles.css index 33bfd36eb0..23e2f9a96e 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -274,9 +274,9 @@ fieldset.warning a { color:#b94a48 !important; font-weight:bold; } white-space:nowrap; overflow:hidden; text-overflow:ellipsis; /* ellipsize long app names */ } /* icon opacity and hover effect */ - #navigation a { -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; filter:alpha(opacity=50); opacity:.5; } - #navigation a:hover, #navigation a:focus { -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=80)"; filter:alpha(opacity=80); opacity:.8; } - #navigation a.active { -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; filter:alpha(opacity=100); opacity:1; } + #navigation a { -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; filter:alpha(opacity=50); opacity:.5; } /* 50% opacity when inactive */ + #navigation a:hover, #navigation a:focus { -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=80)"; filter:alpha(opacity=80); opacity:.8; } /* 80% opacity when hovered or focused */ + #navigation a.active { -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; filter:alpha(opacity=100); opacity:1; } /* full opacity for the active app */ /* positioning */ #navigation .icon { display:block; From e13e4c412f1f579a3e6943c71bfd203ecfe4b203 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Mon, 15 Apr 2013 02:12:43 +0200 Subject: [PATCH 18/40] [tx-robot] updated from transifex --- apps/files/l10n/zh_TW.php | 16 +++--- core/l10n/zh_TW.php | 24 ++++----- l10n/ka_GE/settings.po | 4 +- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/zh_TW/core.po | 82 ++++++++++++++--------------- l10n/zh_TW/files.po | 22 ++++---- l10n/zh_TW/files_sharing.po | 14 ++--- l10n/zh_TW/settings.po | 44 ++++++++-------- settings/l10n/zh_TW.php | 12 +++-- 19 files changed, 123 insertions(+), 117 deletions(-) diff --git a/apps/files/l10n/zh_TW.php b/apps/files/l10n/zh_TW.php index 978ff3fa0a..b7a58e3e56 100644 --- a/apps/files/l10n/zh_TW.php +++ b/apps/files/l10n/zh_TW.php @@ -7,8 +7,8 @@ "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" => "遺失暫存資料夾", +"No file was uploaded" => "沒有檔案被上傳", +"Missing a temporary folder" => "找不到暫存資料夾", "Failed to write to disk" => "寫入硬碟失敗", "Not enough storage available" => "儲存空間不足", "Invalid directory." => "無效的資料夾。", @@ -36,8 +36,8 @@ "Not enough space available" => "沒有足夠的可用空間", "Upload cancelled." => "上傳取消", "File upload is in progress. Leaving the page now will cancel the upload." => "檔案上傳中。離開此頁面將會取消上傳。", -"URL cannot be empty." => "URL 不能為空白.", -"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "無效的資料夾名稱,'Shared' 的使用被 Owncloud 保留", +"URL cannot be empty." => "URL 不能為空白。", +"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "無效的資料夾名稱,'Shared' 的使用被 ownCloud 保留", "Error" => "錯誤", "Name" => "名稱", "Size" => "大小", @@ -61,13 +61,13 @@ "From link" => "從連結", "Deleted files" => "已刪除的檔案", "Cancel upload" => "取消上傳", -"You don’t have write permissions here." => "您在這裏沒有編輯權。", -"Nothing in here. Upload something!" => "沒有任何東西。請上傳內容!", +"You don’t have write permissions here." => "您在這裡沒有編輯權。", +"Nothing in here. Upload something!" => "這裡什麼也沒有,上傳一些東西吧!", "Download" => "下載", "Unshare" => "取消共享", "Upload too large" => "上傳過大", -"The files you are trying to upload exceed the maximum size for file uploads on this server." => "您試圖上傳的檔案已超過伺服器的最大檔案大小限制。 ", +"The files you are trying to upload exceed the maximum size for file uploads on this server." => "您試圖上傳的檔案已超過伺服器的最大檔案大小限制。", "Files are being scanned, please wait." => "正在掃描檔案,請稍等。", "Current scanning" => "目前掃描", -"Upgrading filesystem cache..." => "正在更新檔案系統快取..." +"Upgrading filesystem cache..." => "正在升級檔案系統快取..." ); diff --git a/core/l10n/zh_TW.php b/core/l10n/zh_TW.php index a6c4251d1f..5b14033ffe 100644 --- a/core/l10n/zh_TW.php +++ b/core/l10n/zh_TW.php @@ -44,11 +44,11 @@ "months ago" => "幾個月前", "last year" => "去年", "years ago" => "幾年前", -"Choose" => "選擇", +"Ok" => "好", "Cancel" => "取消", -"No" => "No", -"Yes" => "Yes", -"Ok" => "Ok", +"Choose" => "選擇", +"Yes" => "是", +"No" => "否", "The object type is not specified." => "未指定物件類型。", "Error" => "錯誤", "The app name is not specified." => "沒有指定 app 名稱。", @@ -68,7 +68,7 @@ "Send" => "寄出", "Set expiration date" => "設置到期日", "Expiration date" => "到期日", -"Share via email:" => "透過 email 分享:", +"Share via email:" => "透過電子郵件分享:", "No people found" => "沒有找到任何人", "Resharing is not allowed" => "不允許重新分享", "Shared in {item} with {user}" => "已和 {user} 分享 {item}", @@ -82,18 +82,18 @@ "Password protected" => "受密碼保護", "Error unsetting expiration date" => "解除過期日設定失敗", "Error setting expiration date" => "錯誤的到期日設定", -"Sending ..." => "正在寄出...", +"Sending ..." => "正在傳送...", "Email sent" => "Email 已寄出", "The update was unsuccessful. Please report this issue to the ownCloud community." => "升級失敗,請將此問題回報 ownCloud 社群。", "The update was successful. Redirecting you to ownCloud now." => "升級成功,正將您重新導向至 ownCloud 。", "ownCloud password reset" => "ownCloud 密碼重設", -"Use the following link to reset your password: {link}" => "請循以下聯結重設你的密碼: {link}", +"Use the following link to reset your password: {link}" => "請至以下連結重設您的密碼: {link}", "You will receive a link to reset your password via Email." => "重設密碼的連結將會寄到你的電子郵件信箱。", "Reset email send." => "重設郵件已送出。", "Request failed!" => "請求失敗!", "Username" => "使用者名稱", "Request reset" => "請求重設", -"Your password was reset" => "你的密碼已重設", +"Your password was reset" => "您的密碼已重設", "To login page" => "至登入頁面", "New password" => "新密碼", "Reset password" => "重設密碼", @@ -107,8 +107,8 @@ "Edit categories" => "編輯分類", "Add" => "增加", "Security Warning" => "安全性警告", -"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "您的PHP版本無法抵抗 NULL Byte 攻擊 (CVE-2006-7243)", -"Please update your PHP installation to use ownCloud securely." => "請更新您的PHP安裝以更安全地使用ownCloud。", +"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "您的 PHP 版本無法抵抗 NULL Byte 攻擊 (CVE-2006-7243)", +"Please update your PHP installation to use ownCloud securely." => "請更新您的 PHP 安裝以更安全地使用 ownCloud 。", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "沒有可用的亂數產生器,請啟用 PHP 中的 OpenSSL 擴充功能。", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "若沒有安全的亂數產生器,攻擊者可能可以預測密碼重設信物,然後控制您的帳戶。", "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "您的資料目錄看起來可以被 Internet 公開存取,因為 .htaccess 設定並未生效。", @@ -124,11 +124,11 @@ "Database tablespace" => "資料庫 tablespace", "Database host" => "資料庫主機", "Finish setup" => "完成設定", -"web services under your control" => "網路服務在您控制之下", +"web services under your control" => "由您控制的網路服務", "Log out" => "登出", "Automatic logon rejected!" => "自動登入被拒!", "If you did not change your password recently, your account may be compromised!" => "如果您最近並未更改密碼,您的帳號可能已經遭到入侵!", -"Please change your password to secure your account again." => "請更改您的密碼以再次取得您的帳戶的控制權。", +"Please change your password to secure your account again." => "請更改您的密碼以再次取得您帳戶的控制權。", "Lost your password?" => "忘記密碼?", "remember" => "記住", "Log in" => "登入", diff --git a/l10n/ka_GE/settings.po b/l10n/ka_GE/settings.po index 7f37b1717c..29025ab733 100644 --- a/l10n/ka_GE/settings.po +++ b/l10n/ka_GE/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-13 02:12+0200\n" -"PO-Revision-Date: 2013-04-12 11:20+0000\n" +"POT-Creation-Date: 2013-04-15 02:10+0200\n" +"PO-Revision-Date: 2013-04-14 15:20+0000\n" "Last-Translator: drlinux64 \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index fb9b7b4b3d..3e46392ef0 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-14 02:15+0200\n" +"POT-Creation-Date: 2013-04-15 02:10+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index b2ca7724b9..f754c8bd8d 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-14 02:14+0200\n" +"POT-Creation-Date: 2013-04-15 02:09+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index c975785d64..ebfd7e5e2e 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-14 02:14+0200\n" +"POT-Creation-Date: 2013-04-15 02:09+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 09245197c9..69055bd18e 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-14 02:14+0200\n" +"POT-Creation-Date: 2013-04-15 02:10+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index c51eb1fa18..08b36f4b3a 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-14 02:14+0200\n" +"POT-Creation-Date: 2013-04-15 02:10+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index 15722f5f78..14a6c5ad95 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-14 02:14+0200\n" +"POT-Creation-Date: 2013-04-15 02:10+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 20567ebec2..bea3f2884f 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-14 02:15+0200\n" +"POT-Creation-Date: 2013-04-15 02:10+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index f7ed8d6972..b4549431ec 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-14 02:16+0200\n" +"POT-Creation-Date: 2013-04-15 02:10+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 16e9ef6913..a433f3acbc 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-14 02:16+0200\n" +"POT-Creation-Date: 2013-04-15 02:10+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 281ea65aa4..1e78f874e4 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-14 02:15+0200\n" +"POT-Creation-Date: 2013-04-15 02:10+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index c45b57887f..25991dd328 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-14 02:15+0200\n" +"POT-Creation-Date: 2013-04-15 02:10+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/zh_TW/core.po b/l10n/zh_TW/core.po index 8216d6f3db..4572c6498d 100644 --- a/l10n/zh_TW/core.po +++ b/l10n/zh_TW/core.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" -"Last-Translator: Hydriz \n" +"POT-Creation-Date: 2013-04-15 02:10+0200\n" +"PO-Revision-Date: 2013-04-14 13:40+0000\n" +"Last-Translator: pellaeon \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -166,77 +166,77 @@ msgstr "十二月" msgid "Settings" msgstr "設定" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "幾秒前" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "1 分鐘前" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{minutes} 分鐘前" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "1 個小時前" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{hours} 小時前" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "今天" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "昨天" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "{days} 天前" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "上個月" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "{months} 個月前" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "幾個月前" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "去年" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "幾年前" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "選擇" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "好" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "取消" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "No" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "選擇" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" -msgstr "Yes" +msgstr "是" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "Ok" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "否" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -321,7 +321,7 @@ msgstr "到期日" #: js/share.js:211 msgid "Share via email:" -msgstr "透過 email 分享:" +msgstr "透過電子郵件分享:" #: js/share.js:213 msgid "No people found" @@ -377,7 +377,7 @@ msgstr "錯誤的到期日設定" #: js/share.js:604 msgid "Sending ..." -msgstr "正在寄出..." +msgstr "正在傳送..." #: js/share.js:615 msgid "Email sent" @@ -400,7 +400,7 @@ msgstr "ownCloud 密碼重設" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "請循以下聯結重設你的密碼: {link}" +msgstr "請至以下連結重設您的密碼: {link}" #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." @@ -425,7 +425,7 @@ msgstr "請求重設" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "你的密碼已重設" +msgstr "您的密碼已重設" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" @@ -482,11 +482,11 @@ msgstr "安全性警告" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" -msgstr "您的PHP版本無法抵抗 NULL Byte 攻擊 (CVE-2006-7243)" +msgstr "您的 PHP 版本無法抵抗 NULL Byte 攻擊 (CVE-2006-7243)" #: templates/installation.php:26 msgid "Please update your PHP installation to use ownCloud securely." -msgstr "請更新您的PHP安裝以更安全地使用ownCloud。" +msgstr "請更新您的 PHP 安裝以更安全地使用 ownCloud 。" #: templates/installation.php:32 msgid "" @@ -539,29 +539,29 @@ msgstr "將會使用" msgid "Database user" msgstr "資料庫使用者" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "資料庫密碼" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "資料庫名稱" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "資料庫 tablespace" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "資料庫主機" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "完成設定" #: templates/layout.guest.php:40 msgid "web services under your control" -msgstr "網路服務在您控制之下" +msgstr "由您控制的網路服務" #: templates/layout.user.php:58 msgid "Log out" @@ -579,7 +579,7 @@ msgstr "如果您最近並未更改密碼,您的帳號可能已經遭到入侵 #: templates/login.php:13 msgid "Please change your password to secure your account again." -msgstr "請更改您的密碼以再次取得您的帳戶的控制權。" +msgstr "請更改您的密碼以再次取得您帳戶的控制權。" #: templates/login.php:19 msgid "Lost your password?" diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index ec64b61e9f..40b8f90c02 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/files.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-10 02:08+0200\n" -"PO-Revision-Date: 2013-04-09 03:10+0000\n" -"Last-Translator: orinx \n" +"POT-Creation-Date: 2013-04-15 02:09+0200\n" +"PO-Revision-Date: 2013-04-14 13:40+0000\n" +"Last-Translator: pellaeon \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -64,11 +64,11 @@ msgstr "只有檔案的一部分被上傳" #: ajax/upload.php:31 msgid "No file was uploaded" -msgstr "無已上傳檔案" +msgstr "沒有檔案被上傳" #: ajax/upload.php:32 msgid "Missing a temporary folder" -msgstr "遺失暫存資料夾" +msgstr "找不到暫存資料夾" #: ajax/upload.php:33 msgid "Failed to write to disk" @@ -185,11 +185,11 @@ msgstr "檔案上傳中。離開此頁面將會取消上傳。" #: js/files.js:481 msgid "URL cannot be empty." -msgstr "URL 不能為空白." +msgstr "URL 不能為空白。" #: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "無效的資料夾名稱,'Shared' 的使用被 Owncloud 保留" +msgstr "無效的資料夾名稱,'Shared' 的使用被 ownCloud 保留" #: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 msgid "Error" @@ -285,11 +285,11 @@ msgstr "取消上傳" #: templates/index.php:55 msgid "You don’t have write permissions here." -msgstr "您在這裏沒有編輯權。" +msgstr "您在這裡沒有編輯權。" #: templates/index.php:62 msgid "Nothing in here. Upload something!" -msgstr "沒有任何東西。請上傳內容!" +msgstr "這裡什麼也沒有,上傳一些東西吧!" #: templates/index.php:76 msgid "Download" @@ -307,7 +307,7 @@ msgstr "上傳過大" msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." -msgstr "您試圖上傳的檔案已超過伺服器的最大檔案大小限制。 " +msgstr "您試圖上傳的檔案已超過伺服器的最大檔案大小限制。" #: templates/index.php:115 msgid "Files are being scanned, please wait." @@ -319,4 +319,4 @@ msgstr "目前掃描" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." -msgstr "正在更新檔案系統快取..." +msgstr "正在升級檔案系統快取..." diff --git a/l10n/zh_TW/files_sharing.po b/l10n/zh_TW/files_sharing.po index c60cf46d16..7f76a26ec7 100644 --- a/l10n/zh_TW/files_sharing.po +++ b/l10n/zh_TW/files_sharing.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-25 00:05+0100\n" -"PO-Revision-Date: 2013-01-24 13:15+0000\n" +"POT-Creation-Date: 2013-04-15 02:10+0200\n" +"PO-Revision-Date: 2013-04-14 13:30+0000\n" "Last-Translator: pellaeon \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -28,24 +28,24 @@ msgstr "密碼" msgid "Submit" msgstr "送出" -#: templates/public.php:17 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s 分享了資料夾 %s 給您" -#: templates/public.php:19 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s 分享了檔案 %s 給您" -#: templates/public.php:22 templates/public.php:38 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "下載" -#: templates/public.php:37 +#: templates/public.php:40 msgid "No preview available for" msgstr "無法預覽" -#: templates/public.php:43 +#: templates/public.php:50 msgid "web services under your control" msgstr "在您掌控之下的網路服務" diff --git a/l10n/zh_TW/settings.po b/l10n/zh_TW/settings.po index e9b7565831..e52516abc1 100644 --- a/l10n/zh_TW/settings.po +++ b/l10n/zh_TW/settings.po @@ -18,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-10 02:08+0200\n" -"PO-Revision-Date: 2013-04-09 03:20+0000\n" -"Last-Translator: orinx \n" +"POT-Creation-Date: 2013-04-15 02:10+0200\n" +"PO-Revision-Date: 2013-04-14 13:20+0000\n" +"Last-Translator: pellaeon \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -131,44 +131,44 @@ msgstr "已更新" msgid "Saving..." msgstr "儲存中..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "已刪除" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "復原" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "無法刪除用戶" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "群組" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "群組 管理員" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "刪除" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "新增群組" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "一定要提供一個有效的用戶名" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "創建用戶時出現錯誤" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "一定要提供一個有效的密碼" @@ -191,7 +191,7 @@ msgstr "您的資料目錄 (Data Directory) 和檔案可能可以由網際網路 #: templates/admin.php:29 msgid "Setup Warning" -msgstr "" +msgstr "設定警告" #: templates/admin.php:32 msgid "" @@ -216,7 +216,7 @@ msgstr "未偵測到 PHP 模組 'fileinfo'。我們強烈建議啟用這個模 #: templates/admin.php:58 msgid "Locale not working" -msgstr "" +msgstr "語系無法運作" #: templates/admin.php:63 #, php-format @@ -224,7 +224,7 @@ msgid "" "This ownCloud server can't set system locale to %s. This means that there " "might be problems with certain characters in file names. We strongly suggest" " to install the required packages on your system to support %s." -msgstr "" +msgstr "ownCloud 伺服器無法將系統語系設為 %s ,可能有一些檔名中的字元有問題,建議您安裝所有所需的套件以支援 %s 。" #: templates/admin.php:75 msgid "Internet connection not working" @@ -238,7 +238,7 @@ msgid "" "remote and sending of notification emails might also not work. We suggest to" " enable internet connection for this server if you want to have all features" " of ownCloud." -msgstr "" +msgstr "這臺 ownCloud 伺服器沒有連接到網際網路,因此有些功能像是掛載外部儲存空間、更新 ownCloud 或應用程式的通知沒有辦法運作。透過網際網路存取檔案還有電子郵件通知可能也無法運作。如果想要 ownCloud 完整的功能,建議您將這臺伺服器連接至網際網路。" #: templates/admin.php:92 msgid "Cron" @@ -258,11 +258,11 @@ msgstr "" msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "" +msgstr "使用系統的 cron 服務,每分鐘執行一次 owncloud 資料夾中的 cron.php 。" #: templates/admin.php:128 msgid "Sharing" -msgstr "" +msgstr "分享" #: templates/admin.php:134 msgid "Enable Share API" @@ -416,7 +416,7 @@ msgstr "你的密碼已更改" #: templates/personal.php:39 msgid "Unable to change your password" -msgstr "無法變更你的密碼" +msgstr "無法變更您的密碼" #: templates/personal.php:40 msgid "Current password" @@ -452,7 +452,7 @@ msgstr "電子郵件" #: templates/personal.php:72 msgid "Your email address" -msgstr "你的電子郵件信箱" +msgstr "您的電子郵件信箱" #: templates/personal.php:73 msgid "Fill in an email address to enable password recovery" @@ -480,7 +480,7 @@ msgstr "登入名稱" #: templates/users.php:32 msgid "Create" -msgstr "創造" +msgstr "建立" #: templates/users.php:35 msgid "Default Storage" diff --git a/settings/l10n/zh_TW.php b/settings/l10n/zh_TW.php index b5eb115f91..5fb21bfe08 100644 --- a/settings/l10n/zh_TW.php +++ b/settings/l10n/zh_TW.php @@ -37,13 +37,19 @@ "__language_name__" => "__語言_名稱__", "Security Warning" => "安全性警告", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "您的資料目錄 (Data Directory) 和檔案可能可以由網際網路上面公開存取。Owncloud 所提供的 .htaccess 設定檔並未生效,我們強烈建議您設定您的網頁伺服器以防止資料目錄被公開存取,或將您的資料目錄移出網頁伺服器的 document root 。", +"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 installation guides." => "請參考安裝指南。", "Module 'fileinfo' missing" => "遺失 'fileinfo' 模組", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "未偵測到 PHP 模組 'fileinfo'。我們強烈建議啟用這個模組以取得最好的 mime-type 支援。", +"Locale not working" => "語系無法運作", +"This ownCloud server can't set system locale to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "ownCloud 伺服器無法將系統語系設為 %s ,可能有一些檔名中的字元有問題,建議您安裝所有所需的套件以支援 %s 。", "Internet connection not working" => "去連線", +"This ownCloud server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features of ownCloud." => "這臺 ownCloud 伺服器沒有連接到網際網路,因此有些功能像是掛載外部儲存空間、更新 ownCloud 或應用程式的通知沒有辦法運作。透過網際網路存取檔案還有電子郵件通知可能也無法運作。如果想要 ownCloud 完整的功能,建議您將這臺伺服器連接至網際網路。", "Cron" => "定期執行", "Execute one task with each page loaded" => "當頁面載入時,執行", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "使用系統的 cron 服務,每分鐘執行一次 owncloud 資料夾中的 cron.php 。", +"Sharing" => "分享", "Enable Share API" => "啟用分享 API", "Allow apps to use the Share API" => "允許 apps 使用分享 API", "Allow links" => "允許連結", @@ -79,7 +85,7 @@ "Show First Run Wizard again" => "再次顯示首次使用精靈", "Password" => "密碼", "Your password was changed" => "你的密碼已更改", -"Unable to change your password" => "無法變更你的密碼", +"Unable to change your password" => "無法變更您的密碼", "Current password" => "目前密碼", "New password" => "新密碼", "Change password" => "變更密碼", @@ -88,14 +94,14 @@ "Unable to change your display name" => "無法更改您的顯示名稱", "Change display name" => "更改顯示名稱", "Email" => "電子郵件", -"Your email address" => "你的電子郵件信箱", +"Your email address" => "您的電子郵件信箱", "Fill in an email address to enable password recovery" => "請填入電子郵件信箱以便回復密碼", "Language" => "語言", "Help translate" => "幫助翻譯", "WebDAV" => "WebDAV", "Use this address to connect to your ownCloud in your file manager" => "在您的檔案管理員中使用這個地址來連線到 ownCloud", "Login Name" => "登入名稱", -"Create" => "創造", +"Create" => "建立", "Default Storage" => "預設儲存區", "Unlimited" => "無限制", "Other" => "其他", From 2fa34d6772ae578911dca17bbb0dc7a755024d05 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Fri, 5 Apr 2013 11:27:08 +0200 Subject: [PATCH 19/40] Make FileCache upgrade more robust, fixes #2650 --- lib/files/cache/legacy.php | 24 ++++++++++++++++++------ lib/files/cache/upgrade.php | 4 ++++ 2 files changed, 22 insertions(+), 6 deletions(-) diff --git a/lib/files/cache/legacy.php b/lib/files/cache/legacy.php index 9556a2639a..b8e2548639 100644 --- a/lib/files/cache/legacy.php +++ b/lib/files/cache/legacy.php @@ -80,7 +80,7 @@ class Legacy { } $result = $query->execute(array($path)); $data = $result->fetchRow(); - $data['etag'] = $this->getEtag($data['path']); + $data['etag'] = $this->getEtag($data['path'], $data['user']); return $data; } @@ -90,12 +90,24 @@ class Legacy { * @param type $path * @return string */ - function getEtag($path) { + function getEtag($path, $user = null) { static $query = null; - list(, $user, , $relativePath) = explode('/', $path, 4); - if (is_null($relativePath)) { - $relativePath = ''; + + $pathDetails = explode('/', $path, 4); + if((!$user) && !isset($pathDetails[1])) { + //no user!? Too odd, return empty string. + return ''; + } else if(!$user) { + //guess user from path, if no user passed. + $user = $pathDetails[1]; } + + if(!isset($pathDetails[3]) || is_null($pathDetails[3])) { + $relativePath = ''; + } else { + $relativePath = $pathDetails[3]; + } + if(is_null($query)){ $query = \OC_DB::prepare('SELECT `propertyvalue` FROM `*PREFIX*properties` WHERE `userid` = ? AND `propertypath` = ? AND `propertyname` = \'{DAV:}getetag\''); } @@ -118,7 +130,7 @@ class Legacy { $result = $query->execute(array($id)); $data = $result->fetchAll(); foreach ($data as $i => $item) { - $data[$i]['etag'] = $this->getEtag($item['path']); + $data[$i]['etag'] = $this->getEtag($item['path'], $item['user']); } return $data; } diff --git a/lib/files/cache/upgrade.php b/lib/files/cache/upgrade.php index 797f4e6ba8..ca044ba81d 100644 --- a/lib/files/cache/upgrade.php +++ b/lib/files/cache/upgrade.php @@ -127,6 +127,10 @@ class Upgrade { * @return array */ function getNewData($data) { + //Make sure there is a path, otherwise we can do nothing. + if(!isset($data['path'])) { + return false; + } $newData = $data; /** * @var \OC\Files\Storage\Storage $storage From 19526c9cf6a6b391581046aee75a47bf189a0158 Mon Sep 17 00:00:00 2001 From: Bernhard Posselt Date: Mon, 15 Apr 2013 20:29:45 +0200 Subject: [PATCH 20/40] also show black background on links that are active, fixes the news app that doesnt show the bg for folders correctly --- core/css/styles.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/css/styles.css b/core/css/styles.css index 043ca161c7..5bc4e8ed5c 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -414,7 +414,8 @@ div.crumb a{ padding: 0.9em 0 0.7em 0; } -moz-box-sizing: border-box; box-sizing: border-box; text-shadow: 0 1px 0 rgba(255,255,255,.9); } -#app-navigation .active { /* active navigation entry or folder */ +#app-navigation .active, +#app-navigation .active a { /* active navigation entry or folder */ background-color: #ddd; text-shadow: 0 1px 0 rgba(255,255,255,.7); } From 0f86ed3ad5bbaf0429e5abebb539800761929863 Mon Sep 17 00:00:00 2001 From: kondou Date: Mon, 15 Apr 2013 21:07:45 +0200 Subject: [PATCH 21/40] Shorten CSS colorcodes Only need to be three digits. --- core/css/styles.css | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/core/css/styles.css b/core/css/styles.css index 5bc4e8ed5c..15df585247 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -336,17 +336,17 @@ div.jp-play-bar, div.jp-seek-bar { padding:0; } li.update, li.error { width:640px; margin:4em auto; padding:1em 1em 1em 4em; background:#ffe .8em .8em no-repeat; border:1px solid #ccc; -moz-border-radius:10px; -webkit-border-radius:10px; border-radius:10px; cursor:default; } .error { color:#FF3B3B; } .ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default { overflow:hidden; text-overflow:ellipsis; } -.hint { background-image:url('../img/actions/info.png'); background-repeat:no-repeat; color:#777777; padding-left:25px; background-position:0 0.3em;} +.hint { background-image:url('../img/actions/info.png'); background-repeat:no-repeat; color:#777; padding-left:25px; background-position:0 0.3em;} .separator { display:inline; border-left:1px solid #d3d3d3; border-right:1px solid #fff; height:10px; width:0px; margin:4px; } a.bookmarklet { background-color:#ddd; border:1px solid #ccc; padding:5px;padding-top:0px;padding-bottom:2px; text-decoration:none; margin-top:5px } -.exception{color:#000000;} +.exception{color:#000;} .exception textarea{width:95%;height:200px;background:#ffe;border:0;} .ui-icon-circle-triangle-e{ background-image:url('../img/actions/play-next.svg'); } .ui-icon-circle-triangle-w{ background-image:url('../img/actions/play-previous.svg'); } -.ui-datepicker-prev,.ui-datepicker-next{ border:1px solid #ddd; background:#ffffff; } +.ui-datepicker-prev,.ui-datepicker-next{ border:1px solid #ddd; background:#fff; } /* ---- DIALOGS ---- */ #dirup {width:4%;} @@ -367,7 +367,7 @@ span.ui-icon {float: left; margin: 3px 7px 30px 0;} #category_addinput { width:10em; } /* ---- APP SETTINGS ---- */ -.popup { background-color:white; border-radius:10px 10px 10px 10px; box-shadow:0 0 20px #888888; color:#333333; padding:10px; position:fixed !important; z-index:200; } +.popup { background-color:white; border-radius:10px 10px 10px 10px; box-shadow:0 0 20px #888; color:#333; padding:10px; position:fixed !important; z-index:200; } .popup.topright { top:7em; right:1em; } .popup.bottomleft { bottom:1em; left:33em; } .popup .close { position:absolute; top:0.2em; right:0.2em; height:20px; width:20px; background:url('../img/actions/delete.svg') no-repeat center; } From 155582ab70b0a469f1d0a7159a16334283f91bbc Mon Sep 17 00:00:00 2001 From: Thomas Tanghus Date: Mon, 15 Apr 2013 22:10:29 +0200 Subject: [PATCH 22/40] Updated docs. --- core/js/octemplate.js | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/core/js/octemplate.js b/core/js/octemplate.js index f25f70eb37..a5d56852a5 100644 --- a/core/js/octemplate.js +++ b/core/js/octemplate.js @@ -5,12 +5,17 @@ * * Usage examples: * - * var str = 'Bake, uncovered, until the {greasystuff} is melted and the {pasta} is heated through, about {min} minutes.' - * $(str).octemplate({greasystuff: 'cheese', pasta: 'macaroni', min: 10}); + * var htmlStr = '

Bake, uncovered, until the {greasystuff} is melted and the {pasta} is heated through, about {min} minutes.

' + * $(htmlStr).octemplate({greasystuff: 'cheese', pasta: 'macaroni', min: 10}); * * var htmlStr = '

Welcome back {user}

'; * $(htmlStr).octemplate({user: 'John Q. Public'}, {escapeFunction: null}); * + * Be aware that the target string must be wrapped in an HTML element for the plugin to work. The following won't work: + * + * var textStr = 'Welcome back {user}'; + * $(textStr).octemplate({user: 'John Q. Public'}); + * * For anything larger than one-liners, you can use a simple $.get() ajax request to get the template, * or you can embed them it the page using the text/template type: * From d0b3e8aceba231b4206677b5000216dfc2b75f33 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Tue, 16 Apr 2013 02:17:30 +0200 Subject: [PATCH 23/40] [tx-robot] updated from transifex --- apps/files/l10n/ja_JP.php | 2 +- apps/files/l10n/pt_PT.php | 1 + apps/files/l10n/uk.php | 1 + apps/files_sharing/l10n/pt_PT.php | 4 +- apps/files_trashbin/l10n/pt_PT.php | 4 +- apps/user_ldap/l10n/fr.php | 2 +- apps/user_ldap/l10n/ka_GE.php | 71 ++++++++++++- core/l10n/ar.php | 8 +- core/l10n/bn_BD.php | 8 +- core/l10n/ca.php | 8 +- core/l10n/cs_CZ.php | 8 +- core/l10n/da.php | 8 +- core/l10n/de.php | 8 +- core/l10n/de_DE.php | 8 +- core/l10n/eo.php | 8 +- core/l10n/es.php | 8 +- core/l10n/es_AR.php | 8 +- core/l10n/eu.php | 8 +- core/l10n/fa.php | 8 +- core/l10n/fi_FI.php | 8 +- core/l10n/fr.php | 8 +- core/l10n/gl.php | 8 +- core/l10n/he.php | 8 +- core/l10n/hr.php | 8 +- core/l10n/hu_HU.php | 8 +- core/l10n/is.php | 8 +- core/l10n/it.php | 8 +- core/l10n/ja_JP.php | 10 +- core/l10n/ko.php | 8 +- core/l10n/lb.php | 8 +- core/l10n/lt_LT.php | 8 +- core/l10n/lv.php | 8 +- core/l10n/mk.php | 8 +- core/l10n/ms_MY.php | 6 +- core/l10n/my_MM.php | 8 +- core/l10n/nb_NO.php | 8 +- core/l10n/nl.php | 8 +- core/l10n/oc.php | 8 +- core/l10n/pl.php | 8 +- core/l10n/pt_BR.php | 8 +- core/l10n/pt_PT.php | 8 +- core/l10n/ro.php | 8 +- core/l10n/ru.php | 8 +- core/l10n/ru_RU.php | 8 +- core/l10n/si_LK.php | 8 +- core/l10n/sk_SK.php | 8 +- core/l10n/sl.php | 8 +- core/l10n/sq.php | 8 +- core/l10n/sr.php | 8 +- core/l10n/sv.php | 8 +- core/l10n/ta_LK.php | 8 +- core/l10n/te.php | 6 +- core/l10n/th_TH.php | 8 +- core/l10n/tr.php | 8 +- core/l10n/uk.php | 10 +- core/l10n/ur_PK.php | 8 +- core/l10n/vi.php | 8 +- core/l10n/zh_CN.GB2312.php | 8 +- core/l10n/zh_CN.php | 8 +- core/l10n/zh_HK.php | 6 +- l10n/af_ZA/core.po | 62 +++++------ l10n/af_ZA/files.po | 4 +- l10n/af_ZA/files_encryption.po | 4 +- l10n/af_ZA/files_external.po | 8 +- l10n/af_ZA/files_sharing.po | 16 +-- l10n/af_ZA/files_trashbin.po | 4 +- l10n/af_ZA/files_versions.po | 8 +- l10n/af_ZA/lib.po | 4 +- l10n/af_ZA/settings.po | 32 +++--- l10n/af_ZA/user_ldap.po | 120 ++++++++++----------- l10n/af_ZA/user_webdavauth.po | 8 +- l10n/ar/core.po | 64 ++++++------ l10n/ar/files.po | 4 +- l10n/ar/files_encryption.po | 6 +- l10n/ar/files_external.po | 8 +- l10n/ar/files_sharing.po | 16 +-- l10n/ar/files_trashbin.po | 4 +- l10n/ar/files_versions.po | 8 +- l10n/ar/lib.po | 6 +- l10n/ar/settings.po | 24 ++--- l10n/ar/user_ldap.po | 120 ++++++++++----------- l10n/ar/user_webdavauth.po | 6 +- l10n/be/core.po | 94 +++++++++-------- l10n/be/files.po | 4 +- l10n/be/files_encryption.po | 6 +- l10n/be/files_external.po | 8 +- l10n/be/files_sharing.po | 16 +-- l10n/be/files_trashbin.po | 4 +- l10n/be/files_versions.po | 8 +- l10n/be/lib.po | 50 ++++----- l10n/be/settings.po | 32 +++--- l10n/be/user_ldap.po | 120 ++++++++++----------- l10n/be/user_webdavauth.po | 6 +- l10n/bg_BG/core.po | 56 +++++----- l10n/bg_BG/files.po | 4 +- l10n/bg_BG/files_encryption.po | 4 +- l10n/bg_BG/files_external.po | 8 +- l10n/bg_BG/files_sharing.po | 16 +-- l10n/bg_BG/files_trashbin.po | 4 +- l10n/bg_BG/files_versions.po | 8 +- l10n/bg_BG/lib.po | 6 +- l10n/bg_BG/settings.po | 24 ++--- l10n/bg_BG/user_ldap.po | 120 ++++++++++----------- l10n/bg_BG/user_webdavauth.po | 6 +- l10n/bn_BD/core.po | 62 +++++------ l10n/bn_BD/files.po | 4 +- l10n/bn_BD/files_encryption.po | 4 +- l10n/bn_BD/files_external.po | 8 +- l10n/bn_BD/files_sharing.po | 16 +-- l10n/bn_BD/files_trashbin.po | 4 +- l10n/bn_BD/files_versions.po | 8 +- l10n/bn_BD/lib.po | 4 +- l10n/bn_BD/settings.po | 24 ++--- l10n/bn_BD/user_ldap.po | 4 +- l10n/bn_BD/user_webdavauth.po | 6 +- l10n/ca/core.po | 64 ++++++------ l10n/ca/files.po | 6 +- l10n/ca/files_encryption.po | 4 +- l10n/ca/files_external.po | 10 +- l10n/ca/files_sharing.po | 16 +-- l10n/ca/files_trashbin.po | 4 +- l10n/ca/files_versions.po | 10 +- l10n/ca/lib.po | 6 +- l10n/ca/settings.po | 24 ++--- l10n/ca/user_ldap.po | 6 +- l10n/ca/user_webdavauth.po | 8 +- l10n/cs_CZ/core.po | 64 ++++++------ l10n/cs_CZ/files.po | 6 +- l10n/cs_CZ/files_encryption.po | 4 +- l10n/cs_CZ/files_external.po | 10 +- l10n/cs_CZ/files_sharing.po | 16 +-- l10n/cs_CZ/files_trashbin.po | 4 +- l10n/cs_CZ/files_versions.po | 10 +- l10n/cs_CZ/lib.po | 6 +- l10n/cs_CZ/settings.po | 24 ++--- l10n/cs_CZ/user_ldap.po | 6 +- l10n/cs_CZ/user_webdavauth.po | 8 +- l10n/da/core.po | 64 ++++++------ l10n/da/files.po | 4 +- l10n/da/files_encryption.po | 6 +- l10n/da/files_external.po | 10 +- l10n/da/files_sharing.po | 16 +-- l10n/da/files_trashbin.po | 4 +- l10n/da/files_versions.po | 6 +- l10n/da/lib.po | 6 +- l10n/da/settings.po | 24 ++--- l10n/da/user_ldap.po | 4 +- l10n/da/user_webdavauth.po | 8 +- l10n/de/core.po | 64 ++++++------ l10n/de/files.po | 6 +- l10n/de/files_encryption.po | 6 +- l10n/de/files_external.po | 10 +- l10n/de/files_sharing.po | 18 ++-- l10n/de/files_trashbin.po | 4 +- l10n/de/files_versions.po | 6 +- l10n/de/lib.po | 6 +- l10n/de/settings.po | 24 ++--- l10n/de/user_ldap.po | 6 +- l10n/de/user_webdavauth.po | 6 +- l10n/de_DE/core.po | 64 ++++++------ l10n/de_DE/files.po | 6 +- l10n/de_DE/files_encryption.po | 6 +- l10n/de_DE/files_external.po | 10 +- l10n/de_DE/files_sharing.po | 18 ++-- l10n/de_DE/files_trashbin.po | 6 +- l10n/de_DE/files_versions.po | 6 +- l10n/de_DE/lib.po | 6 +- l10n/de_DE/settings.po | 26 ++--- l10n/de_DE/user_ldap.po | 6 +- l10n/de_DE/user_webdavauth.po | 6 +- l10n/el/core.po | 42 ++++---- l10n/el/files.po | 6 +- l10n/el/files_encryption.po | 4 +- l10n/el/files_external.po | 6 +- l10n/el/files_sharing.po | 16 +-- l10n/el/files_trashbin.po | 4 +- l10n/el/files_versions.po | 6 +- l10n/el/lib.po | 6 +- l10n/el/settings.po | 26 ++--- l10n/el/user_ldap.po | 4 +- l10n/el/user_webdavauth.po | 8 +- l10n/eo/core.po | 62 +++++------ l10n/eo/files.po | 4 +- l10n/eo/files_encryption.po | 4 +- l10n/eo/files_external.po | 8 +- l10n/eo/files_sharing.po | 16 +-- l10n/eo/files_trashbin.po | 4 +- l10n/eo/files_versions.po | 6 +- l10n/eo/lib.po | 4 +- l10n/eo/settings.po | 24 ++--- l10n/eo/user_ldap.po | 4 +- l10n/eo/user_webdavauth.po | 8 +- l10n/es/core.po | 64 ++++++------ l10n/es/files.po | 6 +- l10n/es/files_encryption.po | 4 +- l10n/es/files_external.po | 10 +- l10n/es/files_sharing.po | 16 +-- l10n/es/files_trashbin.po | 4 +- l10n/es/files_versions.po | 10 +- l10n/es/lib.po | 6 +- l10n/es/settings.po | 24 ++--- l10n/es/user_ldap.po | 6 +- l10n/es/user_webdavauth.po | 8 +- l10n/es_AR/core.po | 64 ++++++------ l10n/es_AR/files.po | 4 +- l10n/es_AR/files_encryption.po | 6 +- l10n/es_AR/files_external.po | 10 +- l10n/es_AR/files_sharing.po | 16 +-- l10n/es_AR/files_trashbin.po | 4 +- l10n/es_AR/files_versions.po | 10 +- l10n/es_AR/lib.po | 6 +- l10n/es_AR/settings.po | 24 ++--- l10n/es_AR/user_ldap.po | 6 +- l10n/es_AR/user_webdavauth.po | 8 +- l10n/et_EE/core.po | 42 ++++---- l10n/et_EE/files.po | 6 +- l10n/et_EE/files_encryption.po | 6 +- l10n/et_EE/files_external.po | 6 +- l10n/et_EE/files_sharing.po | 16 +-- l10n/et_EE/files_trashbin.po | 6 +- l10n/et_EE/files_versions.po | 6 +- l10n/et_EE/lib.po | 6 +- l10n/et_EE/settings.po | 26 ++--- l10n/et_EE/user_ldap.po | 6 +- l10n/et_EE/user_webdavauth.po | 6 +- l10n/eu/core.po | 64 ++++++------ l10n/eu/files.po | 4 +- l10n/eu/files_encryption.po | 6 +- l10n/eu/files_external.po | 10 +- l10n/eu/files_sharing.po | 16 +-- l10n/eu/files_trashbin.po | 4 +- l10n/eu/files_versions.po | 6 +- l10n/eu/lib.po | 6 +- l10n/eu/settings.po | 24 ++--- l10n/eu/user_ldap.po | 6 +- l10n/eu/user_webdavauth.po | 8 +- l10n/fa/core.po | 64 ++++++------ l10n/fa/files.po | 6 +- l10n/fa/files_encryption.po | 6 +- l10n/fa/files_external.po | 10 +- l10n/fa/files_sharing.po | 16 +-- l10n/fa/files_trashbin.po | 4 +- l10n/fa/files_versions.po | 8 +- l10n/fa/lib.po | 6 +- l10n/fa/settings.po | 26 ++--- l10n/fa/user_ldap.po | 6 +- l10n/fa/user_webdavauth.po | 6 +- l10n/fi/core.po | 64 ++++++------ l10n/fi/files.po | 4 +- l10n/fi/lib.po | 6 +- l10n/fi_FI/core.po | 64 ++++++------ l10n/fi_FI/files.po | 4 +- l10n/fi_FI/files_encryption.po | 6 +- l10n/fi_FI/files_external.po | 10 +- l10n/fi_FI/files_sharing.po | 16 +-- l10n/fi_FI/files_trashbin.po | 4 +- l10n/fi_FI/files_versions.po | 6 +- l10n/fi_FI/lib.po | 6 +- l10n/fi_FI/settings.po | 26 ++--- l10n/fi_FI/user_ldap.po | 6 +- l10n/fi_FI/user_webdavauth.po | 6 +- l10n/fr/core.po | 64 ++++++------ l10n/fr/files.po | 6 +- l10n/fr/files_encryption.po | 4 +- l10n/fr/files_external.po | 10 +- l10n/fr/files_sharing.po | 16 +-- l10n/fr/files_trashbin.po | 4 +- l10n/fr/files_versions.po | 6 +- l10n/fr/lib.po | 6 +- l10n/fr/settings.po | 24 ++--- l10n/fr/user_ldap.po | 8 +- l10n/fr/user_webdavauth.po | 8 +- l10n/gl/core.po | 64 ++++++------ l10n/gl/files.po | 6 +- l10n/gl/files_encryption.po | 6 +- l10n/gl/files_external.po | 10 +- l10n/gl/files_sharing.po | 16 +-- l10n/gl/files_trashbin.po | 4 +- l10n/gl/files_versions.po | 10 +- l10n/gl/lib.po | 6 +- l10n/gl/settings.po | 24 ++--- l10n/gl/user_ldap.po | 6 +- l10n/gl/user_webdavauth.po | 6 +- l10n/he/core.po | 62 +++++------ l10n/he/files.po | 4 +- l10n/he/files_encryption.po | 4 +- l10n/he/files_external.po | 8 +- l10n/he/files_sharing.po | 16 +-- l10n/he/files_trashbin.po | 4 +- l10n/he/files_versions.po | 8 +- l10n/he/lib.po | 4 +- l10n/he/settings.po | 24 ++--- l10n/he/user_ldap.po | 4 +- l10n/he/user_webdavauth.po | 6 +- l10n/hi/core.po | 62 +++++------ l10n/hi/files.po | 4 +- l10n/hi/files_encryption.po | 4 +- l10n/hi/files_external.po | 8 +- l10n/hi/files_sharing.po | 16 +-- l10n/hi/files_trashbin.po | 4 +- l10n/hi/files_versions.po | 8 +- l10n/hi/lib.po | 4 +- l10n/hi/settings.po | 32 +++--- l10n/hi/user_ldap.po | 120 ++++++++++----------- l10n/hi/user_webdavauth.po | 6 +- l10n/hr/core.po | 62 +++++------ l10n/hr/files.po | 4 +- l10n/hr/files_encryption.po | 4 +- l10n/hr/files_external.po | 8 +- l10n/hr/files_sharing.po | 16 +-- l10n/hr/files_trashbin.po | 4 +- l10n/hr/files_versions.po | 8 +- l10n/hr/lib.po | 4 +- l10n/hr/settings.po | 24 ++--- l10n/hr/user_ldap.po | 120 ++++++++++----------- l10n/hr/user_webdavauth.po | 6 +- l10n/hu_HU/core.po | 64 ++++++------ l10n/hu_HU/files.po | 6 +- l10n/hu_HU/files_encryption.po | 6 +- l10n/hu_HU/files_external.po | 10 +- l10n/hu_HU/files_sharing.po | 16 +-- l10n/hu_HU/files_trashbin.po | 4 +- l10n/hu_HU/files_versions.po | 8 +- l10n/hu_HU/lib.po | 6 +- l10n/hu_HU/settings.po | 24 ++--- l10n/hu_HU/user_ldap.po | 6 +- l10n/hu_HU/user_webdavauth.po | 8 +- l10n/hy/files.po | 4 +- l10n/hy/files_external.po | 8 +- l10n/hy/files_trashbin.po | 4 +- l10n/hy/settings.po | 32 +++--- l10n/ia/core.po | 62 +++++------ l10n/ia/files.po | 4 +- l10n/ia/files_encryption.po | 4 +- l10n/ia/files_external.po | 8 +- l10n/ia/files_sharing.po | 16 +-- l10n/ia/files_trashbin.po | 4 +- l10n/ia/files_versions.po | 8 +- l10n/ia/lib.po | 4 +- l10n/ia/settings.po | 4 +- l10n/ia/user_ldap.po | 120 ++++++++++----------- l10n/ia/user_webdavauth.po | 6 +- l10n/id/core.po | 42 ++++---- l10n/id/files.po | 6 +- l10n/id/files_encryption.po | 6 +- l10n/id/files_external.po | 6 +- l10n/id/files_sharing.po | 6 +- l10n/id/files_trashbin.po | 6 +- l10n/id/files_versions.po | 6 +- l10n/id/lib.po | 6 +- l10n/id/settings.po | 26 ++--- l10n/id/user_ldap.po | 6 +- l10n/id/user_webdavauth.po | 6 +- l10n/is/core.po | 62 +++++------ l10n/is/files.po | 4 +- l10n/is/files_encryption.po | 4 +- l10n/is/files_external.po | 8 +- l10n/is/files_sharing.po | 16 +-- l10n/is/files_trashbin.po | 4 +- l10n/is/files_versions.po | 8 +- l10n/is/lib.po | 4 +- l10n/is/settings.po | 24 ++--- l10n/is/user_ldap.po | 4 +- l10n/is/user_webdavauth.po | 6 +- l10n/it/core.po | 64 ++++++------ l10n/it/files.po | 6 +- l10n/it/files_encryption.po | 4 +- l10n/it/files_external.po | 10 +- l10n/it/files_sharing.po | 16 +-- l10n/it/files_trashbin.po | 4 +- l10n/it/files_versions.po | 10 +- l10n/it/lib.po | 6 +- l10n/it/settings.po | 24 ++--- l10n/it/user_ldap.po | 6 +- l10n/it/user_webdavauth.po | 8 +- l10n/ja_JP/core.po | 66 ++++++------ l10n/ja_JP/files.po | 8 +- l10n/ja_JP/files_encryption.po | 4 +- l10n/ja_JP/files_external.po | 10 +- l10n/ja_JP/files_sharing.po | 16 +-- l10n/ja_JP/files_trashbin.po | 4 +- l10n/ja_JP/files_versions.po | 6 +- l10n/ja_JP/lib.po | 8 +- l10n/ja_JP/settings.po | 30 +++--- l10n/ja_JP/user_ldap.po | 6 +- l10n/ja_JP/user_webdavauth.po | 8 +- l10n/ka/core.po | 94 +++++++++-------- l10n/ka/files.po | 4 +- l10n/ka/files_encryption.po | 6 +- l10n/ka/files_external.po | 8 +- l10n/ka/files_sharing.po | 12 +-- l10n/ka/files_trashbin.po | 4 +- l10n/ka/files_versions.po | 8 +- l10n/ka/lib.po | 4 +- l10n/ka/settings.po | 32 +++--- l10n/ka/user_ldap.po | 120 ++++++++++----------- l10n/ka/user_webdavauth.po | 6 +- l10n/ka_GE/core.po | 42 ++++---- l10n/ka_GE/files.po | 6 +- l10n/ka_GE/files_encryption.po | 6 +- l10n/ka_GE/files_external.po | 6 +- l10n/ka_GE/files_sharing.po | 6 +- l10n/ka_GE/files_trashbin.po | 6 +- l10n/ka_GE/files_versions.po | 6 +- l10n/ka_GE/lib.po | 6 +- l10n/ka_GE/settings.po | 6 +- l10n/ka_GE/user_ldap.po | 145 +++++++++++++------------- l10n/ka_GE/user_webdavauth.po | 6 +- l10n/kn/core.po | 64 ++++++------ l10n/kn/files.po | 4 +- l10n/kn/files_encryption.po | 6 +- l10n/kn/files_external.po | 10 +- l10n/kn/files_sharing.po | 6 +- l10n/kn/files_trashbin.po | 4 +- l10n/kn/files_versions.po | 6 +- l10n/kn/lib.po | 6 +- l10n/kn/settings.po | 34 +++--- l10n/kn/user_ldap.po | 6 +- l10n/kn/user_webdavauth.po | 6 +- l10n/ko/core.po | 62 +++++------ l10n/ko/files.po | 4 +- l10n/ko/files_encryption.po | 4 +- l10n/ko/files_external.po | 8 +- l10n/ko/files_sharing.po | 17 +-- l10n/ko/files_trashbin.po | 4 +- l10n/ko/files_versions.po | 6 +- l10n/ko/lib.po | 4 +- l10n/ko/settings.po | 4 +- l10n/ko/user_ldap.po | 4 +- l10n/ko/user_webdavauth.po | 8 +- l10n/ku_IQ/core.po | 56 +++++----- l10n/ku_IQ/files.po | 4 +- l10n/ku_IQ/files_encryption.po | 4 +- l10n/ku_IQ/files_external.po | 8 +- l10n/ku_IQ/files_sharing.po | 16 +-- l10n/ku_IQ/files_trashbin.po | 4 +- l10n/ku_IQ/files_versions.po | 8 +- l10n/ku_IQ/lib.po | 4 +- l10n/ku_IQ/settings.po | 24 ++--- l10n/ku_IQ/user_ldap.po | 120 ++++++++++----------- l10n/ku_IQ/user_webdavauth.po | 6 +- l10n/lb/core.po | 62 +++++------ l10n/lb/files.po | 4 +- l10n/lb/files_encryption.po | 4 +- l10n/lb/files_external.po | 8 +- l10n/lb/files_sharing.po | 12 +-- l10n/lb/files_trashbin.po | 4 +- l10n/lb/files_versions.po | 8 +- l10n/lb/lib.po | 4 +- l10n/lb/settings.po | 24 ++--- l10n/lb/user_ldap.po | 120 ++++++++++----------- l10n/lb/user_webdavauth.po | 6 +- l10n/lt_LT/core.po | 62 +++++------ l10n/lt_LT/files.po | 4 +- l10n/lt_LT/files_encryption.po | 4 +- l10n/lt_LT/files_external.po | 10 +- l10n/lt_LT/files_sharing.po | 16 +-- l10n/lt_LT/files_trashbin.po | 4 +- l10n/lt_LT/files_versions.po | 6 +- l10n/lt_LT/lib.po | 4 +- l10n/lt_LT/settings.po | 24 ++--- l10n/lt_LT/user_ldap.po | 120 ++++++++++----------- l10n/lt_LT/user_webdavauth.po | 6 +- l10n/lv/core.po | 62 +++++------ l10n/lv/files.po | 4 +- l10n/lv/files_encryption.po | 4 +- l10n/lv/files_external.po | 10 +- l10n/lv/files_sharing.po | 12 +-- l10n/lv/files_trashbin.po | 4 +- l10n/lv/files_versions.po | 10 +- l10n/lv/lib.po | 6 +- l10n/lv/settings.po | 24 ++--- l10n/lv/user_ldap.po | 6 +- l10n/lv/user_webdavauth.po | 6 +- l10n/mk/core.po | 62 +++++------ l10n/mk/files.po | 4 +- l10n/mk/files_encryption.po | 4 +- l10n/mk/files_external.po | 8 +- l10n/mk/files_sharing.po | 16 +-- l10n/mk/files_trashbin.po | 4 +- l10n/mk/files_versions.po | 8 +- l10n/mk/lib.po | 4 +- l10n/mk/settings.po | 24 ++--- l10n/mk/user_ldap.po | 4 +- l10n/mk/user_webdavauth.po | 6 +- l10n/ms_MY/core.po | 62 +++++------ l10n/ms_MY/files.po | 4 +- l10n/ms_MY/files_encryption.po | 4 +- l10n/ms_MY/files_external.po | 8 +- l10n/ms_MY/files_sharing.po | 16 +-- l10n/ms_MY/files_trashbin.po | 4 +- l10n/ms_MY/files_versions.po | 8 +- l10n/ms_MY/lib.po | 4 +- l10n/ms_MY/settings.po | 24 ++--- l10n/ms_MY/user_ldap.po | 120 ++++++++++----------- l10n/ms_MY/user_webdavauth.po | 6 +- l10n/my_MM/core.po | 100 +++++++++--------- l10n/my_MM/files.po | 4 +- l10n/my_MM/files_encryption.po | 6 +- l10n/my_MM/files_external.po | 8 +- l10n/my_MM/files_sharing.po | 12 +-- l10n/my_MM/files_trashbin.po | 4 +- l10n/my_MM/files_versions.po | 8 +- l10n/my_MM/lib.po | 4 +- l10n/my_MM/settings.po | 32 +++--- l10n/my_MM/user_ldap.po | 120 ++++++++++----------- l10n/my_MM/user_webdavauth.po | 6 +- l10n/nb_NO/core.po | 62 +++++------ l10n/nb_NO/files.po | 4 +- l10n/nb_NO/files_encryption.po | 6 +- l10n/nb_NO/files_external.po | 10 +- l10n/nb_NO/files_sharing.po | 16 +-- l10n/nb_NO/files_trashbin.po | 4 +- l10n/nb_NO/files_versions.po | 8 +- l10n/nb_NO/lib.po | 4 +- l10n/nb_NO/settings.po | 24 ++--- l10n/nb_NO/user_ldap.po | 6 +- l10n/nb_NO/user_webdavauth.po | 6 +- l10n/ne/core.po | 94 +++++++++-------- l10n/ne/files.po | 4 +- l10n/ne/files_encryption.po | 6 +- l10n/ne/files_external.po | 10 +- l10n/ne/files_sharing.po | 12 +-- l10n/ne/files_trashbin.po | 4 +- l10n/ne/files_versions.po | 6 +- l10n/ne/lib.po | 44 ++++---- l10n/ne/settings.po | 32 +++--- l10n/ne/user_ldap.po | 6 +- l10n/ne/user_webdavauth.po | 6 +- l10n/nl/core.po | 64 ++++++------ l10n/nl/files.po | 6 +- l10n/nl/files_encryption.po | 4 +- l10n/nl/files_external.po | 10 +- l10n/nl/files_sharing.po | 16 +-- l10n/nl/files_trashbin.po | 4 +- l10n/nl/files_versions.po | 6 +- l10n/nl/lib.po | 6 +- l10n/nl/settings.po | 24 ++--- l10n/nl/user_ldap.po | 6 +- l10n/nl/user_webdavauth.po | 8 +- l10n/nn_NO/core.po | 56 +++++----- l10n/nn_NO/files.po | 4 +- l10n/nn_NO/files_encryption.po | 4 +- l10n/nn_NO/files_external.po | 8 +- l10n/nn_NO/files_sharing.po | 16 +-- l10n/nn_NO/files_trashbin.po | 4 +- l10n/nn_NO/files_versions.po | 8 +- l10n/nn_NO/lib.po | 4 +- l10n/nn_NO/settings.po | 24 ++--- l10n/nn_NO/user_ldap.po | 120 ++++++++++----------- l10n/nn_NO/user_webdavauth.po | 6 +- l10n/oc/core.po | 62 +++++------ l10n/oc/files.po | 4 +- l10n/oc/files_encryption.po | 4 +- l10n/oc/files_external.po | 8 +- l10n/oc/files_sharing.po | 16 +-- l10n/oc/files_trashbin.po | 4 +- l10n/oc/files_versions.po | 8 +- l10n/oc/lib.po | 4 +- l10n/oc/settings.po | 24 ++--- l10n/oc/user_ldap.po | 120 ++++++++++----------- l10n/oc/user_webdavauth.po | 6 +- l10n/pl/core.po | 64 ++++++------ l10n/pl/files.po | 6 +- l10n/pl/files_encryption.po | 6 +- l10n/pl/files_external.po | 10 +- l10n/pl/files_sharing.po | 12 +-- l10n/pl/files_trashbin.po | 4 +- l10n/pl/files_versions.po | 6 +- l10n/pl/lib.po | 6 +- l10n/pl/settings.po | 24 ++--- l10n/pl/user_ldap.po | 6 +- l10n/pl/user_webdavauth.po | 8 +- l10n/pl_PL/core.po | 62 +++++------ l10n/pl_PL/files.po | 4 +- l10n/pl_PL/files_encryption.po | 4 +- l10n/pl_PL/files_external.po | 8 +- l10n/pl_PL/files_sharing.po | 16 +-- l10n/pl_PL/files_trashbin.po | 4 +- l10n/pl_PL/files_versions.po | 8 +- l10n/pl_PL/lib.po | 4 +- l10n/pl_PL/settings.po | 32 +++--- l10n/pl_PL/user_ldap.po | 120 ++++++++++----------- l10n/pl_PL/user_webdavauth.po | 6 +- l10n/pt_BR/core.po | 64 ++++++------ l10n/pt_BR/files.po | 6 +- l10n/pt_BR/files_encryption.po | 6 +- l10n/pt_BR/files_external.po | 10 +- l10n/pt_BR/files_sharing.po | 16 +-- l10n/pt_BR/files_trashbin.po | 4 +- l10n/pt_BR/files_versions.po | 6 +- l10n/pt_BR/lib.po | 6 +- l10n/pt_BR/settings.po | 24 ++--- l10n/pt_BR/user_ldap.po | 6 +- l10n/pt_BR/user_webdavauth.po | 8 +- l10n/pt_PT/core.po | 64 ++++++------ l10n/pt_PT/files.po | 6 +- l10n/pt_PT/files_encryption.po | 6 +- l10n/pt_PT/files_external.po | 10 +- l10n/pt_PT/files_sharing.po | 21 ++-- l10n/pt_PT/files_trashbin.po | 9 +- l10n/pt_PT/files_versions.po | 6 +- l10n/pt_PT/lib.po | 6 +- l10n/pt_PT/settings.po | 24 ++--- l10n/pt_PT/user_ldap.po | 6 +- l10n/pt_PT/user_webdavauth.po | 8 +- l10n/ro/core.po | 62 +++++------ l10n/ro/files.po | 4 +- l10n/ro/files_encryption.po | 4 +- l10n/ro/files_external.po | 8 +- l10n/ro/files_sharing.po | 16 +-- l10n/ro/files_trashbin.po | 4 +- l10n/ro/files_versions.po | 8 +- l10n/ro/lib.po | 4 +- l10n/ro/settings.po | 24 ++--- l10n/ro/user_ldap.po | 4 +- l10n/ro/user_webdavauth.po | 8 +- l10n/ru/core.po | 64 ++++++------ l10n/ru/files.po | 4 +- l10n/ru/files_encryption.po | 4 +- l10n/ru/files_external.po | 10 +- l10n/ru/files_sharing.po | 16 +-- l10n/ru/files_trashbin.po | 4 +- l10n/ru/files_versions.po | 6 +- l10n/ru/lib.po | 6 +- l10n/ru/settings.po | 24 ++--- l10n/ru/user_ldap.po | 6 +- l10n/ru/user_webdavauth.po | 6 +- l10n/ru_RU/core.po | 62 +++++------ l10n/ru_RU/files.po | 4 +- l10n/ru_RU/files_encryption.po | 4 +- l10n/ru_RU/files_external.po | 8 +- l10n/ru_RU/files_sharing.po | 16 +-- l10n/ru_RU/files_trashbin.po | 4 +- l10n/ru_RU/files_versions.po | 8 +- l10n/ru_RU/lib.po | 4 +- l10n/ru_RU/settings.po | 24 ++--- l10n/ru_RU/user_ldap.po | 4 +- l10n/ru_RU/user_webdavauth.po | 8 +- l10n/si_LK/core.po | 62 +++++------ l10n/si_LK/files.po | 4 +- l10n/si_LK/files_encryption.po | 4 +- l10n/si_LK/files_external.po | 8 +- l10n/si_LK/files_sharing.po | 16 +-- l10n/si_LK/files_trashbin.po | 4 +- l10n/si_LK/files_versions.po | 8 +- l10n/si_LK/lib.po | 4 +- l10n/si_LK/settings.po | 24 ++--- l10n/si_LK/user_ldap.po | 4 +- l10n/si_LK/user_webdavauth.po | 6 +- l10n/sk/core.po | 94 +++++++++-------- l10n/sk/files.po | 4 +- l10n/sk/files_encryption.po | 4 +- l10n/sk/files_external.po | 8 +- l10n/sk/files_sharing.po | 16 +-- l10n/sk/files_trashbin.po | 4 +- l10n/sk/files_versions.po | 8 +- l10n/sk/lib.po | 50 ++++----- l10n/sk/settings.po | 32 +++--- l10n/sk/user_ldap.po | 120 ++++++++++----------- l10n/sk/user_webdavauth.po | 6 +- l10n/sk_SK/core.po | 64 ++++++------ l10n/sk_SK/files.po | 6 +- l10n/sk_SK/files_encryption.po | 6 +- l10n/sk_SK/files_external.po | 10 +- l10n/sk_SK/files_sharing.po | 16 +-- l10n/sk_SK/files_trashbin.po | 4 +- l10n/sk_SK/files_versions.po | 10 +- l10n/sk_SK/lib.po | 6 +- l10n/sk_SK/settings.po | 24 ++--- l10n/sk_SK/user_ldap.po | 6 +- l10n/sk_SK/user_webdavauth.po | 8 +- l10n/sl/core.po | 64 ++++++------ l10n/sl/files.po | 6 +- l10n/sl/files_encryption.po | 6 +- l10n/sl/files_external.po | 10 +- l10n/sl/files_sharing.po | 6 +- l10n/sl/files_trashbin.po | 4 +- l10n/sl/files_versions.po | 6 +- l10n/sl/lib.po | 6 +- l10n/sl/settings.po | 26 ++--- l10n/sl/user_ldap.po | 6 +- l10n/sl/user_webdavauth.po | 6 +- l10n/sq/core.po | 64 ++++++------ l10n/sq/files.po | 6 +- l10n/sq/files_encryption.po | 6 +- l10n/sq/files_external.po | 6 +- l10n/sq/files_sharing.po | 6 +- l10n/sq/files_trashbin.po | 6 +- l10n/sq/files_versions.po | 6 +- l10n/sq/lib.po | 6 +- l10n/sq/settings.po | 6 +- l10n/sq/user_ldap.po | 6 +- l10n/sq/user_webdavauth.po | 6 +- l10n/sr/core.po | 62 +++++------ l10n/sr/files.po | 4 +- l10n/sr/files_encryption.po | 4 +- l10n/sr/files_external.po | 8 +- l10n/sr/files_sharing.po | 14 +-- l10n/sr/files_trashbin.po | 4 +- l10n/sr/files_versions.po | 8 +- l10n/sr/lib.po | 4 +- l10n/sr/settings.po | 24 ++--- l10n/sr/user_ldap.po | 4 +- l10n/sr/user_webdavauth.po | 8 +- l10n/sr@latin/core.po | 62 +++++------ l10n/sr@latin/files.po | 4 +- l10n/sr@latin/files_encryption.po | 4 +- l10n/sr@latin/files_external.po | 8 +- l10n/sr@latin/files_sharing.po | 16 +-- l10n/sr@latin/files_trashbin.po | 4 +- l10n/sr@latin/files_versions.po | 8 +- l10n/sr@latin/lib.po | 4 +- l10n/sr@latin/settings.po | 32 +++--- l10n/sr@latin/user_ldap.po | 120 ++++++++++----------- l10n/sr@latin/user_webdavauth.po | 6 +- l10n/sv/core.po | 64 ++++++------ l10n/sv/files.po | 4 +- l10n/sv/files_encryption.po | 4 +- l10n/sv/files_external.po | 10 +- l10n/sv/files_sharing.po | 16 +-- l10n/sv/files_trashbin.po | 4 +- l10n/sv/files_versions.po | 6 +- l10n/sv/lib.po | 4 +- l10n/sv/settings.po | 26 ++--- l10n/sv/user_ldap.po | 6 +- l10n/sv/user_webdavauth.po | 8 +- l10n/sw_KE/core.po | 94 +++++++++-------- l10n/sw_KE/files.po | 4 +- l10n/sw_KE/files_encryption.po | 4 +- l10n/sw_KE/files_external.po | 8 +- l10n/sw_KE/files_sharing.po | 16 +-- l10n/sw_KE/files_trashbin.po | 4 +- l10n/sw_KE/files_versions.po | 8 +- l10n/sw_KE/lib.po | 50 ++++----- l10n/sw_KE/settings.po | 32 +++--- l10n/sw_KE/user_ldap.po | 120 ++++++++++----------- l10n/sw_KE/user_webdavauth.po | 6 +- l10n/ta_LK/core.po | 62 +++++------ l10n/ta_LK/files.po | 4 +- l10n/ta_LK/files_encryption.po | 4 +- l10n/ta_LK/files_external.po | 8 +- l10n/ta_LK/files_sharing.po | 16 +-- l10n/ta_LK/files_trashbin.po | 4 +- l10n/ta_LK/files_versions.po | 8 +- l10n/ta_LK/lib.po | 4 +- l10n/ta_LK/settings.po | 24 ++--- l10n/ta_LK/user_ldap.po | 4 +- l10n/ta_LK/user_webdavauth.po | 6 +- l10n/te/core.po | 64 ++++++------ l10n/te/files.po | 4 +- l10n/te/files_encryption.po | 6 +- l10n/te/files_external.po | 10 +- l10n/te/files_sharing.po | 6 +- l10n/te/files_trashbin.po | 4 +- l10n/te/files_versions.po | 6 +- l10n/te/lib.po | 6 +- l10n/te/settings.po | 24 ++--- l10n/te/user_ldap.po | 6 +- l10n/te/user_webdavauth.po | 6 +- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/core.po | 62 +++++------ l10n/th_TH/files.po | 4 +- l10n/th_TH/files_encryption.po | 4 +- l10n/th_TH/files_external.po | 8 +- l10n/th_TH/files_sharing.po | 16 +-- l10n/th_TH/files_trashbin.po | 4 +- l10n/th_TH/files_versions.po | 8 +- l10n/th_TH/lib.po | 4 +- l10n/th_TH/settings.po | 24 ++--- l10n/th_TH/user_ldap.po | 4 +- l10n/th_TH/user_webdavauth.po | 8 +- l10n/tr/core.po | 64 ++++++------ l10n/tr/files.po | 6 +- l10n/tr/files_encryption.po | 8 +- l10n/tr/files_external.po | 10 +- l10n/tr/files_sharing.po | 18 ++-- l10n/tr/files_trashbin.po | 4 +- l10n/tr/files_versions.po | 6 +- l10n/tr/lib.po | 4 +- l10n/tr/settings.po | 26 ++--- l10n/tr/user_ldap.po | 4 +- l10n/tr/user_webdavauth.po | 8 +- l10n/uk/core.po | 66 ++++++------ l10n/uk/files.po | 6 +- l10n/uk/files_encryption.po | 6 +- l10n/uk/files_external.po | 10 +- l10n/uk/files_sharing.po | 16 +-- l10n/uk/files_trashbin.po | 4 +- l10n/uk/files_versions.po | 6 +- l10n/uk/lib.po | 6 +- l10n/uk/settings.po | 24 ++--- l10n/uk/user_ldap.po | 6 +- l10n/uk/user_webdavauth.po | 6 +- l10n/ur_PK/core.po | 62 +++++------ l10n/ur_PK/files.po | 4 +- l10n/ur_PK/files_encryption.po | 6 +- l10n/ur_PK/files_external.po | 8 +- l10n/ur_PK/files_sharing.po | 12 +-- l10n/ur_PK/files_trashbin.po | 4 +- l10n/ur_PK/files_versions.po | 8 +- l10n/ur_PK/lib.po | 4 +- l10n/ur_PK/settings.po | 24 ++--- l10n/ur_PK/user_ldap.po | 120 ++++++++++----------- l10n/ur_PK/user_webdavauth.po | 6 +- l10n/vi/core.po | 62 +++++------ l10n/vi/files.po | 4 +- l10n/vi/files_encryption.po | 4 +- l10n/vi/files_external.po | 8 +- l10n/vi/files_sharing.po | 16 +-- l10n/vi/files_trashbin.po | 4 +- l10n/vi/files_versions.po | 8 +- l10n/vi/lib.po | 4 +- l10n/vi/settings.po | 24 ++--- l10n/vi/user_ldap.po | 4 +- l10n/vi/user_webdavauth.po | 6 +- l10n/zh_CN.GB2312/core.po | 64 ++++++------ l10n/zh_CN.GB2312/files.po | 4 +- l10n/zh_CN.GB2312/files_encryption.po | 4 +- l10n/zh_CN.GB2312/files_external.po | 6 +- l10n/zh_CN.GB2312/files_sharing.po | 16 +-- l10n/zh_CN.GB2312/files_trashbin.po | 4 +- l10n/zh_CN.GB2312/files_versions.po | 6 +- l10n/zh_CN.GB2312/lib.po | 4 +- l10n/zh_CN.GB2312/settings.po | 26 ++--- l10n/zh_CN.GB2312/user_ldap.po | 4 +- l10n/zh_CN.GB2312/user_webdavauth.po | 6 +- l10n/zh_CN/core.po | 64 ++++++------ l10n/zh_CN/files.po | 4 +- l10n/zh_CN/files_encryption.po | 6 +- l10n/zh_CN/files_external.po | 10 +- l10n/zh_CN/files_sharing.po | 16 +-- l10n/zh_CN/files_trashbin.po | 4 +- l10n/zh_CN/files_versions.po | 6 +- l10n/zh_CN/lib.po | 6 +- l10n/zh_CN/settings.po | 24 ++--- l10n/zh_CN/user_ldap.po | 6 +- l10n/zh_CN/user_webdavauth.po | 8 +- l10n/zh_HK/core.po | 62 +++++------ l10n/zh_HK/files.po | 4 +- l10n/zh_HK/files_encryption.po | 6 +- l10n/zh_HK/files_external.po | 8 +- l10n/zh_HK/files_sharing.po | 12 +-- l10n/zh_HK/files_trashbin.po | 4 +- l10n/zh_HK/files_versions.po | 6 +- l10n/zh_HK/lib.po | 4 +- l10n/zh_HK/settings.po | 24 ++--- l10n/zh_HK/user_ldap.po | 4 +- l10n/zh_HK/user_webdavauth.po | 6 +- l10n/zh_TW/core.po | 6 +- l10n/zh_TW/files.po | 6 +- l10n/zh_TW/files_encryption.po | 6 +- l10n/zh_TW/files_external.po | 10 +- l10n/zh_TW/files_sharing.po | 6 +- l10n/zh_TW/files_trashbin.po | 4 +- l10n/zh_TW/files_versions.po | 6 +- l10n/zh_TW/lib.po | 6 +- l10n/zh_TW/settings.po | 6 +- l10n/zh_TW/user_ldap.po | 4 +- l10n/zh_TW/user_webdavauth.po | 6 +- lib/l10n/ja_JP.php | 2 +- settings/l10n/ja_JP.php | 6 +- 872 files changed, 7070 insertions(+), 6967 deletions(-) diff --git a/apps/files/l10n/ja_JP.php b/apps/files/l10n/ja_JP.php index 28453618d9..402a9f33b3 100644 --- a/apps/files/l10n/ja_JP.php +++ b/apps/files/l10n/ja_JP.php @@ -55,7 +55,7 @@ "0 is unlimited" => "0を指定した場合は無制限", "Maximum input size for ZIP files" => "ZIPファイルへの最大入力サイズ", "Save" => "保存", -"New" => "新規", +"New" => "新規作成", "Text file" => "テキストファイル", "Folder" => "フォルダ", "From link" => "リンク", diff --git a/apps/files/l10n/pt_PT.php b/apps/files/l10n/pt_PT.php index 2ad4099083..c06108cf2b 100644 --- a/apps/files/l10n/pt_PT.php +++ b/apps/files/l10n/pt_PT.php @@ -25,6 +25,7 @@ "undo" => "desfazer", "perform delete operation" => "Executar a tarefa de apagar", "1 file uploading" => "A enviar 1 ficheiro", +"files uploading" => "A enviar os ficheiros", "'.' is an invalid file name." => "'.' não é um nome de ficheiro válido!", "File name cannot be empty." => "O nome do ficheiro não pode estar vazio.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nome Inválido, os caracteres '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' não são permitidos.", diff --git a/apps/files/l10n/uk.php b/apps/files/l10n/uk.php index 3c8eef9f36..65b4ec1433 100644 --- a/apps/files/l10n/uk.php +++ b/apps/files/l10n/uk.php @@ -25,6 +25,7 @@ "undo" => "відмінити", "perform delete operation" => "виконати операцію видалення", "1 file uploading" => "1 файл завантажується", +"files uploading" => "файли завантажуються", "'.' is an invalid file name." => "'.' це невірне ім'я файлу.", "File name cannot be empty." => " Ім'я файлу не може бути порожнім.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Невірне ім'я, '\\', '/', '<', '>', ':', '\"', '|', '?' та '*' не дозволені.", diff --git a/apps/files_sharing/l10n/pt_PT.php b/apps/files_sharing/l10n/pt_PT.php index b8e700e380..43e8f3c4b6 100644 --- a/apps/files_sharing/l10n/pt_PT.php +++ b/apps/files_sharing/l10n/pt_PT.php @@ -1,9 +1,9 @@ "Palavra-Passe", +"Password" => "Password", "Submit" => "Submeter", "%s shared the folder %s with you" => "%s partilhou a pasta %s consigo", "%s shared the file %s with you" => "%s partilhou o ficheiro %s consigo", -"Download" => "Descarregar", +"Download" => "Transferir", "No preview available for" => "Não há pré-visualização para", "web services under your control" => "serviços web sob o seu controlo" ); diff --git a/apps/files_trashbin/l10n/pt_PT.php b/apps/files_trashbin/l10n/pt_PT.php index 84a07fb0d0..7dfe610466 100644 --- a/apps/files_trashbin/l10n/pt_PT.php +++ b/apps/files_trashbin/l10n/pt_PT.php @@ -1,7 +1,7 @@ "Não foi possível eliminar %s de forma permanente", "Couldn't restore %s" => "Não foi possível restaurar %s", -"perform restore operation" => "Restaurar", +"perform restore operation" => "executar a operação de restauro", "Error" => "Erro", "delete file permanently" => "Eliminar permanentemente o(s) ficheiro(s)", "Delete permanently" => "Eliminar permanentemente", @@ -11,7 +11,7 @@ "{count} folders" => "{count} pastas", "1 file" => "1 ficheiro", "{count} files" => "{count} ficheiros", -"Nothing in here. Your trash bin is empty!" => "Não ha ficheiros. O lixo está vazio", +"Nothing in here. Your trash bin is empty!" => "Não hà ficheiros. O lixo está vazio!", "Restore" => "Restaurar", "Delete" => "Apagar", "Deleted Files" => "Ficheiros Apagados" diff --git a/apps/user_ldap/l10n/fr.php b/apps/user_ldap/l10n/fr.php index 990658e147..ea07bd4a11 100644 --- a/apps/user_ldap/l10n/fr.php +++ b/apps/user_ldap/l10n/fr.php @@ -1,6 +1,6 @@ "Échec de la suppression de la configuration du serveur", -"The configuration is valid and the connection could be established!" => "La configuration est valide est la connexion peut être établie !", +"The configuration is valid and the connection could be established!" => "La configuration est valide et la connexion peut être établie !", "The configuration is valid, but the Bind failed. Please check the server settings and credentials." => "La configuration est valide, mais le lien ne peut être établi. Veuillez vérifier les paramètres du serveur ainsi que vos identifiants de connexion.", "The configuration is invalid. Please look in the ownCloud log for further details." => "La configuration est invalide. Veuillez vous référer aux fichiers de journaux ownCloud pour plus d'information.", "Deletion failed" => "La suppression a échoué", diff --git a/apps/user_ldap/l10n/ka_GE.php b/apps/user_ldap/l10n/ka_GE.php index 0385103f9b..b3f6058a0c 100644 --- a/apps/user_ldap/l10n/ka_GE.php +++ b/apps/user_ldap/l10n/ka_GE.php @@ -1,6 +1,75 @@ "წაშლის ველი", +"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." => "კონფიგურაცია მართებულია, მაგრამ მიერთება ვერ მოხერხდა. გთხოვთ შეამოწმოთ სერვერის პარამეტრები და აუთენთიკაციის პარამეტრები.", +"The configuration is invalid. Please look in the ownCloud log for further details." => "კონფიგურაცია არ არის მართებული. გთხოვთ ჩაიხედოთ დეტალური ინფორმაციისთვის ownCloud –ის ლოგში.", +"Deletion failed" => "წაშლა ვერ განხორციელდა", +"Take over settings from recent server configuration?" => "დაბრუნდებით სერვერის წინა კონფიგურაციაში?", +"Keep settings?" => "დავტოვოთ პარამეტრები?", +"Cannot add server configuration" => "სერვერის პარამეტრების დამატება ვერ მოხერხდა", +"Connection test succeeded" => "კავშირის ტესტირება მოხერხდა", +"Connection test failed" => "კავშირის ტესტირება ვერ მოხერხდა", +"Do you really want to delete the current Server Configuration?" => "ნამდვილად გინდათ წაშალოთ სერვერის მიმდინარე პარამეტრები?", +"Confirm Deletion" => "წაშლის დადასტურება", +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "გაფრთხილება: აპლიკაციის user_ldap და user_webdavauth არათავსებადია. თქვენ შეიძლება შეეჩეხოთ მოულოდნელ შშედეგებს. თხოვეთ თქვენს ადმინისტრატორს ჩათიშოს ერთერთი.", +"Warning: The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." => "გაფრთხილება: PHP LDAP მოდული არ არის ინსტალირებული, ბექენდი არ იმუშავებს. თხოვეთ თქვენს ადმინისტრატორს დააინსტალიროს ის.", +"Server configuration" => "სერვერის პარამეტრები", +"Add Server Configuration" => "სერვერის პარამეტრების დამატება", "Host" => "ჰოსტი", +"You can omit the protocol, except you require SSL. Then start with ldaps://" => "თქვენ შეგიძლიათ გამოტოვოთ პროტოკოლი. გარდა ამისა გჭირდებათ SSL. შემდეგ დაიწყეთ ldaps://", +"Base DN" => "საწყისი DN", +"One Base DN per line" => "ერთი საწყისი DN ერთ ხაზზე", +"You can specify Base DN for users and groups in the Advanced tab" => "თქვენ შეგიძლიათ მიუთითოთ საწყისი DN მომხმარებლებისთვის და ჯგუფებისთვის Advanced ტაბში", +"User DN" => "მომხმარებლის 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–ის და პაროლის ველები ცარიელი.", +"User Login Filter" => "მომხმარებლის ფილტრი", +"Defines the filter to apply, when login is attempted. %%uid replaces the username in the login action." => "როცა შემოსვლა განხორციელდება ასეიძლება მოვახდინოთ გაფილტვრა. %%uid შეიცვლება იუზერნეიმით მომხმარებლის ველში.", +"use %%uid placeholder, e.g. \"uid=%%uid\"" => "გამოიყენეთ %%uid დამასრულებელი მაგ: \"uid=%%uid\"", +"User List Filter" => "მომხმარებლებიის სიის ფილტრი", +"Defines the filter to apply, when retrieving users." => "გაფილტვრა განხორციელდება, როცა მომხმარებლების სია ჩამოიტვირთება.", +"without any placeholder, e.g. \"objectClass=person\"." => "ყოველგვარი დამასრულებელის გარეშე, მაგ: \"objectClass=person\".", +"Group Filter" => "ჯგუფის ფილტრი", +"Defines the filter to apply, when retrieving groups." => "გაფილტვრა განხორციელდება, როცა ჯგუფის სია ჩამოიტვირთება.", +"without any placeholder, e.g. \"objectClass=posixGroup\"." => "ყოველგვარი დამასრულებელის გარეშე, მაგ: \"objectClass=posixGroup\".", +"Connection Settings" => "კავშირის პარამეტრები", +"Configuration Active" => "კონფიგურაცია აქტიურია", +"When unchecked, this configuration will be skipped." => "როცა გადანიშნულია, ეს კონფიგურაცია გამოტოვებული იქნება.", "Port" => "პორტი", +"Backup (Replica) Host" => "ბექაფ (რეპლიკა) ჰოსტი", +"Give an optional backup host. It must be a replica of the main LDAP/AD server." => "მიუთითეთ რაიმე ბექაფ ჰოსტი. ის უნდა იყოს ძირითადი LDAP/AD სერვერის რეპლიკა.", +"Backup (Replica) Port" => "ბექაფ (რეპლიკა) პორტი", +"Disable Main Server" => "გამორთეთ ძირითადი სერვერი", +"When switched on, ownCloud will only connect to the replica server." => "როცა მონიშნულია, ownCloud დაუკავშირდება მხოლოდ რეპლიკა სერვერს.", +"Use TLS" => "გამოიყენეთ TLS", +"Do not use it additionally for LDAPS connections, it will fail." => "არ გამოიყენოთ დამატებით LDAPS კავშირი. ის წარუმატებლად დასრულდება.", +"Case insensitve LDAP server (Windows)" => "LDAP server (Windows)", +"Turn off SSL certificate validation." => "გამორთეთ SSL სერთიფიკატის ვალიდაცია.", +"If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "იმ შემთხვევაში თუ მუშაობს მხოლოდ ეს ოფცია, დააიმპორტეთ LDAP სერვერის SSL სერთიფიკატი თქვენს ownCloud სერვერზე.", +"Not recommended, use for testing only." => "არ არის რეკომენდირებული, გამოიყენეთ მხოლოდ სატესტოდ.", +"Cache Time-To-Live" => "ქეშის სიცოცხლის ხანგრძლივობა", +"in seconds. A change empties the cache." => "წამებში. ცვლილება ასუფთავებს ქეშს.", +"Directory Settings" => "დირექტორიის პარამეტრები", +"User Display Name Field" => "მომხმარებლის დისფლეის სახელის ფილდი", +"The LDAP attribute to use to generate the user`s ownCloud name." => "LDAP ატრიბუტი მომხმარებლის ownCloud სახელის გენერაციისთვის.", +"Base User Tree" => "ძირითად მომხმარებელთა სია", +"One User Base DN per line" => "ერთი მომხმარებლის საწყისი DN ერთ ხაზზე", +"User Search Attributes" => "მომხმარებლის ძებნის ატრიბუტი", +"Optional; one attribute per line" => "ოფციონალური; თითო ატრიბუტი თითო ხაზზე", +"Group Display Name Field" => "ჯგუფის დისფლეის სახელის ფილდი", +"The LDAP attribute to use to generate the groups`s ownCloud name." => "LDAP ატრიბუტი ჯგუფის ownCloud სახელის გენერაციისთვის.", +"Base Group Tree" => "ძირითად ჯგუფთა სია", +"One Group Base DN per line" => "ერთი ჯგუფის საწყისი DN ერთ ხაზზე", +"Group Search Attributes" => "ჯგუფური ძებნის ატრიბუტი", +"Group-Member association" => "ჯგუფის წევრობის ასოციაცია", +"Special Attributes" => "სპეციალური ატრიბუტები", +"Quota Field" => "ქვოტას ველი", +"Quota Default" => "საწყისი ქვოტა", +"in bytes" => "ბაიტებში", +"Email Field" => "იმეილის ველი", +"User Home Folder Naming Rule" => "მომხმარებლის Home დირექტორიის სახელების დარქმევის წესი", +"Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "დატოვეთ ცარიელი მომხმარებლის სახელი (default). სხვა დანარჩენში მიუთითეთ LDAP/AD ატრიბუტი.", +"Test Configuration" => "კავშირის ტესტირება", "Help" => "დახმარება" ); diff --git a/core/l10n/ar.php b/core/l10n/ar.php index f75d807170..4d413715de 100644 --- a/core/l10n/ar.php +++ b/core/l10n/ar.php @@ -44,11 +44,11 @@ "months ago" => "شهر مضى", "last year" => "السنةالماضية", "years ago" => "سنة مضت", -"Choose" => "اختيار", -"Cancel" => "الغاء", -"No" => "لا", -"Yes" => "نعم", "Ok" => "موافق", +"Cancel" => "الغاء", +"Choose" => "اختيار", +"Yes" => "نعم", +"No" => "لا", "The object type is not specified." => "نوع العنصر غير محدد.", "Error" => "خطأ", "The app name is not specified." => "اسم التطبيق غير محدد.", diff --git a/core/l10n/bn_BD.php b/core/l10n/bn_BD.php index 686ebdf9af..1b18b6ae3e 100644 --- a/core/l10n/bn_BD.php +++ b/core/l10n/bn_BD.php @@ -43,11 +43,11 @@ "months ago" => "মাস পূর্বে", "last year" => "গত বছর", "years ago" => "বছর পূর্বে", -"Choose" => "বেছে নিন", -"Cancel" => "বাতির", -"No" => "না", -"Yes" => "হ্যাঁ", "Ok" => "তথাস্তু", +"Cancel" => "বাতির", +"Choose" => "বেছে নিন", +"Yes" => "হ্যাঁ", +"No" => "না", "The object type is not specified." => "অবজেক্টের ধরণটি সুনির্দিষ্ট নয়।", "Error" => "সমস্যা", "The app name is not specified." => "অ্যাপের নামটি সুনির্দিষ্ট নয়।", diff --git a/core/l10n/ca.php b/core/l10n/ca.php index acf617034f..91b51d1b31 100644 --- a/core/l10n/ca.php +++ b/core/l10n/ca.php @@ -44,11 +44,11 @@ "months ago" => "mesos enrere", "last year" => "l'any passat", "years ago" => "anys enrere", -"Choose" => "Escull", -"Cancel" => "Cancel·la", -"No" => "No", -"Yes" => "Sí", "Ok" => "D'acord", +"Cancel" => "Cancel·la", +"Choose" => "Escull", +"Yes" => "Sí", +"No" => "No", "The object type is not specified." => "No s'ha especificat el tipus d'objecte.", "Error" => "Error", "The app name is not specified." => "No s'ha especificat el nom de l'aplicació.", diff --git a/core/l10n/cs_CZ.php b/core/l10n/cs_CZ.php index eb70ac3e09..15c89106e5 100644 --- a/core/l10n/cs_CZ.php +++ b/core/l10n/cs_CZ.php @@ -44,11 +44,11 @@ "months ago" => "před měsíci", "last year" => "minulý rok", "years ago" => "před lety", -"Choose" => "Vybrat", -"Cancel" => "Zrušit", -"No" => "Ne", -"Yes" => "Ano", "Ok" => "Ok", +"Cancel" => "Zrušit", +"Choose" => "Vybrat", +"Yes" => "Ano", +"No" => "Ne", "The object type is not specified." => "Není určen typ objektu.", "Error" => "Chyba", "The app name is not specified." => "Není určen název aplikace.", diff --git a/core/l10n/da.php b/core/l10n/da.php index 6650a7e1d8..286f524b67 100644 --- a/core/l10n/da.php +++ b/core/l10n/da.php @@ -44,11 +44,11 @@ "months ago" => "måneder siden", "last year" => "sidste år", "years ago" => "år siden", -"Choose" => "Vælg", -"Cancel" => "Fortryd", -"No" => "Nej", -"Yes" => "Ja", "Ok" => "OK", +"Cancel" => "Fortryd", +"Choose" => "Vælg", +"Yes" => "Ja", +"No" => "Nej", "The object type is not specified." => "Objekttypen er ikke angivet.", "Error" => "Fejl", "The app name is not specified." => "Den app navn er ikke angivet.", diff --git a/core/l10n/de.php b/core/l10n/de.php index 3b9ac15f4e..3af653b9ac 100644 --- a/core/l10n/de.php +++ b/core/l10n/de.php @@ -44,11 +44,11 @@ "months ago" => "Vor Monaten", "last year" => "Letztes Jahr", "years ago" => "Vor Jahren", -"Choose" => "Auswählen", -"Cancel" => "Abbrechen", -"No" => "Nein", -"Yes" => "Ja", "Ok" => "OK", +"Cancel" => "Abbrechen", +"Choose" => "Auswählen", +"Yes" => "Ja", +"No" => "Nein", "The object type is not specified." => "Der Objekttyp ist nicht angegeben.", "Error" => "Fehler", "The app name is not specified." => "Der App-Name ist nicht angegeben.", diff --git a/core/l10n/de_DE.php b/core/l10n/de_DE.php index d6a8b1405e..4065f2484f 100644 --- a/core/l10n/de_DE.php +++ b/core/l10n/de_DE.php @@ -44,11 +44,11 @@ "months ago" => "Vor Monaten", "last year" => "Letztes Jahr", "years ago" => "Vor Jahren", -"Choose" => "Auswählen", -"Cancel" => "Abbrechen", -"No" => "Nein", -"Yes" => "Ja", "Ok" => "OK", +"Cancel" => "Abbrechen", +"Choose" => "Auswählen", +"Yes" => "Ja", +"No" => "Nein", "The object type is not specified." => "Der Objekttyp ist nicht angegeben.", "Error" => "Fehler", "The app name is not specified." => "Der App-Name ist nicht angegeben.", diff --git a/core/l10n/eo.php b/core/l10n/eo.php index f2297bd3d9..5c8fe34031 100644 --- a/core/l10n/eo.php +++ b/core/l10n/eo.php @@ -43,11 +43,11 @@ "months ago" => "monatoj antaŭe", "last year" => "lastajare", "years ago" => "jaroj antaŭe", -"Choose" => "Elekti", -"Cancel" => "Nuligi", -"No" => "Ne", -"Yes" => "Jes", "Ok" => "Akcepti", +"Cancel" => "Nuligi", +"Choose" => "Elekti", +"Yes" => "Jes", +"No" => "Ne", "The object type is not specified." => "Ne indikiĝis tipo de la objekto.", "Error" => "Eraro", "The app name is not specified." => "Ne indikiĝis nomo de la aplikaĵo.", diff --git a/core/l10n/es.php b/core/l10n/es.php index e64858c4b1..543563bed1 100644 --- a/core/l10n/es.php +++ b/core/l10n/es.php @@ -44,11 +44,11 @@ "months ago" => "hace meses", "last year" => "año pasado", "years ago" => "hace años", -"Choose" => "Seleccionar", -"Cancel" => "Cancelar", -"No" => "No", -"Yes" => "Sí", "Ok" => "Aceptar", +"Cancel" => "Cancelar", +"Choose" => "Seleccionar", +"Yes" => "Sí", +"No" => "No", "The object type is not specified." => "El tipo de objeto no se ha especificado.", "Error" => "Fallo", "The app name is not specified." => "El nombre de la app no se ha especificado.", diff --git a/core/l10n/es_AR.php b/core/l10n/es_AR.php index f17a6d9baf..748de3ddd1 100644 --- a/core/l10n/es_AR.php +++ b/core/l10n/es_AR.php @@ -44,11 +44,11 @@ "months ago" => "meses atrás", "last year" => "el año pasado", "years ago" => "años atrás", -"Choose" => "Elegir", -"Cancel" => "Cancelar", -"No" => "No", -"Yes" => "Sí", "Ok" => "Aceptar", +"Cancel" => "Cancelar", +"Choose" => "Elegir", +"Yes" => "Sí", +"No" => "No", "The object type is not specified." => "El tipo de objeto no esta especificado. ", "Error" => "Error", "The app name is not specified." => "El nombre de la aplicación no esta especificado.", diff --git a/core/l10n/eu.php b/core/l10n/eu.php index dde2d59cbd..76e38a92d1 100644 --- a/core/l10n/eu.php +++ b/core/l10n/eu.php @@ -44,11 +44,11 @@ "months ago" => "hilabete", "last year" => "joan den urtean", "years ago" => "urte", -"Choose" => "Aukeratu", -"Cancel" => "Ezeztatu", -"No" => "Ez", -"Yes" => "Bai", "Ok" => "Ados", +"Cancel" => "Ezeztatu", +"Choose" => "Aukeratu", +"Yes" => "Bai", +"No" => "Ez", "The object type is not specified." => "Objetu mota ez dago zehaztuta.", "Error" => "Errorea", "The app name is not specified." => "App izena ez dago zehaztuta.", diff --git a/core/l10n/fa.php b/core/l10n/fa.php index 58f201a3fe..e6f5aaac0c 100644 --- a/core/l10n/fa.php +++ b/core/l10n/fa.php @@ -44,11 +44,11 @@ "months ago" => "ماه‌های قبل", "last year" => "سال قبل", "years ago" => "سال‌های قبل", -"Choose" => "انتخاب کردن", -"Cancel" => "منصرف شدن", -"No" => "نه", -"Yes" => "بله", "Ok" => "قبول", +"Cancel" => "منصرف شدن", +"Choose" => "انتخاب کردن", +"Yes" => "بله", +"No" => "نه", "The object type is not specified." => "نوع شی تعیین نشده است.", "Error" => "خطا", "The app name is not specified." => "نام برنامه تعیین نشده است.", diff --git a/core/l10n/fi_FI.php b/core/l10n/fi_FI.php index e9386cad43..ec79d03122 100644 --- a/core/l10n/fi_FI.php +++ b/core/l10n/fi_FI.php @@ -42,11 +42,11 @@ "months ago" => "kuukautta sitten", "last year" => "viime vuonna", "years ago" => "vuotta sitten", -"Choose" => "Valitse", -"Cancel" => "Peru", -"No" => "Ei", -"Yes" => "Kyllä", "Ok" => "Ok", +"Cancel" => "Peru", +"Choose" => "Valitse", +"Yes" => "Kyllä", +"No" => "Ei", "Error" => "Virhe", "The app name is not specified." => "Sovelluksen nimeä ei ole määritelty.", "The required file {file} is not installed!" => "Vaadittua tiedostoa {file} ei ole asennettu!", diff --git a/core/l10n/fr.php b/core/l10n/fr.php index 84c4c0abdf..3b89d69b3b 100644 --- a/core/l10n/fr.php +++ b/core/l10n/fr.php @@ -44,11 +44,11 @@ "months ago" => "il y a plusieurs mois", "last year" => "l'année dernière", "years ago" => "il y a plusieurs années", -"Choose" => "Choisir", -"Cancel" => "Annuler", -"No" => "Non", -"Yes" => "Oui", "Ok" => "Ok", +"Cancel" => "Annuler", +"Choose" => "Choisir", +"Yes" => "Oui", +"No" => "Non", "The object type is not specified." => "Le type d'objet n'est pas spécifié.", "Error" => "Erreur", "The app name is not specified." => "Le nom de l'application n'est pas spécifié.", diff --git a/core/l10n/gl.php b/core/l10n/gl.php index 4e8eb6e4fb..fd237a39c8 100644 --- a/core/l10n/gl.php +++ b/core/l10n/gl.php @@ -44,11 +44,11 @@ "months ago" => "meses atrás", "last year" => "último ano", "years ago" => "anos atrás", -"Choose" => "Escoller", -"Cancel" => "Cancelar", -"No" => "Non", -"Yes" => "Si", "Ok" => "Aceptar", +"Cancel" => "Cancelar", +"Choose" => "Escoller", +"Yes" => "Si", +"No" => "Non", "The object type is not specified." => "Non se especificou o tipo de obxecto.", "Error" => "Erro", "The app name is not specified." => "Non se especificou o nome do aplicativo.", diff --git a/core/l10n/he.php b/core/l10n/he.php index 1db5820bdf..56f273e95d 100644 --- a/core/l10n/he.php +++ b/core/l10n/he.php @@ -44,11 +44,11 @@ "months ago" => "חודשים", "last year" => "שנה שעברה", "years ago" => "שנים", -"Choose" => "בחירה", -"Cancel" => "ביטול", -"No" => "לא", -"Yes" => "כן", "Ok" => "בסדר", +"Cancel" => "ביטול", +"Choose" => "בחירה", +"Yes" => "כן", +"No" => "לא", "The object type is not specified." => "סוג הפריט לא צוין.", "Error" => "שגיאה", "The app name is not specified." => "שם היישום לא צוין.", diff --git a/core/l10n/hr.php b/core/l10n/hr.php index 86136329d8..d32d8d4b22 100644 --- a/core/l10n/hr.php +++ b/core/l10n/hr.php @@ -28,11 +28,11 @@ "months ago" => "mjeseci", "last year" => "prošlu godinu", "years ago" => "godina", -"Choose" => "Izaberi", -"Cancel" => "Odustani", -"No" => "Ne", -"Yes" => "Da", "Ok" => "U redu", +"Cancel" => "Odustani", +"Choose" => "Izaberi", +"Yes" => "Da", +"No" => "Ne", "Error" => "Pogreška", "Share" => "Podijeli", "Error while sharing" => "Greška prilikom djeljenja", diff --git a/core/l10n/hu_HU.php b/core/l10n/hu_HU.php index 0f110bfc4c..eb0a3d1a91 100644 --- a/core/l10n/hu_HU.php +++ b/core/l10n/hu_HU.php @@ -44,11 +44,11 @@ "months ago" => "több hónapja", "last year" => "tavaly", "years ago" => "több éve", -"Choose" => "Válasszon", -"Cancel" => "Mégse", -"No" => "Nem", -"Yes" => "Igen", "Ok" => "Ok", +"Cancel" => "Mégse", +"Choose" => "Válasszon", +"Yes" => "Igen", +"No" => "Nem", "The object type is not specified." => "Az objektum típusa nincs megadva.", "Error" => "Hiba", "The app name is not specified." => "Az alkalmazás neve nincs megadva.", diff --git a/core/l10n/is.php b/core/l10n/is.php index 997a582d22..c6b7a6df32 100644 --- a/core/l10n/is.php +++ b/core/l10n/is.php @@ -43,11 +43,11 @@ "months ago" => "mánuðir síðan", "last year" => "síðasta ári", "years ago" => "árum síðan", -"Choose" => "Veldu", -"Cancel" => "Hætta við", -"No" => "Nei", -"Yes" => "Já", "Ok" => "Í lagi", +"Cancel" => "Hætta við", +"Choose" => "Veldu", +"Yes" => "Já", +"No" => "Nei", "The object type is not specified." => "Tegund ekki tilgreind", "Error" => "Villa", "The app name is not specified." => "Nafn forrits ekki tilgreint", diff --git a/core/l10n/it.php b/core/l10n/it.php index 2d9b46ddfc..d24c3330bf 100644 --- a/core/l10n/it.php +++ b/core/l10n/it.php @@ -44,11 +44,11 @@ "months ago" => "mesi fa", "last year" => "anno scorso", "years ago" => "anni fa", -"Choose" => "Scegli", -"Cancel" => "Annulla", -"No" => "No", -"Yes" => "Sì", "Ok" => "Ok", +"Cancel" => "Annulla", +"Choose" => "Scegli", +"Yes" => "Sì", +"No" => "No", "The object type is not specified." => "Il tipo di oggetto non è specificato.", "Error" => "Errore", "The app name is not specified." => "Il nome dell'applicazione non è specificato.", diff --git a/core/l10n/ja_JP.php b/core/l10n/ja_JP.php index 617a8bf4f4..200e494d8c 100644 --- a/core/l10n/ja_JP.php +++ b/core/l10n/ja_JP.php @@ -31,7 +31,7 @@ "November" => "11月", "December" => "12月", "Settings" => "設定", -"seconds ago" => "秒前", +"seconds ago" => "数秒前", "1 minute ago" => "1 分前", "{minutes} minutes ago" => "{minutes} 分前", "1 hour ago" => "1 時間前", @@ -44,11 +44,11 @@ "months ago" => "月前", "last year" => "一年前", "years ago" => "年前", -"Choose" => "選択", -"Cancel" => "キャンセル", -"No" => "いいえ", -"Yes" => "はい", "Ok" => "OK", +"Cancel" => "キャンセル", +"Choose" => "選択", +"Yes" => "はい", +"No" => "いいえ", "The object type is not specified." => "オブジェクタイプが指定されていません。", "Error" => "エラー", "The app name is not specified." => "アプリ名がしていされていません。", diff --git a/core/l10n/ko.php b/core/l10n/ko.php index 408afa372b..2a75ce9c4f 100644 --- a/core/l10n/ko.php +++ b/core/l10n/ko.php @@ -43,11 +43,11 @@ "months ago" => "개월 전", "last year" => "작년", "years ago" => "년 전", -"Choose" => "선택", -"Cancel" => "취소", -"No" => "아니요", -"Yes" => "예", "Ok" => "승락", +"Cancel" => "취소", +"Choose" => "선택", +"Yes" => "예", +"No" => "아니요", "The object type is not specified." => "객체 유형이 지정되지 않았습니다.", "Error" => "오류", "The app name is not specified." => "앱 이름이 지정되지 않았습니다.", diff --git a/core/l10n/lb.php b/core/l10n/lb.php index 11137f27aa..79258b8e97 100644 --- a/core/l10n/lb.php +++ b/core/l10n/lb.php @@ -28,11 +28,11 @@ "months ago" => "Méint hier", "last year" => "Läscht Joer", "years ago" => "Joren hier", -"Choose" => "Auswielen", -"Cancel" => "Ofbriechen", -"No" => "Nee", -"Yes" => "Jo", "Ok" => "OK", +"Cancel" => "Ofbriechen", +"Choose" => "Auswielen", +"Yes" => "Jo", +"No" => "Nee", "Error" => "Fehler", "Share" => "Deelen", "Password" => "Passwuert", diff --git a/core/l10n/lt_LT.php b/core/l10n/lt_LT.php index 563fd8884b..0f55c341e5 100644 --- a/core/l10n/lt_LT.php +++ b/core/l10n/lt_LT.php @@ -31,11 +31,11 @@ "months ago" => "prieš mėnesį", "last year" => "praeitais metais", "years ago" => "prieš metus", -"Choose" => "Pasirinkite", -"Cancel" => "Atšaukti", -"No" => "Ne", -"Yes" => "Taip", "Ok" => "Gerai", +"Cancel" => "Atšaukti", +"Choose" => "Pasirinkite", +"Yes" => "Taip", +"No" => "Ne", "Error" => "Klaida", "Share" => "Dalintis", "Error while sharing" => "Klaida, dalijimosi metu", diff --git a/core/l10n/lv.php b/core/l10n/lv.php index 2ddea9421b..76188662fb 100644 --- a/core/l10n/lv.php +++ b/core/l10n/lv.php @@ -44,11 +44,11 @@ "months ago" => "mēnešus atpakaļ", "last year" => "gājušajā gadā", "years ago" => "gadus atpakaļ", -"Choose" => "Izvēlieties", -"Cancel" => "Atcelt", -"No" => "Nē", -"Yes" => "Jā", "Ok" => "Labi", +"Cancel" => "Atcelt", +"Choose" => "Izvēlieties", +"Yes" => "Jā", +"No" => "Nē", "The object type is not specified." => "Nav norādīts objekta tips.", "Error" => "Kļūda", "The app name is not specified." => "Nav norādīts lietotnes nosaukums.", diff --git a/core/l10n/mk.php b/core/l10n/mk.php index d9da766900..9743d8b299 100644 --- a/core/l10n/mk.php +++ b/core/l10n/mk.php @@ -43,11 +43,11 @@ "months ago" => "пред месеци", "last year" => "минатата година", "years ago" => "пред години", -"Choose" => "Избери", -"Cancel" => "Откажи", -"No" => "Не", -"Yes" => "Да", "Ok" => "Во ред", +"Cancel" => "Откажи", +"Choose" => "Избери", +"Yes" => "Да", +"No" => "Не", "The object type is not specified." => "Не е специфициран типот на објект.", "Error" => "Грешка", "The app name is not specified." => "Името на апликацијата не е специфицирано.", diff --git a/core/l10n/ms_MY.php b/core/l10n/ms_MY.php index af51079b57..d8a2cf8836 100644 --- a/core/l10n/ms_MY.php +++ b/core/l10n/ms_MY.php @@ -21,10 +21,10 @@ "November" => "November", "December" => "Disember", "Settings" => "Tetapan", -"Cancel" => "Batal", -"No" => "Tidak", -"Yes" => "Ya", "Ok" => "Ok", +"Cancel" => "Batal", +"Yes" => "Ya", +"No" => "Tidak", "Error" => "Ralat", "Share" => "Kongsi", "Password" => "Kata laluan", diff --git a/core/l10n/my_MM.php b/core/l10n/my_MM.php index 97631d4df5..ef8be954ed 100644 --- a/core/l10n/my_MM.php +++ b/core/l10n/my_MM.php @@ -21,11 +21,11 @@ "last month" => "ပြီးခဲ့သောလ", "last year" => "မနှစ်က", "years ago" => "နှစ် အရင်က", -"Choose" => "ရွေးချယ်", -"Cancel" => "ပယ်ဖျက်မည်", -"No" => "မဟုတ်ဘူး", -"Yes" => "ဟုတ်", "Ok" => "အိုကေ", +"Cancel" => "ပယ်ဖျက်မည်", +"Choose" => "ရွေးချယ်", +"Yes" => "ဟုတ်", +"No" => "မဟုတ်ဘူး", "Password" => "စကားဝှက်", "Set expiration date" => "သက်တမ်းကုန်ဆုံးမည့်ရက်သတ်မှတ်မည်", "Expiration date" => "သက်တမ်းကုန်ဆုံးမည့်ရက်", diff --git a/core/l10n/nb_NO.php b/core/l10n/nb_NO.php index 340625449e..4e1ee45eec 100644 --- a/core/l10n/nb_NO.php +++ b/core/l10n/nb_NO.php @@ -34,11 +34,11 @@ "months ago" => "måneder siden", "last year" => "forrige år", "years ago" => "år siden", -"Choose" => "Velg", -"Cancel" => "Avbryt", -"No" => "Nei", -"Yes" => "Ja", "Ok" => "Ok", +"Cancel" => "Avbryt", +"Choose" => "Velg", +"Yes" => "Ja", +"No" => "Nei", "Error" => "Feil", "Share" => "Del", "Error while sharing" => "Feil under deling", diff --git a/core/l10n/nl.php b/core/l10n/nl.php index d7379849f1..5e050c33be 100644 --- a/core/l10n/nl.php +++ b/core/l10n/nl.php @@ -44,11 +44,11 @@ "months ago" => "maanden geleden", "last year" => "vorig jaar", "years ago" => "jaar geleden", -"Choose" => "Kies", -"Cancel" => "Annuleren", -"No" => "Nee", -"Yes" => "Ja", "Ok" => "Ok", +"Cancel" => "Annuleren", +"Choose" => "Kies", +"Yes" => "Ja", +"No" => "Nee", "The object type is not specified." => "Het object type is niet gespecificeerd.", "Error" => "Fout", "The app name is not specified." => "De app naam is niet gespecificeerd.", diff --git a/core/l10n/oc.php b/core/l10n/oc.php index abd5f5736a..ec432d495a 100644 --- a/core/l10n/oc.php +++ b/core/l10n/oc.php @@ -29,11 +29,11 @@ "months ago" => "meses a", "last year" => "an passat", "years ago" => "ans a", -"Choose" => "Causís", -"Cancel" => "Anulla", -"No" => "Non", -"Yes" => "Òc", "Ok" => "D'accòrdi", +"Cancel" => "Anulla", +"Choose" => "Causís", +"Yes" => "Òc", +"No" => "Non", "Error" => "Error", "Share" => "Parteja", "Error while sharing" => "Error al partejar", diff --git a/core/l10n/pl.php b/core/l10n/pl.php index 79b7301a03..2821bf77ee 100644 --- a/core/l10n/pl.php +++ b/core/l10n/pl.php @@ -44,11 +44,11 @@ "months ago" => "miesięcy temu", "last year" => "w zeszłym roku", "years ago" => "lat temu", -"Choose" => "Wybierz", -"Cancel" => "Anuluj", -"No" => "Nie", -"Yes" => "Tak", "Ok" => "OK", +"Cancel" => "Anuluj", +"Choose" => "Wybierz", +"Yes" => "Tak", +"No" => "Nie", "The object type is not specified." => "Nie określono typu obiektu.", "Error" => "Błąd", "The app name is not specified." => "Nie określono nazwy aplikacji.", diff --git a/core/l10n/pt_BR.php b/core/l10n/pt_BR.php index 378b0789ed..e5acd4da8f 100644 --- a/core/l10n/pt_BR.php +++ b/core/l10n/pt_BR.php @@ -44,11 +44,11 @@ "months ago" => "meses atrás", "last year" => "último ano", "years ago" => "anos atrás", -"Choose" => "Escolha", -"Cancel" => "Cancelar", -"No" => "Não", -"Yes" => "Sim", "Ok" => "Ok", +"Cancel" => "Cancelar", +"Choose" => "Escolha", +"Yes" => "Sim", +"No" => "Não", "The object type is not specified." => "O tipo de objeto não foi especificado.", "Error" => "Erro", "The app name is not specified." => "O nome do app não foi especificado.", diff --git a/core/l10n/pt_PT.php b/core/l10n/pt_PT.php index 41506bd9ec..67d43e372a 100644 --- a/core/l10n/pt_PT.php +++ b/core/l10n/pt_PT.php @@ -44,11 +44,11 @@ "months ago" => "meses atrás", "last year" => "ano passado", "years ago" => "anos atrás", -"Choose" => "Escolha", -"Cancel" => "Cancelar", -"No" => "Não", -"Yes" => "Sim", "Ok" => "Ok", +"Cancel" => "Cancelar", +"Choose" => "Escolha", +"Yes" => "Sim", +"No" => "Não", "The object type is not specified." => "O tipo de objecto não foi especificado", "Error" => "Erro", "The app name is not specified." => "O nome da aplicação não foi especificado", diff --git a/core/l10n/ro.php b/core/l10n/ro.php index da9f1a7da9..51c1523d7e 100644 --- a/core/l10n/ro.php +++ b/core/l10n/ro.php @@ -43,11 +43,11 @@ "months ago" => "luni în urmă", "last year" => "ultimul an", "years ago" => "ani în urmă", -"Choose" => "Alege", -"Cancel" => "Anulare", -"No" => "Nu", -"Yes" => "Da", "Ok" => "Ok", +"Cancel" => "Anulare", +"Choose" => "Alege", +"Yes" => "Da", +"No" => "Nu", "The object type is not specified." => "Tipul obiectului nu a fost specificat", "Error" => "Eroare", "The app name is not specified." => "Numele aplicației nu a fost specificat", diff --git a/core/l10n/ru.php b/core/l10n/ru.php index 2f90c5c5df..0625a5d11d 100644 --- a/core/l10n/ru.php +++ b/core/l10n/ru.php @@ -44,11 +44,11 @@ "months ago" => "несколько месяцев назад", "last year" => "в прошлом году", "years ago" => "несколько лет назад", -"Choose" => "Выбрать", -"Cancel" => "Отмена", -"No" => "Нет", -"Yes" => "Да", "Ok" => "Ок", +"Cancel" => "Отмена", +"Choose" => "Выбрать", +"Yes" => "Да", +"No" => "Нет", "The object type is not specified." => "Тип объекта не указан", "Error" => "Ошибка", "The app name is not specified." => "Имя приложения не указано", diff --git a/core/l10n/ru_RU.php b/core/l10n/ru_RU.php index 0399d56dfc..1afb9e20c9 100644 --- a/core/l10n/ru_RU.php +++ b/core/l10n/ru_RU.php @@ -44,11 +44,11 @@ "months ago" => "месяц назад", "last year" => "в прошлом году", "years ago" => "лет назад", -"Choose" => "Выбрать", -"Cancel" => "Отмена", -"No" => "Нет", -"Yes" => "Да", "Ok" => "Да", +"Cancel" => "Отмена", +"Choose" => "Выбрать", +"Yes" => "Да", +"No" => "Нет", "The object type is not specified." => "Тип объекта не указан.", "Error" => "Ошибка", "The app name is not specified." => "Имя приложения не указано.", diff --git a/core/l10n/si_LK.php b/core/l10n/si_LK.php index eaafca2f3f..dc9801139a 100644 --- a/core/l10n/si_LK.php +++ b/core/l10n/si_LK.php @@ -28,11 +28,11 @@ "months ago" => "මාස කීපයකට පෙර", "last year" => "පෙර අවුරුද්දේ", "years ago" => "අවුරුදු කීපයකට පෙර", -"Choose" => "තෝරන්න", -"Cancel" => "එපා", -"No" => "නැහැ", -"Yes" => "ඔව්", "Ok" => "හරි", +"Cancel" => "එපා", +"Choose" => "තෝරන්න", +"Yes" => "ඔව්", +"No" => "නැහැ", "Error" => "දෝෂයක්", "Share" => "බෙදා හදා ගන්න", "Share with" => "බෙදාගන්න", diff --git a/core/l10n/sk_SK.php b/core/l10n/sk_SK.php index 9b0bd45fce..b52c8b03c4 100644 --- a/core/l10n/sk_SK.php +++ b/core/l10n/sk_SK.php @@ -44,11 +44,11 @@ "months ago" => "pred mesiacmi", "last year" => "minulý rok", "years ago" => "pred rokmi", -"Choose" => "Výber", -"Cancel" => "Zrušiť", -"No" => "Nie", -"Yes" => "Áno", "Ok" => "Ok", +"Cancel" => "Zrušiť", +"Choose" => "Výber", +"Yes" => "Áno", +"No" => "Nie", "The object type is not specified." => "Nešpecifikovaný typ objektu.", "Error" => "Chyba", "The app name is not specified." => "Nešpecifikované meno aplikácie.", diff --git a/core/l10n/sl.php b/core/l10n/sl.php index df86a608bb..b3cd5c353c 100644 --- a/core/l10n/sl.php +++ b/core/l10n/sl.php @@ -44,11 +44,11 @@ "months ago" => "mesecev nazaj", "last year" => "lansko leto", "years ago" => "let nazaj", -"Choose" => "Izbor", -"Cancel" => "Prekliči", -"No" => "Ne", -"Yes" => "Da", "Ok" => "V redu", +"Cancel" => "Prekliči", +"Choose" => "Izbor", +"Yes" => "Da", +"No" => "Ne", "The object type is not specified." => "Vrsta predmeta ni podana.", "Error" => "Napaka", "The app name is not specified." => "Ime programa ni podano.", diff --git a/core/l10n/sq.php b/core/l10n/sq.php index f869d1bc28..6881d0105c 100644 --- a/core/l10n/sq.php +++ b/core/l10n/sq.php @@ -44,11 +44,11 @@ "months ago" => "muaj më parë", "last year" => "vitin e shkuar", "years ago" => "vite më parë", -"Choose" => "Zgjidh", -"Cancel" => "Anulo", -"No" => "Jo", -"Yes" => "Po", "Ok" => "Në rregull", +"Cancel" => "Anulo", +"Choose" => "Zgjidh", +"Yes" => "Po", +"No" => "Jo", "The object type is not specified." => "Nuk është specifikuar tipi i objektit.", "Error" => "Veprim i gabuar", "The app name is not specified." => "Nuk është specifikuar emri i app-it.", diff --git a/core/l10n/sr.php b/core/l10n/sr.php index 557cb6a8ab..b71d8cdd94 100644 --- a/core/l10n/sr.php +++ b/core/l10n/sr.php @@ -41,11 +41,11 @@ "months ago" => "месеци раније", "last year" => "прошле године", "years ago" => "година раније", -"Choose" => "Одабери", -"Cancel" => "Откажи", -"No" => "Не", -"Yes" => "Да", "Ok" => "У реду", +"Cancel" => "Откажи", +"Choose" => "Одабери", +"Yes" => "Да", +"No" => "Не", "The object type is not specified." => "Врста објекта није подешена.", "Error" => "Грешка", "The app name is not specified." => "Име програма није унето.", diff --git a/core/l10n/sv.php b/core/l10n/sv.php index ff2e8d8d68..553afea5f7 100644 --- a/core/l10n/sv.php +++ b/core/l10n/sv.php @@ -44,11 +44,11 @@ "months ago" => "månader sedan", "last year" => "förra året", "years ago" => "år sedan", -"Choose" => "Välj", -"Cancel" => "Avbryt", -"No" => "Nej", -"Yes" => "Ja", "Ok" => "Ok", +"Cancel" => "Avbryt", +"Choose" => "Välj", +"Yes" => "Ja", +"No" => "Nej", "The object type is not specified." => "Objekttypen är inte specificerad.", "Error" => "Fel", "The app name is not specified." => " Namnet på appen är inte specificerad.", diff --git a/core/l10n/ta_LK.php b/core/l10n/ta_LK.php index 9863ca8154..b45f38627a 100644 --- a/core/l10n/ta_LK.php +++ b/core/l10n/ta_LK.php @@ -39,11 +39,11 @@ "months ago" => "மாதங்களுக்கு முன்", "last year" => "கடந்த வருடம்", "years ago" => "வருடங்களுக்கு முன்", -"Choose" => "தெரிவுசெய்க ", -"Cancel" => "இரத்து செய்க", -"No" => "இல்லை", -"Yes" => "ஆம்", "Ok" => "சரி", +"Cancel" => "இரத்து செய்க", +"Choose" => "தெரிவுசெய்க ", +"Yes" => "ஆம்", +"No" => "இல்லை", "The object type is not specified." => "பொருள் வகை குறிப்பிடப்படவில்லை.", "Error" => "வழு", "The app name is not specified." => "செயலி பெயர் குறிப்பிடப்படவில்லை.", diff --git a/core/l10n/te.php b/core/l10n/te.php index a18af79ab1..040ab9b550 100644 --- a/core/l10n/te.php +++ b/core/l10n/te.php @@ -33,10 +33,10 @@ "months ago" => "నెలల క్రితం", "last year" => "పోయిన సంవత్సరం", "years ago" => "సంవత్సరాల క్రితం", -"Cancel" => "రద్దుచేయి", -"No" => "కాదు", -"Yes" => "అవును", "Ok" => "సరే", +"Cancel" => "రద్దుచేయి", +"Yes" => "అవును", +"No" => "కాదు", "Error" => "పొరపాటు", "Password" => "సంకేతపదం", "Send" => "పంపించు", diff --git a/core/l10n/th_TH.php b/core/l10n/th_TH.php index 560c150066..47d4b87b17 100644 --- a/core/l10n/th_TH.php +++ b/core/l10n/th_TH.php @@ -43,11 +43,11 @@ "months ago" => "เดือน ที่ผ่านมา", "last year" => "ปีที่แล้ว", "years ago" => "ปี ที่ผ่านมา", -"Choose" => "เลือก", -"Cancel" => "ยกเลิก", -"No" => "ไม่ตกลง", -"Yes" => "ตกลง", "Ok" => "ตกลง", +"Cancel" => "ยกเลิก", +"Choose" => "เลือก", +"Yes" => "ตกลง", +"No" => "ไม่ตกลง", "The object type is not specified." => "ชนิดของวัตถุยังไม่ได้รับการระบุ", "Error" => "พบข้อผิดพลาด", "The app name is not specified." => "ชื่อของแอปยังไม่ได้รับการระบุชื่อ", diff --git a/core/l10n/tr.php b/core/l10n/tr.php index 342a010da0..891cfb6b84 100644 --- a/core/l10n/tr.php +++ b/core/l10n/tr.php @@ -44,11 +44,11 @@ "months ago" => "ay önce", "last year" => "geçen yıl", "years ago" => "yıl önce", -"Choose" => "seç", -"Cancel" => "İptal", -"No" => "Hayır", -"Yes" => "Evet", "Ok" => "Tamam", +"Cancel" => "İptal", +"Choose" => "seç", +"Yes" => "Evet", +"No" => "Hayır", "The object type is not specified." => "Nesne türü belirtilmemiş.", "Error" => "Hata", "The app name is not specified." => "uygulama adı belirtilmedi.", diff --git a/core/l10n/uk.php b/core/l10n/uk.php index 685a31d52e..1e86ed7d36 100644 --- a/core/l10n/uk.php +++ b/core/l10n/uk.php @@ -44,11 +44,11 @@ "months ago" => "місяці тому", "last year" => "минулого року", "years ago" => "роки тому", -"Choose" => "Обрати", -"Cancel" => "Відмінити", -"No" => "Ні", -"Yes" => "Так", "Ok" => "Ok", +"Cancel" => "Відмінити", +"Choose" => "Обрати", +"Yes" => "Так", +"No" => "Ні", "The object type is not specified." => "Не визначено тип об'єкту.", "Error" => "Помилка", "The app name is not specified." => "Не визначено ім'я програми.", @@ -107,6 +107,8 @@ "Edit categories" => "Редагувати категорії", "Add" => "Додати", "Security Warning" => "Попередження про небезпеку", +"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Ваша версія PHP вразлива для атак NULL Byte (CVE-2006-7243)", +"Please update your PHP installation to use ownCloud securely." => "Будь ласка, оновіть інсталяцію PHP для безпечного використання ownCloud.", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Не доступний безпечний генератор випадкових чисел, будь ласка, активуйте PHP OpenSSL додаток.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Без безпечного генератора випадкових чисел зловмисник може визначити токени скидання пароля і заволодіти Вашим обліковим записом.", "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Ваші дані каталогів і файлів, ймовірно, доступні з інтернету, тому що .htaccess файл не працює.", diff --git a/core/l10n/ur_PK.php b/core/l10n/ur_PK.php index e2448c4d65..544d041e48 100644 --- a/core/l10n/ur_PK.php +++ b/core/l10n/ur_PK.php @@ -14,11 +14,11 @@ "November" => "نومبر", "December" => "دسمبر", "Settings" => "سیٹینگز", -"Choose" => "منتخب کریں", -"Cancel" => "منسوخ کریں", -"No" => "نہیں", -"Yes" => "ہاں", "Ok" => "اوکے", +"Cancel" => "منسوخ کریں", +"Choose" => "منتخب کریں", +"Yes" => "ہاں", +"No" => "نہیں", "Error" => "ایرر", "Error while sharing" => "شئیرنگ کے دوران ایرر", "Error while unsharing" => "شئیرنگ ختم کرنے کے دوران ایرر", diff --git a/core/l10n/vi.php b/core/l10n/vi.php index f03c58f349..709a874308 100644 --- a/core/l10n/vi.php +++ b/core/l10n/vi.php @@ -44,11 +44,11 @@ "months ago" => "tháng trước", "last year" => "năm trước", "years ago" => "năm trước", -"Choose" => "Chọn", -"Cancel" => "Hủy", -"No" => "Không", -"Yes" => "Có", "Ok" => "Đồng ý", +"Cancel" => "Hủy", +"Choose" => "Chọn", +"Yes" => "Có", +"No" => "Không", "The object type is not specified." => "Loại đối tượng không được chỉ định.", "Error" => "Lỗi", "The app name is not specified." => "Tên ứng dụng không được chỉ định.", diff --git a/core/l10n/zh_CN.GB2312.php b/core/l10n/zh_CN.GB2312.php index e7c99413cd..9fbfac2eec 100644 --- a/core/l10n/zh_CN.GB2312.php +++ b/core/l10n/zh_CN.GB2312.php @@ -41,11 +41,11 @@ "months ago" => "月前", "last year" => "去年", "years ago" => "年前", -"Choose" => "选择", -"Cancel" => "取消", -"No" => "否", -"Yes" => "是", "Ok" => "好的", +"Cancel" => "取消", +"Choose" => "选择", +"Yes" => "是", +"No" => "否", "The object type is not specified." => "未指定对象类型。", "Error" => "错误", "The app name is not specified." => "未指定应用名称。", diff --git a/core/l10n/zh_CN.php b/core/l10n/zh_CN.php index 68f8280f79..926d4691ed 100644 --- a/core/l10n/zh_CN.php +++ b/core/l10n/zh_CN.php @@ -44,11 +44,11 @@ "months ago" => "月前", "last year" => "去年", "years ago" => "年前", -"Choose" => "选择(&C)...", -"Cancel" => "取消", -"No" => "否", -"Yes" => "是", "Ok" => "好", +"Cancel" => "取消", +"Choose" => "选择(&C)...", +"Yes" => "是", +"No" => "否", "The object type is not specified." => "未指定对象类型。", "Error" => "错误", "The app name is not specified." => "未指定App名称。", diff --git a/core/l10n/zh_HK.php b/core/l10n/zh_HK.php index d02b7be660..178ab88e5e 100644 --- a/core/l10n/zh_HK.php +++ b/core/l10n/zh_HK.php @@ -23,10 +23,10 @@ "yesterday" => "昨日", "last month" => "前一月", "months ago" => "個月之前", -"Cancel" => "取消", -"No" => "No", -"Yes" => "Yes", "Ok" => "OK", +"Cancel" => "取消", +"Yes" => "Yes", +"No" => "No", "Error" => "錯誤", "Shared" => "已分享", "Share" => "分享", diff --git a/l10n/af_ZA/core.po b/l10n/af_ZA/core.po index b520c39f30..b9ebff745f 100644 --- a/l10n/af_ZA/core.po +++ b/l10n/af_ZA/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:00+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -161,76 +161,76 @@ msgstr "" msgid "Settings" msgstr "Instellings" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:126 -msgid "Choose" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" msgstr "" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:162 -msgid "No" +#: js/oc-dialogs.js:185 +msgid "Choose" msgstr "" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:180 -msgid "Ok" +#: js/oc-dialogs.js:222 +msgid "No" msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 @@ -238,8 +238,10 @@ msgstr "" msgid "The object type is not specified." msgstr "" -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 #: js/share.js:589 msgid "Error" msgstr "" @@ -532,23 +534,23 @@ msgstr "sal gebruik word" msgid "Database user" msgstr "Databasis-gebruiker" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Databasis-wagwoord" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Databasis naam" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Maak opstelling klaar" diff --git a/l10n/af_ZA/files.po b/l10n/af_ZA/files.po index 7b727d3ae3..fb1d471b2e 100644 --- a/l10n/af_ZA/files.po +++ b/l10n/af_ZA/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-08 02:12+0200\n" -"PO-Revision-Date: 2013-04-08 00:13+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/af_ZA/files_encryption.po b/l10n/af_ZA/files_encryption.po index 535d61f394..56d117f64f 100644 --- a/l10n/af_ZA/files_encryption.po +++ b/l10n/af_ZA/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/af_ZA/files_external.po b/l10n/af_ZA/files_external.po index d8d3d0197b..b1a81514a9 100644 --- a/l10n/af_ZA/files_external.po +++ b/l10n/af_ZA/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -37,13 +37,13 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:421 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:424 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/af_ZA/files_sharing.po b/l10n/af_ZA/files_sharing.po index 13198e5bec..a4346ebad6 100644 --- a/l10n/af_ZA/files_sharing.po +++ b/l10n/af_ZA/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-05 00:19+0100\n" -"PO-Revision-Date: 2012-08-12 22:35+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,24 +25,24 @@ msgstr "Wagwoord" msgid "Submit" msgstr "" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "" -#: templates/public.php:35 +#: templates/public.php:50 msgid "web services under your control" msgstr "webdienste onder jou beheer" diff --git a/l10n/af_ZA/files_trashbin.po b/l10n/af_ZA/files_trashbin.po index b065abd8d7..4519a23f0f 100644 --- a/l10n/af_ZA/files_trashbin.po +++ b/l10n/af_ZA/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-08 02:12+0200\n" -"PO-Revision-Date: 2013-04-08 00:13+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/af_ZA/files_versions.po b/l10n/af_ZA/files_versions.po index cf1a612ba6..b7815be858 100644 --- a/l10n/af_ZA/files_versions.po +++ b/l10n/af_ZA/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -40,11 +40,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/af_ZA/lib.po b/l10n/af_ZA/lib.po index 2196458f39..6d9fd425b1 100644 --- a/l10n/af_ZA/lib.po +++ b/l10n/af_ZA/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/af_ZA/settings.po b/l10n/af_ZA/settings.po index f4b399dbdd..bb6e67d13c 100644 --- a/l10n/af_ZA/settings.po +++ b/l10n/af_ZA/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -100,6 +100,10 @@ msgstr "" msgid "Please wait...." msgstr "" +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" +msgstr "" + #: js/apps.js:90 msgid "Updating...." msgstr "" @@ -108,10 +112,6 @@ msgstr "" msgid "Error while updating app" msgstr "" -#: js/apps.js:93 -msgid "Error" -msgstr "" - #: js/apps.js:96 msgid "Updated" msgstr "" @@ -120,44 +120,44 @@ msgstr "" msgid "Saving..." msgstr "" -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" diff --git a/l10n/af_ZA/user_ldap.po b/l10n/af_ZA/user_ldap.po index 982e4b399c..3f61a263ae 100644 --- a/l10n/af_ZA/user_ldap.po +++ b/l10n/af_ZA/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-02 00:03+0100\n" -"PO-Revision-Date: 2013-03-01 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -86,248 +86,248 @@ msgstr "" msgid "Server configuration" msgstr "" -#: templates/settings.php:18 +#: templates/settings.php:31 msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:23 +#: templates/settings.php:36 msgid "Host" msgstr "" -#: templates/settings.php:25 +#: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:26 +#: templates/settings.php:39 msgid "Base DN" msgstr "" -#: templates/settings.php:27 +#: templates/settings.php:40 msgid "One Base DN per line" msgstr "" -#: templates/settings.php:28 +#: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" -#: templates/settings.php:30 +#: templates/settings.php:43 msgid "User DN" msgstr "" -#: templates/settings.php:32 +#: templates/settings.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 "" -#: templates/settings.php:33 +#: templates/settings.php:46 msgid "Password" msgstr "Wagwoord" -#: templates/settings.php:36 +#: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:37 +#: templates/settings.php:50 msgid "User Login Filter" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:55 msgid "User List Filter" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." msgstr "" -#: templates/settings.php:47 +#: templates/settings.php:60 msgid "Group Filter" msgstr "" -#: templates/settings.php:50 +#: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:68 msgid "Connection Settings" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "Configuration Active" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:71 msgid "Port" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:73 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Use TLS" msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" -#: templates/settings.php:63 +#: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Not recommended, use for testing only." msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:67 +#: templates/settings.php:80 msgid "Directory Settings" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "Base User Tree" msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:71 +#: templates/settings.php:84 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:71 templates/settings.php:74 +#: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:74 +#: templates/settings.php:87 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:88 msgid "Group-Member association" msgstr "" -#: templates/settings.php:77 +#: templates/settings.php:90 msgid "Special Attributes" msgstr "" -#: templates/settings.php:79 +#: templates/settings.php:92 msgid "Quota Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "Quota Default" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "in bytes" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:94 msgid "Email Field" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Test Configuration" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Help" msgstr "Hulp" diff --git a/l10n/af_ZA/user_webdavauth.po b/l10n/af_ZA/user_webdavauth.po index 5ccd72fea3..74d884a8bb 100644 --- a/l10n/af_ZA/user_webdavauth.po +++ b/l10n/af_ZA/user_webdavauth.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2012-11-09 09:06+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,7 +25,7 @@ msgstr "" msgid "URL: http://" msgstr "" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/ar/core.po b/l10n/ar/core.po index 377f6c17f8..e5064b501d 100644 --- a/l10n/ar/core.po +++ b/l10n/ar/core.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" -"Last-Translator: blackcoder \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -164,77 +164,77 @@ msgstr "كانون الاول" msgid "Settings" msgstr "تعديلات" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "منذ ثواني" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "منذ دقيقة" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{minutes} منذ دقائق" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "قبل ساعة مضت" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{hours} ساعة مضت" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "اليوم" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "يوم أمس" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "{days} يوم سابق" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "الشهر الماضي" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "{months} شهر مضت" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "شهر مضى" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "السنةالماضية" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "سنة مضت" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "اختيار" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "موافق" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "الغاء" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "لا" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "اختيار" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "نعم" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "موافق" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "لا" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -537,23 +537,23 @@ msgstr "سيتم استخدمه" msgid "Database user" msgstr "مستخدم قاعدة البيانات" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "كلمة سر مستخدم قاعدة البيانات" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "إسم قاعدة البيانات" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "مساحة جدول قاعدة البيانات" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "خادم قاعدة البيانات" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "انهاء التعديلات" diff --git a/l10n/ar/files.po b/l10n/ar/files.po index 287a7043f3..d0eb037a69 100644 --- a/l10n/ar/files.po +++ b/l10n/ar/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:09+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/files_encryption.po b/l10n/ar/files_encryption.po index e11e221b6e..ca3f1fda57 100644 --- a/l10n/ar/files_encryption.po +++ b/l10n/ar/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-19 00:04+0100\n" -"PO-Revision-Date: 2013-03-18 11:00+0000\n" -"Last-Translator: Raed667 \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/ar/files_external.po b/l10n/ar/files_external.po index d7c1d01ac4..a9e752fed0 100644 --- a/l10n/ar/files_external.po +++ b/l10n/ar/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -37,13 +37,13 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:421 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:424 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/ar/files_sharing.po b/l10n/ar/files_sharing.po index 92546656f2..2652c5fdb6 100644 --- a/l10n/ar/files_sharing.po +++ b/l10n/ar/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-23 00:09+0100\n" -"PO-Revision-Date: 2012-12-22 19:42+0000\n" -"Last-Translator: aboodilankaboot \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,24 +26,24 @@ msgstr "كلمة المرور" msgid "Submit" msgstr "تطبيق" -#: templates/public.php:17 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s شارك المجلد %s معك" -#: templates/public.php:19 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s شارك الملف %s معك" -#: templates/public.php:22 templates/public.php:38 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "تحميل" -#: templates/public.php:37 +#: templates/public.php:40 msgid "No preview available for" msgstr "لا يوجد عرض مسبق لـ" -#: templates/public.php:43 +#: templates/public.php:50 msgid "web services under your control" msgstr "خدمات الشبكة تحت سيطرتك" diff --git a/l10n/ar/files_trashbin.po b/l10n/ar/files_trashbin.po index c10f296ee7..c4b191857f 100644 --- a/l10n/ar/files_trashbin.po +++ b/l10n/ar/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/files_versions.po b/l10n/ar/files_versions.po index c086e82cd3..47c00fd32d 100644 --- a/l10n/ar/files_versions.po +++ b/l10n/ar/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-01 00:05+0100\n" -"PO-Revision-Date: 2013-02-27 23:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -41,11 +41,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/ar/lib.po b/l10n/ar/lib.po index 511c1cbb18..9fb10d0636 100644 --- a/l10n/ar/lib.po +++ b/l10n/ar/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" -"Last-Translator: Matalqah \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index 56dec41573..9e1ddcce83 100644 --- a/l10n/ar/settings.po +++ b/l10n/ar/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -125,44 +125,44 @@ msgstr "تم التحديث بنجاح" msgid "Saving..." msgstr "حفظ" -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "تم الحذف" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "تراجع" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "تعذر حذف المستخدم" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "مجموعات" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "مدير المجموعة" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "حذف" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "اضافة مجموعة" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "يجب ادخال اسم مستخدم صحيح" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "حصل خطأ اثناء انشاء مستخدم" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "يجب ادخال كلمة مرور صحيحة" diff --git a/l10n/ar/user_ldap.po b/l10n/ar/user_ldap.po index e9c5205c15..1c8adac39b 100644 --- a/l10n/ar/user_ldap.po +++ b/l10n/ar/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-02 00:03+0100\n" -"PO-Revision-Date: 2013-03-01 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -86,248 +86,248 @@ msgstr "" msgid "Server configuration" msgstr "" -#: templates/settings.php:18 +#: templates/settings.php:31 msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:23 +#: templates/settings.php:36 msgid "Host" msgstr "" -#: templates/settings.php:25 +#: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:26 +#: templates/settings.php:39 msgid "Base DN" msgstr "" -#: templates/settings.php:27 +#: templates/settings.php:40 msgid "One Base DN per line" msgstr "" -#: templates/settings.php:28 +#: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" -#: templates/settings.php:30 +#: templates/settings.php:43 msgid "User DN" msgstr "" -#: templates/settings.php:32 +#: templates/settings.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 "" -#: templates/settings.php:33 +#: templates/settings.php:46 msgid "Password" msgstr "كلمة المرور" -#: templates/settings.php:36 +#: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:37 +#: templates/settings.php:50 msgid "User Login Filter" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:55 msgid "User List Filter" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." msgstr "" -#: templates/settings.php:47 +#: templates/settings.php:60 msgid "Group Filter" msgstr "" -#: templates/settings.php:50 +#: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:68 msgid "Connection Settings" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "Configuration Active" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:71 msgid "Port" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:73 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Use TLS" msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" -#: templates/settings.php:63 +#: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Not recommended, use for testing only." msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:67 +#: templates/settings.php:80 msgid "Directory Settings" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "Base User Tree" msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:71 +#: templates/settings.php:84 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:71 templates/settings.php:74 +#: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:74 +#: templates/settings.php:87 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:88 msgid "Group-Member association" msgstr "" -#: templates/settings.php:77 +#: templates/settings.php:90 msgid "Special Attributes" msgstr "" -#: templates/settings.php:79 +#: templates/settings.php:92 msgid "Quota Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "Quota Default" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "in bytes" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:94 msgid "Email Field" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Test Configuration" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Help" msgstr "المساعدة" diff --git a/l10n/ar/user_webdavauth.po b/l10n/ar/user_webdavauth.po index 14d1b06562..72d0d26fea 100644 --- a/l10n/ar/user_webdavauth.po +++ b/l10n/ar/user_webdavauth.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-23 21:50+0000\n" -"Last-Translator: blackcoder \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/be/core.po b/l10n/be/core.po index 265ab2c4dc..fa6af285a8 100644 --- a/l10n/be/core.po +++ b/l10n/be/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-22 00:03+0100\n" -"PO-Revision-Date: 2013-03-21 23:03+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" @@ -161,76 +161,76 @@ msgstr "" msgid "Settings" msgstr "" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:126 -msgid "Choose" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" msgstr "" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:162 -msgid "No" +#: js/oc-dialogs.js:185 +msgid "Choose" msgstr "" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:180 -msgid "Ok" +#: js/oc-dialogs.js:222 +msgid "No" msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 @@ -238,9 +238,11 @@ msgstr "" msgid "The object type is not specified." msgstr "" -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 -#: js/share.js:578 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 msgid "Error" msgstr "" @@ -260,7 +262,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:125 js/share.js:606 +#: js/share.js:125 js/share.js:617 msgid "Error while sharing" msgstr "" @@ -320,59 +322,59 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:240 +#: js/share.js:251 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:276 +#: js/share.js:287 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:297 +#: js/share.js:308 msgid "Unshare" msgstr "" -#: js/share.js:309 +#: js/share.js:320 msgid "can edit" msgstr "" -#: js/share.js:311 +#: js/share.js:322 msgid "access control" msgstr "" -#: js/share.js:314 +#: js/share.js:325 msgid "create" msgstr "" -#: js/share.js:317 +#: js/share.js:328 msgid "update" msgstr "" -#: js/share.js:320 +#: js/share.js:331 msgid "delete" msgstr "" -#: js/share.js:323 +#: js/share.js:334 msgid "share" msgstr "" -#: js/share.js:357 js/share.js:553 +#: js/share.js:368 js/share.js:564 msgid "Password protected" msgstr "" -#: js/share.js:566 +#: js/share.js:577 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:578 +#: js/share.js:589 msgid "Error setting expiration date" msgstr "" -#: js/share.js:593 +#: js/share.js:604 msgid "Sending ..." msgstr "" -#: js/share.js:604 +#: js/share.js:615 msgid "Email sent" msgstr "" @@ -532,23 +534,23 @@ msgstr "" msgid "Database user" msgstr "" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Завяршыць ўстаноўку." diff --git a/l10n/be/files.po b/l10n/be/files.po index 285e775a32..b29349ac81 100644 --- a/l10n/be/files.po +++ b/l10n/be/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-08 02:12+0200\n" -"PO-Revision-Date: 2013-04-08 00:13+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/be/files_encryption.po b/l10n/be/files_encryption.po index f1aff43a6c..a9b0bfec81 100644 --- a/l10n/be/files_encryption.po +++ b/l10n/be/files_encryption.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-15 00:04+0100\n" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/be/files_external.po b/l10n/be/files_external.po index 016c814919..dda0365cad 100644 --- a/l10n/be/files_external.po +++ b/l10n/be/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" @@ -37,13 +37,13 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:421 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:424 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/be/files_sharing.po b/l10n/be/files_sharing.po index c09045efa9..efb3d2fd91 100644 --- a/l10n/be/files_sharing.po +++ b/l10n/be/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-15 00:04+0100\n" -"PO-Revision-Date: 2012-08-12 22:35+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,24 +25,24 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "" -#: templates/public.php:35 +#: templates/public.php:50 msgid "web services under your control" msgstr "" diff --git a/l10n/be/files_trashbin.po b/l10n/be/files_trashbin.po index cac41c5f4f..2deeee0f87 100644 --- a/l10n/be/files_trashbin.po +++ b/l10n/be/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-08 02:12+0200\n" -"PO-Revision-Date: 2013-04-08 00:13+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/be/files_versions.po b/l10n/be/files_versions.po index 8b4294e5f2..42178f677d 100644 --- a/l10n/be/files_versions.po +++ b/l10n/be/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" @@ -40,11 +40,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/be/lib.po b/l10n/be/lib.po index 1759595aea..989a95417e 100644 --- a/l10n/be/lib.po +++ b/l10n/be/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-27 14:35+0100\n" -"PO-Revision-Date: 2013-02-27 13:36+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" @@ -41,19 +41,19 @@ msgstr "" msgid "Admin" msgstr "" -#: files.php:202 +#: files.php:209 msgid "ZIP download is turned off." msgstr "" -#: files.php:203 +#: files.php:210 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:204 files.php:231 +#: files.php:211 files.php:244 msgid "Back to Files" msgstr "" -#: files.php:228 +#: files.php:241 msgid "Selected files too large to generate zip file." msgstr "" @@ -117,72 +117,72 @@ msgstr "" msgid "%s set the database host." msgstr "" -#: setup.php:128 setup.php:320 setup.php:365 +#: setup.php:132 setup.php:324 setup.php:369 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:129 setup.php:152 setup.php:229 +#: setup.php:133 setup.php:156 setup.php:233 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup.php:151 setup.php:453 setup.php:520 +#: setup.php:155 setup.php:457 setup.php:524 msgid "Oracle username and/or password not valid" msgstr "" -#: setup.php:228 +#: setup.php:232 msgid "MySQL username and/or password not valid" msgstr "" -#: setup.php:282 setup.php:386 setup.php:395 setup.php:413 setup.php:423 -#: setup.php:432 setup.php:461 setup.php:527 setup.php:553 setup.php:560 -#: setup.php:571 setup.php:578 setup.php:587 setup.php:595 setup.php:604 -#: setup.php:610 +#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 +#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 +#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 +#: setup.php:614 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup.php:283 setup.php:387 setup.php:396 setup.php:414 setup.php:424 -#: setup.php:433 setup.php:462 setup.php:528 setup.php:554 setup.php:561 -#: setup.php:572 setup.php:588 setup.php:596 setup.php:605 +#: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 +#: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 +#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:299 +#: setup.php:303 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup.php:300 +#: setup.php:304 msgid "Drop this user from MySQL" msgstr "" -#: setup.php:305 +#: setup.php:309 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup.php:306 +#: setup.php:310 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:579 setup.php:611 +#: setup.php:583 setup.php:615 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:631 +#: setup.php:635 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:849 +#: setup.php:853 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:850 +#: setup.php:854 #, php-format msgid "Please double check the installation guides." msgstr "" diff --git a/l10n/be/settings.po b/l10n/be/settings.po index dcdbbee1cd..5446ea05fe 100644 --- a/l10n/be/settings.po +++ b/l10n/be/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" @@ -100,6 +100,10 @@ msgstr "" msgid "Please wait...." msgstr "" +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" +msgstr "" + #: js/apps.js:90 msgid "Updating...." msgstr "" @@ -108,10 +112,6 @@ msgstr "" msgid "Error while updating app" msgstr "" -#: js/apps.js:93 -msgid "Error" -msgstr "" - #: js/apps.js:96 msgid "Updated" msgstr "" @@ -120,44 +120,44 @@ msgstr "" msgid "Saving..." msgstr "" -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" diff --git a/l10n/be/user_ldap.po b/l10n/be/user_ldap.po index c807e563d2..97fbac3107 100644 --- a/l10n/be/user_ldap.po +++ b/l10n/be/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-02 00:03+0100\n" -"PO-Revision-Date: 2013-03-01 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" @@ -86,248 +86,248 @@ msgstr "" msgid "Server configuration" msgstr "" -#: templates/settings.php:18 +#: templates/settings.php:31 msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:23 +#: templates/settings.php:36 msgid "Host" msgstr "" -#: templates/settings.php:25 +#: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:26 +#: templates/settings.php:39 msgid "Base DN" msgstr "" -#: templates/settings.php:27 +#: templates/settings.php:40 msgid "One Base DN per line" msgstr "" -#: templates/settings.php:28 +#: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" -#: templates/settings.php:30 +#: templates/settings.php:43 msgid "User DN" msgstr "" -#: templates/settings.php:32 +#: templates/settings.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 "" -#: templates/settings.php:33 +#: templates/settings.php:46 msgid "Password" msgstr "" -#: templates/settings.php:36 +#: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:37 +#: templates/settings.php:50 msgid "User Login Filter" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:55 msgid "User List Filter" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." msgstr "" -#: templates/settings.php:47 +#: templates/settings.php:60 msgid "Group Filter" msgstr "" -#: templates/settings.php:50 +#: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:68 msgid "Connection Settings" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "Configuration Active" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:71 msgid "Port" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:73 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Use TLS" msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" -#: templates/settings.php:63 +#: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Not recommended, use for testing only." msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:67 +#: templates/settings.php:80 msgid "Directory Settings" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "Base User Tree" msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:71 +#: templates/settings.php:84 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:71 templates/settings.php:74 +#: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:74 +#: templates/settings.php:87 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:88 msgid "Group-Member association" msgstr "" -#: templates/settings.php:77 +#: templates/settings.php:90 msgid "Special Attributes" msgstr "" -#: templates/settings.php:79 +#: templates/settings.php:92 msgid "Quota Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "Quota Default" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "in bytes" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:94 msgid "Email Field" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Test Configuration" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Help" msgstr "" diff --git a/l10n/be/user_webdavauth.po b/l10n/be/user_webdavauth.po index 16028ee79d..b0ef05091d 100644 --- a/l10n/be/user_webdavauth.po +++ b/l10n/be/user_webdavauth.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-15 00:05+0100\n" -"PO-Revision-Date: 2012-11-09 09:06+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index c332b005cd..df29a3b97c 100644 --- a/l10n/bg_BG/core.po +++ b/l10n/bg_BG/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -164,76 +164,76 @@ msgstr "" msgid "Settings" msgstr "Настройки" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "преди секунди" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "преди 1 минута" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "преди 1 час" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "днес" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "вчера" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "последният месец" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "последната година" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "последните години" -#: js/oc-dialogs.js:126 -msgid "Choose" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" msgstr "" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Отказ" -#: js/oc-dialogs.js:162 -msgid "No" +#: js/oc-dialogs.js:185 +msgid "Choose" msgstr "" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:180 -msgid "Ok" +#: js/oc-dialogs.js:222 +msgid "No" msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 @@ -537,23 +537,23 @@ msgstr "" msgid "Database user" msgstr "" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "" diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po index 4addb9168d..250844d1fb 100644 --- a/l10n/bg_BG/files.po +++ b/l10n/bg_BG/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:09+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \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 4ec6da246a..ac98af1b67 100644 --- a/l10n/bg_BG/files_encryption.po +++ b/l10n/bg_BG/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/bg_BG/files_external.po index a6df90bcaa..d2292c3a60 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -38,13 +38,13 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/bg_BG/files_sharing.po b/l10n/bg_BG/files_sharing.po index 0d7fe218e8..b34ed53ec9 100644 --- a/l10n/bg_BG/files_sharing.po +++ b/l10n/bg_BG/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-10 00:04+0100\n" -"PO-Revision-Date: 2013-01-09 20:45+0000\n" -"Last-Translator: Stefan Ilivanov \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \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" @@ -26,24 +26,24 @@ msgstr "Парола" msgid "Submit" msgstr "Потвърждение" -#: templates/public.php:17 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s сподели папката %s с Вас" -#: templates/public.php:19 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s сподели файла %s с Вас" -#: templates/public.php:22 templates/public.php:38 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Изтегляне" -#: templates/public.php:37 +#: templates/public.php:40 msgid "No preview available for" msgstr "Няма наличен преглед за" -#: templates/public.php:43 +#: templates/public.php:50 msgid "web services under your control" msgstr "уеб услуги под Ваш контрол" diff --git a/l10n/bg_BG/files_trashbin.po b/l10n/bg_BG/files_trashbin.po index 8791cd00f6..937d1ebd8a 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \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 895db875d9..6ddabfb253 100644 --- a/l10n/bg_BG/files_versions.po +++ b/l10n/bg_BG/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-01 00:05+0100\n" -"PO-Revision-Date: 2013-02-27 23:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -41,11 +41,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/bg_BG/lib.po b/l10n/bg_BG/lib.po index 0ef73e2dd5..2c6b87cd76 100644 --- a/l10n/bg_BG/lib.po +++ b/l10n/bg_BG/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" -"Last-Translator: Kiril \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \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" diff --git a/l10n/bg_BG/settings.po b/l10n/bg_BG/settings.po index 0457ea6caf..9a7e81c827 100644 --- a/l10n/bg_BG/settings.po +++ b/l10n/bg_BG/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -123,44 +123,44 @@ msgstr "Обновено" msgid "Saving..." msgstr "Записване..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "изтрито" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "възтановяване" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Групи" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Изтриване" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" diff --git a/l10n/bg_BG/user_ldap.po b/l10n/bg_BG/user_ldap.po index 43ed372ee0..090b9a9113 100644 --- a/l10n/bg_BG/user_ldap.po +++ b/l10n/bg_BG/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-02 00:03+0100\n" -"PO-Revision-Date: 2013-03-01 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -86,248 +86,248 @@ msgstr "" msgid "Server configuration" msgstr "" -#: templates/settings.php:18 +#: templates/settings.php:31 msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:23 +#: templates/settings.php:36 msgid "Host" msgstr "" -#: templates/settings.php:25 +#: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:26 +#: templates/settings.php:39 msgid "Base DN" msgstr "" -#: templates/settings.php:27 +#: templates/settings.php:40 msgid "One Base DN per line" msgstr "" -#: templates/settings.php:28 +#: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" -#: templates/settings.php:30 +#: templates/settings.php:43 msgid "User DN" msgstr "" -#: templates/settings.php:32 +#: templates/settings.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 "" -#: templates/settings.php:33 +#: templates/settings.php:46 msgid "Password" msgstr "Парола" -#: templates/settings.php:36 +#: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:37 +#: templates/settings.php:50 msgid "User Login Filter" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:55 msgid "User List Filter" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." msgstr "" -#: templates/settings.php:47 +#: templates/settings.php:60 msgid "Group Filter" msgstr "" -#: templates/settings.php:50 +#: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:68 msgid "Connection Settings" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "Configuration Active" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:71 msgid "Port" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:73 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Use TLS" msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" -#: templates/settings.php:63 +#: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Not recommended, use for testing only." msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:67 +#: templates/settings.php:80 msgid "Directory Settings" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "Base User Tree" msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:71 +#: templates/settings.php:84 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:71 templates/settings.php:74 +#: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:74 +#: templates/settings.php:87 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:88 msgid "Group-Member association" msgstr "" -#: templates/settings.php:77 +#: templates/settings.php:90 msgid "Special Attributes" msgstr "" -#: templates/settings.php:79 +#: templates/settings.php:92 msgid "Quota Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "Quota Default" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "in bytes" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:94 msgid "Email Field" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Test Configuration" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Help" msgstr "Помощ" diff --git a/l10n/bg_BG/user_webdavauth.po b/l10n/bg_BG/user_webdavauth.po index c541db398f..a237daa76e 100644 --- a/l10n/bg_BG/user_webdavauth.po +++ b/l10n/bg_BG/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -25,7 +25,7 @@ msgstr "" msgid "URL: http://" msgstr "" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/bn_BD/core.po b/l10n/bn_BD/core.po index 017d9bfbd8..12dcdc5e3b 100644 --- a/l10n/bn_BD/core.po +++ b/l10n/bn_BD/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -162,77 +162,77 @@ msgstr "ডিসেম্বর" msgid "Settings" msgstr "নিয়ামকসমূহ" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "সেকেন্ড পূর্বে" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "1 মিনিট পূর্বে" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{minutes} মিনিট পূর্বে" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "1 ঘন্টা পূর্বে" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{hours} ঘন্টা পূর্বে" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "আজ" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "গতকাল" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "{days} দিন পূর্বে" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "গতমাস" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "{months} মাস পূর্বে" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "মাস পূর্বে" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "গত বছর" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "বছর পূর্বে" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "বেছে নিন" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "তথাস্তু" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "বাতির" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "না" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "বেছে নিন" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "হ্যাঁ" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "তথাস্তু" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "না" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -535,23 +535,23 @@ msgstr "ব্যবহৃত হবে" msgid "Database user" msgstr "ডাটাবেজ ব্যবহারকারী" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "ডাটাবেজ কূটশব্দ" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "ডাটাবেজের নাম" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "ডাটাবেজ টেবলস্পেস" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "ডাটাবেজ হোস্ট" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "সেটআপ সুসম্পন্ন কর" diff --git a/l10n/bn_BD/files.po b/l10n/bn_BD/files.po index 04badc5e7f..5657516e13 100644 --- a/l10n/bn_BD/files.po +++ b/l10n/bn_BD/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:09+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/files_encryption.po b/l10n/bn_BD/files_encryption.po index 7c8a89fc3b..1aee47b45e 100644 --- a/l10n/bn_BD/files_encryption.po +++ b/l10n/bn_BD/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/files_external.po b/l10n/bn_BD/files_external.po index 840f97b249..352cfa4191 100644 --- a/l10n/bn_BD/files_external.po +++ b/l10n/bn_BD/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -37,13 +37,13 @@ msgstr "দয়া করে সঠিক এবং বৈধ Dropbox app key and msgid "Error configuring Google Drive storage" msgstr "Google Drive সংরক্ষণাগার নির্ধারণ করতে সমস্যা " -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/bn_BD/files_sharing.po b/l10n/bn_BD/files_sharing.po index 55a97e9d95..4e14b78c0f 100644 --- a/l10n/bn_BD/files_sharing.po +++ b/l10n/bn_BD/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-11 00:05+0100\n" -"PO-Revision-Date: 2013-01-10 09:58+0000\n" -"Last-Translator: Shubhra Paul \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,24 +25,24 @@ msgstr "কূটশব্দ" msgid "Submit" msgstr "জমা দাও" -#: templates/public.php:17 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s আপনার সাথে %s ফোল্ডারটি ভাগাভাগি করেছেন" -#: templates/public.php:19 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s আপনার সাথে %s ফাইলটি ভাগাভাগি করেছেন" -#: templates/public.php:22 templates/public.php:38 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "ডাউনলোড" -#: templates/public.php:37 +#: templates/public.php:40 msgid "No preview available for" msgstr "এর জন্য কোন প্রাকবীক্ষণ সুলভ নয়" -#: templates/public.php:43 +#: templates/public.php:50 msgid "web services under your control" msgstr "ওয়েব সার্ভিস আপনার হাতের মুঠোয়" diff --git a/l10n/bn_BD/files_trashbin.po b/l10n/bn_BD/files_trashbin.po index 4b31e77806..95ea7946c4 100644 --- a/l10n/bn_BD/files_trashbin.po +++ b/l10n/bn_BD/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/files_versions.po b/l10n/bn_BD/files_versions.po index 446a2d3471..062b960509 100644 --- a/l10n/bn_BD/files_versions.po +++ b/l10n/bn_BD/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-01 00:05+0100\n" -"PO-Revision-Date: 2013-02-27 23:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -40,11 +40,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/bn_BD/lib.po b/l10n/bn_BD/lib.po index f402fcbb33..2d465cdd0d 100644 --- a/l10n/bn_BD/lib.po +++ b/l10n/bn_BD/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/settings.po b/l10n/bn_BD/settings.po index 05f219903a..5512ff0009 100644 --- a/l10n/bn_BD/settings.po +++ b/l10n/bn_BD/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -121,44 +121,44 @@ msgstr "" msgid "Saving..." msgstr "সংরক্ষণ করা হচ্ছে.." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "ক্রিয়া প্রত্যাহার" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "গোষ্ঠীসমূহ" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "গোষ্ঠী প্রশাসক" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "মুছে ফেল" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" diff --git a/l10n/bn_BD/user_ldap.po b/l10n/bn_BD/user_ldap.po index 9619227c80..5c9f48d870 100644 --- a/l10n/bn_BD/user_ldap.po +++ b/l10n/bn_BD/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/user_webdavauth.po b/l10n/bn_BD/user_webdavauth.po index 6bf9079f19..cdc95646c2 100644 --- a/l10n/bn_BD/user_webdavauth.po +++ b/l10n/bn_BD/user_webdavauth.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -26,7 +26,7 @@ msgstr "" msgid "URL: http://" msgstr "URL:http://" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/ca/core.po b/l10n/ca/core.po index 24cd6be2c3..aef1d1ecfe 100644 --- a/l10n/ca/core.po +++ b/l10n/ca/core.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" -"Last-Translator: rogerc \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -164,77 +164,77 @@ msgstr "Desembre" msgid "Settings" msgstr "Arranjament" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "segons enrere" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "fa 1 minut" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "fa {minutes} minuts" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "fa 1 hora" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "fa {hours} hores" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "avui" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "ahir" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "fa {days} dies" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "el mes passat" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "fa {months} mesos" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "mesos enrere" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "l'any passat" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "anys enrere" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Escull" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "D'acord" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Cancel·la" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "No" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Escull" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Sí" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "D'acord" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "No" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -537,23 +537,23 @@ msgstr "s'usarà" msgid "Database user" msgstr "Usuari de la base de dades" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Contrasenya de la base de dades" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Nom de la base de dades" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Espai de taula de la base de dades" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Ordinador central de la base de dades" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Acaba la configuració" diff --git a/l10n/ca/files.po b/l10n/ca/files.po index 4d95f585ff..cd41e26dfe 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-11 02:08+0200\n" -"PO-Revision-Date: 2013-04-10 14:46+0000\n" -"Last-Translator: rogerc \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/ca/files_encryption.po b/l10n/ca/files_encryption.po index 98f7c39d55..239900b073 100644 --- a/l10n/ca/files_encryption.po +++ b/l10n/ca/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files_external.po b/l10n/ca/files_external.po index 570b6de839..90d62bfd1c 100644 --- a/l10n/ca/files_external.po +++ b/l10n/ca/files_external.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 13:00+0000\n" -"Last-Translator: rogerc \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -39,13 +39,13 @@ msgstr "Proporcioneu una clau d'aplicació i secret vàlids per a Dropbox" msgid "Error configuring Google Drive storage" msgstr "Error en configurar l'emmagatzemament Google Drive" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Avís: \"smbclient\" no està instal·lat. No es pot muntar la compartició CIFS/SMB. Demaneu a l'administrador del sistema que l'instal·li." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/ca/files_sharing.po b/l10n/ca/files_sharing.po index 682f63bb56..cc9c28a806 100644 --- a/l10n/ca/files_sharing.po +++ b/l10n/ca/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-02 02:02+0200\n" -"PO-Revision-Date: 2012-10-01 08:50+0000\n" -"Last-Translator: rogerc \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,24 +26,24 @@ msgstr "Contrasenya" msgid "Submit" msgstr "Envia" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s ha compartit la carpeta %s amb vós" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s ha compartit el fitxer %s amb vós" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Baixa" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "No hi ha vista prèvia disponible per a" -#: templates/public.php:37 +#: templates/public.php:50 msgid "web services under your control" msgstr "controleu els vostres serveis web" diff --git a/l10n/ca/files_trashbin.po b/l10n/ca/files_trashbin.po index 9d9af8c973..33d6a484fa 100644 --- a/l10n/ca/files_trashbin.po +++ b/l10n/ca/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files_versions.po b/l10n/ca/files_versions.po index 8aeff6e34c..6e6a97f897 100644 --- a/l10n/ca/files_versions.po +++ b/l10n/ca/files_versions.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-01 00:05+0100\n" -"PO-Revision-Date: 2013-02-28 11:20+0000\n" -"Last-Translator: rogerc \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -43,11 +43,11 @@ msgstr "fallada" msgid "File %s could not be reverted to version %s" msgstr "El fitxer %s no s'ha pogut revertir a la versió %s" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "No hi ha versións antigues disponibles" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "No heu especificat el camí" diff --git a/l10n/ca/lib.po b/l10n/ca/lib.po index 36b660ecaf..7b9fbee414 100644 --- a/l10n/ca/lib.po +++ b/l10n/ca/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" -"Last-Translator: rogerc \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index f3570ed8d4..450e44b5ea 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -126,44 +126,44 @@ msgstr "Actualitzada" msgid "Saving..." msgstr "S'està desant..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "esborrat" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "desfés" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "No s'ha pogut eliminar l'usuari" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Grups" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Grup Admin" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Suprimeix" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "afegeix grup" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "Heu de facilitar un nom d'usuari vàlid" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "Error en crear l'usuari" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "Heu de facilitar una contrasenya vàlida" diff --git a/l10n/ca/user_ldap.po b/l10n/ca/user_ldap.po index e04cdeb3dd..703a2caaf5 100644 --- a/l10n/ca/user_ldap.po +++ b/l10n/ca/user_ldap.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" -"Last-Translator: rogerc \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/ca/user_webdavauth.po b/l10n/ca/user_webdavauth.po index bd7df15438..4c7bf62ffe 100644 --- a/l10n/ca/user_webdavauth.po +++ b/l10n/ca/user_webdavauth.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-16 00:19+0100\n" -"PO-Revision-Date: 2013-01-15 07:22+0000\n" -"Last-Translator: rogerc \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,7 +26,7 @@ msgstr "Autenticació WebDAV" msgid "URL: http://" msgstr "URL: http://" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index 74638f38be..8b85d622a8 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/core.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" -"Last-Translator: Tomáš Chvátal \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"Last-Translator: I Robot \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" @@ -164,77 +164,77 @@ msgstr "Prosinec" msgid "Settings" msgstr "Nastavení" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "před pár vteřinami" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "před minutou" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "před {minutes} minutami" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "před hodinou" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "před {hours} hodinami" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "dnes" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "včera" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "před {days} dny" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "minulý mesíc" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "před {months} měsíci" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "před měsíci" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "minulý rok" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "před lety" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Vybrat" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Ok" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Zrušit" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Ne" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Vybrat" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Ano" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "Ok" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Ne" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -537,23 +537,23 @@ msgstr "bude použito" msgid "Database user" msgstr "Uživatel databáze" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Heslo databáze" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Název databáze" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Tabulkový prostor databáze" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Hostitel databáze" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Dokončit nastavení" diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index 965e689bbf..f94603ad39 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-12 02:09+0200\n" -"PO-Revision-Date: 2013-04-11 07:30+0000\n" -"Last-Translator: Tomáš Chvátal \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \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" diff --git a/l10n/cs_CZ/files_encryption.po b/l10n/cs_CZ/files_encryption.po index 566eff0e84..ac3415a072 100644 --- a/l10n/cs_CZ/files_encryption.po +++ b/l10n/cs_CZ/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/files_external.po b/l10n/cs_CZ/files_external.po index 74fc664212..9ad584ba1f 100644 --- a/l10n/cs_CZ/files_external.po +++ b/l10n/cs_CZ/files_external.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 13:00+0000\n" -"Last-Translator: Tomáš Chvátal \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \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" @@ -41,13 +41,13 @@ msgstr "Zadejte, prosím, platný klíč a bezpečnostní frázi aplikace Dropbo msgid "Error configuring Google Drive storage" msgstr "Chyba při nastavení úložiště Google Drive" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Varování: není nainstalován program \"smbclient\". Není možné připojení oddílů CIFS/SMB. Prosím požádejte svého správce systému ať jej nainstaluje." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/cs_CZ/files_sharing.po b/l10n/cs_CZ/files_sharing.po index bf14914d76..33206ef2bd 100644 --- a/l10n/cs_CZ/files_sharing.po +++ b/l10n/cs_CZ/files_sharing.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-23 02:01+0200\n" -"PO-Revision-Date: 2012-09-22 11:59+0000\n" -"Last-Translator: Tomáš Chvátal \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \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" @@ -28,24 +28,24 @@ msgstr "Heslo" msgid "Submit" msgstr "Odeslat" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s s Vámi sdílí složku %s" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s s Vámi sdílí soubor %s" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Stáhnout" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "Náhled není dostupný pro" -#: templates/public.php:37 +#: templates/public.php:50 msgid "web services under your control" msgstr "služby webu pod Vaší kontrolou" diff --git a/l10n/cs_CZ/files_trashbin.po b/l10n/cs_CZ/files_trashbin.po index 0b7136d936..305933ee01 100644 --- a/l10n/cs_CZ/files_trashbin.po +++ b/l10n/cs_CZ/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/files_versions.po b/l10n/cs_CZ/files_versions.po index 30a2abc5e8..3b0f8c58b4 100644 --- a/l10n/cs_CZ/files_versions.po +++ b/l10n/cs_CZ/files_versions.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-01 00:05+0100\n" -"PO-Revision-Date: 2013-02-28 07:20+0000\n" -"Last-Translator: Tomáš Chvátal \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \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" @@ -42,11 +42,11 @@ msgstr "sehlhání" msgid "File %s could not be reverted to version %s" msgstr "Soubor %s nemohl být navrácen na verzi %s" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "Nejsou dostupné žádné starší verze" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "Nezadána cesta" diff --git a/l10n/cs_CZ/lib.po b/l10n/cs_CZ/lib.po index 85be4f2771..17804f61f9 100644 --- a/l10n/cs_CZ/lib.po +++ b/l10n/cs_CZ/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" -"Last-Translator: Tomáš Chvátal \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \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" diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index fa50cfa015..e70ffa9107 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -126,44 +126,44 @@ msgstr "Aktualizováno" msgid "Saving..." msgstr "Ukládám..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "smazáno" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "zpět" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "Nelze odebrat uživatele" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Skupiny" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Správa skupiny" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Smazat" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "přidat skupinu" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "Musíte zadat platné uživatelské jméno" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "Chyba při vytváření užiatele" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "Musíte zadat platné heslo" diff --git a/l10n/cs_CZ/user_ldap.po b/l10n/cs_CZ/user_ldap.po index 659bcb2da7..12fe24c77a 100644 --- a/l10n/cs_CZ/user_ldap.po +++ b/l10n/cs_CZ/user_ldap.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" -"Last-Translator: Tomáš Chvátal \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \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" diff --git a/l10n/cs_CZ/user_webdavauth.po b/l10n/cs_CZ/user_webdavauth.po index 28b3d2f8f1..f2e2d7c56c 100644 --- a/l10n/cs_CZ/user_webdavauth.po +++ b/l10n/cs_CZ/user_webdavauth.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-16 00:19+0100\n" -"PO-Revision-Date: 2013-01-15 09:06+0000\n" -"Last-Translator: Tomáš Chvátal \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \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" @@ -26,7 +26,7 @@ msgstr "Ověření WebDAV" msgid "URL: http://" msgstr "URL: http://" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/da/core.po b/l10n/da/core.po index daab9063b3..23125c78c5 100644 --- a/l10n/da/core.po +++ b/l10n/da/core.po @@ -18,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" -"Last-Translator: Bawl \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"Last-Translator: I Robot \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" @@ -171,77 +171,77 @@ msgstr "December" msgid "Settings" msgstr "Indstillinger" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "sekunder siden" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "1 minut siden" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{minutes} minutter siden" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "1 time siden" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{hours} timer siden" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "i dag" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "i går" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "{days} dage siden" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "sidste måned" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "{months} måneder siden" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "måneder siden" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "sidste år" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "år siden" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Vælg" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "OK" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Fortryd" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Nej" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Vælg" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Ja" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "OK" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Nej" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -544,23 +544,23 @@ msgstr "vil blive brugt" msgid "Database user" msgstr "Databasebruger" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Databasekodeord" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Navn på database" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Database tabelplads" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Databasehost" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Afslut opsætning" diff --git a/l10n/da/files.po b/l10n/da/files.po index 4e78dc104b..00f0e194f0 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:09+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/files_encryption.po b/l10n/da/files_encryption.po index 416d8486d5..11ad02b829 100644 --- a/l10n/da/files_encryption.po +++ b/l10n/da/files_encryption.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-12 15:10+0100\n" -"PO-Revision-Date: 2013-02-12 09:46+0000\n" -"Last-Translator: Frederik Lassen \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \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" diff --git a/l10n/da/files_external.po b/l10n/da/files_external.po index cc8e5b1025..c95d8c7f59 100644 --- a/l10n/da/files_external.po +++ b/l10n/da/files_external.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-31 00:01+0100\n" -"PO-Revision-Date: 2013-03-30 18:00+0000\n" -"Last-Translator: Bawl \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \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" @@ -41,13 +41,13 @@ msgstr "Angiv venligst en valid Dropbox app nøgle og hemmelighed" msgid "Error configuring Google Drive storage" msgstr "Fejl ved konfiguration af Google Drive plads" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr " Advarsel: \"smbclient\" ikke er installeret. Montering af CIFS / SMB delinger er ikke muligt. Spørg din systemadministrator om at installere det." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/da/files_sharing.po b/l10n/da/files_sharing.po index 99b2cdf8e9..b00e3af3fd 100644 --- a/l10n/da/files_sharing.po +++ b/l10n/da/files_sharing.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-24 02:01+0200\n" -"PO-Revision-Date: 2012-09-23 08:48+0000\n" -"Last-Translator: Morten Juhl-Johansen Zölde-Fejér \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \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" @@ -27,24 +27,24 @@ msgstr "Kodeord" msgid "Submit" msgstr "Send" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s delte mappen %s med dig" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s delte filen %s med dig" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Download" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "Forhåndsvisning ikke tilgængelig for" -#: templates/public.php:37 +#: templates/public.php:50 msgid "web services under your control" msgstr "Webtjenester under din kontrol" diff --git a/l10n/da/files_trashbin.po b/l10n/da/files_trashbin.po index 5c96449c4b..8d9f732439 100644 --- a/l10n/da/files_trashbin.po +++ b/l10n/da/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/files_versions.po b/l10n/da/files_versions.po index 6b6ab2ac91..ca8cb9848d 100644 --- a/l10n/da/files_versions.po +++ b/l10n/da/files_versions.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-05 00:18+0100\n" -"PO-Revision-Date: 2013-03-04 18:20+0000\n" -"Last-Translator: cronner \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \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" diff --git a/l10n/da/lib.po b/l10n/da/lib.po index ef2223373c..43d95936cd 100644 --- a/l10n/da/lib.po +++ b/l10n/da/lib.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" -"Last-Translator: cronner \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \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" diff --git a/l10n/da/settings.po b/l10n/da/settings.po index 282d822bde..4381377afe 100644 --- a/l10n/da/settings.po +++ b/l10n/da/settings.po @@ -19,8 +19,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -132,44 +132,44 @@ msgstr "Opdateret" msgid "Saving..." msgstr "Gemmer..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "Slettet" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "fortryd" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "Kan ikke fjerne bruger" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Grupper" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Gruppe Administrator" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Slet" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "Tilføj gruppe" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "Et gyldigt brugernavn skal angives" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "Fejl ved oprettelse af bruger" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "En gyldig adgangskode skal angives" diff --git a/l10n/da/user_ldap.po b/l10n/da/user_ldap.po index 6ac95f9ce5..e08e81e933 100644 --- a/l10n/da/user_ldap.po +++ b/l10n/da/user_ldap.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/user_webdavauth.po b/l10n/da/user_webdavauth.po index 32a2a3729a..3ca1e0bfc8 100644 --- a/l10n/da/user_webdavauth.po +++ b/l10n/da/user_webdavauth.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-30 00:23+0100\n" -"PO-Revision-Date: 2013-01-29 12:07+0000\n" -"Last-Translator: Morten Juhl-Johansen Zölde-Fejér \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \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" @@ -27,7 +27,7 @@ msgstr "WebDAV-godkendelse" msgid "URL: http://" msgstr "URL: http://" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/de/core.po b/l10n/de/core.po index d9832487b0..e2d6e7adb3 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -24,9 +24,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" -"Last-Translator: Mirodin \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -177,77 +177,77 @@ msgstr "Dezember" msgid "Settings" msgstr "Einstellungen" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "Gerade eben" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "vor einer Minute" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "Vor {minutes} Minuten" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "Vor einer Stunde" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "Vor {hours} Stunden" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "Heute" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "Gestern" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "Vor {days} Tag(en)" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "Letzten Monat" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "Vor {months} Monaten" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "Vor Monaten" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "Letztes Jahr" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "Vor Jahren" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Auswählen" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "OK" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Abbrechen" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Nein" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Auswählen" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Ja" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "OK" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Nein" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -550,23 +550,23 @@ msgstr "wird verwendet" msgid "Database user" msgstr "Datenbank-Benutzer" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Datenbank-Passwort" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Datenbank-Name" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Datenbank-Tablespace" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Datenbank-Host" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Installation abschließen" diff --git a/l10n/de/files.po b/l10n/de/files.po index 56d2bffd5a..478a17ef0e 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -29,9 +29,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-12 02:09+0200\n" -"PO-Revision-Date: 2013-04-11 06:50+0000\n" -"Last-Translator: kabum \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/de/files_encryption.po b/l10n/de/files_encryption.po index 3cfd6711a2..22a2714c2d 100644 --- a/l10n/de/files_encryption.po +++ b/l10n/de/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-18 00:05+0100\n" -"PO-Revision-Date: 2013-02-17 14:12+0000\n" -"Last-Translator: Marcel Kühlhorn \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/de/files_external.po b/l10n/de/files_external.po index 526b65c881..ea0bfa1134 100644 --- a/l10n/de/files_external.po +++ b/l10n/de/files_external.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 13:00+0000\n" -"Last-Translator: Mirodin \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -43,13 +43,13 @@ msgstr "Bitte trage einen gültigen Dropbox-App-Key mit Secret ein." msgid "Error configuring Google Drive storage" msgstr "Fehler beim Einrichten von Google Drive" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Warnung: \"smbclient\" ist nicht installiert. Das Einhängen von CIFS/SMB-Freigaben ist nicht möglich. Bitte Deinen System-Administrator, dies zu installieren." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/de/files_sharing.po b/l10n/de/files_sharing.po index b48b1dfa72..88ae066167 100644 --- a/l10n/de/files_sharing.po +++ b/l10n/de/files_sharing.po @@ -12,10 +12,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-20 02:02+0200\n" -"PO-Revision-Date: 2012-10-19 21:36+0000\n" -"Last-Translator: Mirodin \n" -"Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -30,24 +30,24 @@ msgstr "Passwort" msgid "Submit" msgstr "Absenden" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s hat den Ordner %s mit Dir geteilt" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s hat die Datei %s mit Dir geteilt" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Download" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "Es ist keine Vorschau verfügbar für" -#: templates/public.php:35 +#: templates/public.php:50 msgid "web services under your control" msgstr "Web-Services unter Deiner Kontrolle" diff --git a/l10n/de/files_trashbin.po b/l10n/de/files_trashbin.po index 4685f7fcd0..1a4ec5faa2 100644 --- a/l10n/de/files_trashbin.po +++ b/l10n/de/files_trashbin.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files_versions.po b/l10n/de/files_versions.po index c62bef6afd..629272de0a 100644 --- a/l10n/de/files_versions.po +++ b/l10n/de/files_versions.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-23 00:02+0100\n" -"PO-Revision-Date: 2013-03-22 09:34+0000\n" -"Last-Translator: Mirodin \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/de/lib.po b/l10n/de/lib.po index 28b2f9aa32..f3919bae2a 100644 --- a/l10n/de/lib.po +++ b/l10n/de/lib.po @@ -17,9 +17,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" -"Last-Translator: Mirodin \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index b7ba13672a..141407e519 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -27,8 +27,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" @@ -140,44 +140,44 @@ msgstr "Aktualisiert" msgid "Saving..." msgstr "Speichern..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "gelöscht" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "rückgängig machen" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "Benutzer konnte nicht entfernt werden." -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Gruppen" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Gruppenadministrator" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Löschen" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "Gruppe hinzufügen" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "Es muss ein gültiger Benutzername angegeben werden" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "Beim Anlegen des Benutzers ist ein Fehler aufgetreten" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "Es muss ein gültiges Passwort angegeben werden" diff --git a/l10n/de/user_ldap.po b/l10n/de/user_ldap.po index 878c9aa1a8..5c5672e57a 100644 --- a/l10n/de/user_ldap.po +++ b/l10n/de/user_ldap.po @@ -17,9 +17,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" -"Last-Translator: Mirodin \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/de/user_webdavauth.po b/l10n/de/user_webdavauth.po index d2653f1685..3291e0d7af 100644 --- a/l10n/de/user_webdavauth.po +++ b/l10n/de/user_webdavauth.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-21 00:14+0100\n" -"PO-Revision-Date: 2013-02-20 22:10+0000\n" -"Last-Translator: Mirodin \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po index 1cda6c3260..260be36643 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_DE/core.po @@ -28,9 +28,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" -"Last-Translator: Mirodin \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -181,77 +181,77 @@ msgstr "Dezember" msgid "Settings" msgstr "Einstellungen" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "Gerade eben" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "Vor 1 Minute" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "Vor {minutes} Minuten" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "Vor einer Stunde" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "Vor {hours} Stunden" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "Heute" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "Gestern" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "Vor {days} Tag(en)" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "Letzten Monat" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "Vor {months} Monaten" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "Vor Monaten" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "Letztes Jahr" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "Vor Jahren" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Auswählen" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "OK" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Abbrechen" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Nein" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Auswählen" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Ja" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "OK" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Nein" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -554,23 +554,23 @@ msgstr "wird verwendet" msgid "Database user" msgstr "Datenbank-Benutzer" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Datenbank-Passwort" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Datenbank-Name" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Datenbank-Tablespace" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Datenbank-Host" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Installation abschließen" diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index c1af88b2ac..914ae61dd5 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/files.po @@ -34,9 +34,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-11 02:08+0200\n" -"PO-Revision-Date: 2013-04-10 21:50+0000\n" -"Last-Translator: a.tangemann \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/de_DE/files_encryption.po b/l10n/de_DE/files_encryption.po index f69dc4f485..c9fc29bee5 100644 --- a/l10n/de_DE/files_encryption.po +++ b/l10n/de_DE/files_encryption.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-17 00:24+0100\n" -"PO-Revision-Date: 2013-02-16 23:00+0000\n" -"Last-Translator: Marcel Kühlhorn \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/de_DE/files_external.po b/l10n/de_DE/files_external.po index c8c9c48d79..e2ff7d2b24 100644 --- a/l10n/de_DE/files_external.po +++ b/l10n/de_DE/files_external.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 13:00+0000\n" -"Last-Translator: a.tangemann \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -43,13 +43,13 @@ msgstr "Bitte tragen Sie einen gültigen Dropbox-App-Key mit Secret ein." msgid "Error configuring Google Drive storage" msgstr "Fehler beim Einrichten von Google Drive" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Warnung: \"smbclient\" ist nicht installiert. Das Einhängen von CIFS/SMB-Freigaben ist nicht möglich. Bitten Sie Ihren Systemadministrator, dies zu installieren." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/de_DE/files_sharing.po b/l10n/de_DE/files_sharing.po index c1d9610ac7..acb0e4b391 100644 --- a/l10n/de_DE/files_sharing.po +++ b/l10n/de_DE/files_sharing.po @@ -12,10 +12,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-20 02:02+0200\n" -"PO-Revision-Date: 2012-10-19 21:36+0000\n" -"Last-Translator: Mirodin \n" -"Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -30,24 +30,24 @@ msgstr "Passwort" msgid "Submit" msgstr "Absenden" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s hat den Ordner %s mit Ihnen geteilt" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s hat die Datei %s mit Ihnen geteilt" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Download" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "Es ist keine Vorschau verfügbar für" -#: templates/public.php:35 +#: templates/public.php:50 msgid "web services under your control" msgstr "Web-Services unter Ihrer Kontrolle" diff --git a/l10n/de_DE/files_trashbin.po b/l10n/de_DE/files_trashbin.po index ad4f0a4737..982b076750 100644 --- a/l10n/de_DE/files_trashbin.po +++ b/l10n/de_DE/files_trashbin.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-11 02:08+0200\n" -"PO-Revision-Date: 2013-04-10 21:41+0000\n" -"Last-Translator: a.tangemann \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/de_DE/files_versions.po b/l10n/de_DE/files_versions.po index 934aa7d67f..9ff7bc637c 100644 --- a/l10n/de_DE/files_versions.po +++ b/l10n/de_DE/files_versions.po @@ -17,9 +17,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-23 21:00+0000\n" -"Last-Translator: traductor \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/de_DE/lib.po b/l10n/de_DE/lib.po index c6b2ab3070..a8a37f9f19 100644 --- a/l10n/de_DE/lib.po +++ b/l10n/de_DE/lib.po @@ -18,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" -"Last-Translator: Mirodin \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index fea97607cc..91dc723e69 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.po @@ -32,9 +32,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" -"Last-Translator: a.tangemann \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -145,44 +145,44 @@ msgstr "Aktualisiert" msgid "Saving..." msgstr "Speichern..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "gelöscht" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "rückgängig machen" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "Der Benutzer konnte nicht entfernt werden." -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Gruppen" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Gruppenadministrator" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Löschen" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "Gruppe hinzufügen" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "Es muss ein gültiger Benutzername angegeben werden" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "Beim Erstellen des Benutzers ist ein Fehler aufgetreten" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "Es muss ein gültiges Passwort angegeben werden" diff --git a/l10n/de_DE/user_ldap.po b/l10n/de_DE/user_ldap.po index 0c6b3cde9c..6e5351670d 100644 --- a/l10n/de_DE/user_ldap.po +++ b/l10n/de_DE/user_ldap.po @@ -21,9 +21,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" -"Last-Translator: traductor \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/de_DE/user_webdavauth.po b/l10n/de_DE/user_webdavauth.po index da76dff3ac..ef77fdbbd5 100644 --- a/l10n/de_DE/user_webdavauth.po +++ b/l10n/de_DE/user_webdavauth.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-21 00:03+0100\n" -"PO-Revision-Date: 2013-03-20 08:40+0000\n" -"Last-Translator: traductor \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/el/core.po b/l10n/el/core.po index 4a9080289c..3bfd3322dd 100644 --- a/l10n/el/core.po +++ b/l10n/el/core.po @@ -17,9 +17,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-10 02:08+0200\n" -"PO-Revision-Date: 2013-04-09 01:20+0000\n" -"Last-Translator: Wasilis \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -170,55 +170,55 @@ msgstr "Δεκέμβριος" msgid "Settings" msgstr "Ρυθμίσεις" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "δευτερόλεπτα πριν" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "1 λεπτό πριν" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{minutes} λεπτά πριν" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "1 ώρα πριν" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{hours} ώρες πριν" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "σήμερα" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "χτες" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "{days} ημέρες πριν" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "τελευταίο μήνα" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "{months} μήνες πριν" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "μήνες πριν" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "τελευταίο χρόνο" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "χρόνια πριν" @@ -543,23 +543,23 @@ msgstr "θα χρησιμοποιηθούν" msgid "Database user" msgstr "Χρήστης της βάσης δεδομένων" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Συνθηματικό βάσης δεδομένων" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Όνομα βάσης δεδομένων" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Κενά Πινάκων Βάσης Δεδομένων" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Διακομιστής βάσης δεδομένων" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Ολοκλήρωση εγκατάστασης" diff --git a/l10n/el/files.po b/l10n/el/files.po index 1ec53c03b2..f41bc5e854 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.po @@ -17,9 +17,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-12 02:09+0200\n" -"PO-Revision-Date: 2013-04-11 13:20+0000\n" -"Last-Translator: Petros Kyladitis \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/el/files_encryption.po b/l10n/el/files_encryption.po index 7196402db4..a274a691c3 100644 --- a/l10n/el/files_encryption.po +++ b/l10n/el/files_encryption.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/files_external.po b/l10n/el/files_external.po index ae3b35b0c8..13a2353cb9 100644 --- a/l10n/el/files_external.po +++ b/l10n/el/files_external.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-10 02:08+0200\n" -"PO-Revision-Date: 2013-04-09 01:50+0000\n" -"Last-Translator: Wasilis \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/el/files_sharing.po b/l10n/el/files_sharing.po index d5a761b6f7..b6fd051aa3 100644 --- a/l10n/el/files_sharing.po +++ b/l10n/el/files_sharing.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-28 23:34+0200\n" -"PO-Revision-Date: 2012-09-28 01:07+0000\n" -"Last-Translator: Dimitris M. \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,24 +28,24 @@ msgstr "Συνθηματικό" msgid "Submit" msgstr "Καταχώρηση" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s μοιράστηκε τον φάκελο %s μαζί σας" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s μοιράστηκε το αρχείο %s μαζί σας" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Λήψη" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "Δεν υπάρχει διαθέσιμη προεπισκόπηση για" -#: templates/public.php:37 +#: templates/public.php:50 msgid "web services under your control" msgstr "υπηρεσίες δικτύου υπό τον έλεγχό σας" diff --git a/l10n/el/files_trashbin.po b/l10n/el/files_trashbin.po index b02cc3bed5..bac8c7a3fb 100644 --- a/l10n/el/files_trashbin.po +++ b/l10n/el/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/files_versions.po b/l10n/el/files_versions.po index 2430051648..0891a90b78 100644 --- a/l10n/el/files_versions.po +++ b/l10n/el/files_versions.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-10 02:08+0200\n" -"PO-Revision-Date: 2013-04-09 01:50+0000\n" -"Last-Translator: Wasilis \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/el/lib.po b/l10n/el/lib.po index 31df5b65e9..ecbe495234 100644 --- a/l10n/el/lib.po +++ b/l10n/el/lib.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-10 02:08+0200\n" -"PO-Revision-Date: 2013-04-09 01:50+0000\n" -"Last-Translator: Wasilis \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/el/settings.po b/l10n/el/settings.po index ab720d7943..4cbc650486 100644 --- a/l10n/el/settings.po +++ b/l10n/el/settings.po @@ -21,9 +21,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-10 02:08+0200\n" -"PO-Revision-Date: 2013-04-09 01:40+0000\n" -"Last-Translator: Wasilis \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -134,44 +134,44 @@ msgstr "Ενημερώθηκε" msgid "Saving..." msgstr "Αποθήκευση..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "διαγράφηκε" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "αναίρεση" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "Αδυναμία αφαίρεση χρήστη" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Ομάδες" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Ομάδα Διαχειριστών" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Διαγραφή" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "προσθήκη ομάδας" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "Πρέπει να δοθεί έγκυρο όνομα χρήστη" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "Σφάλμα δημιουργίας χρήστη" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "Πρέπει να δοθεί έγκυρο συνθηματικό" diff --git a/l10n/el/user_ldap.po b/l10n/el/user_ldap.po index a2995398ea..063a5a8590 100644 --- a/l10n/el/user_ldap.po +++ b/l10n/el/user_ldap.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/user_webdavauth.po b/l10n/el/user_webdavauth.po index ae9fa402bf..12b784c7f8 100644 --- a/l10n/el/user_webdavauth.po +++ b/l10n/el/user_webdavauth.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-16 00:19+0100\n" -"PO-Revision-Date: 2013-01-15 08:10+0000\n" -"Last-Translator: Marios Bekatoros <>\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,7 +29,7 @@ msgstr "Αυθεντικοποίηση μέσω WebDAV " msgid "URL: http://" msgstr "URL: http://" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/eo/core.po b/l10n/eo/core.po index 0bbc538411..c97c765e9c 100644 --- a/l10n/eo/core.po +++ b/l10n/eo/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -163,77 +163,77 @@ msgstr "Decembro" msgid "Settings" msgstr "Agordo" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "sekundoj antaŭe" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "antaŭ 1 minuto" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "antaŭ {minutes} minutoj" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "antaŭ 1 horo" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "antaŭ {hours} horoj" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "hodiaŭ" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "hieraŭ" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "antaŭ {days} tagoj" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "lastamonate" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "antaŭ {months} monatoj" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "monatoj antaŭe" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "lastajare" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "jaroj antaŭe" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Elekti" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Akcepti" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Nuligi" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Ne" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Elekti" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Jes" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "Akcepti" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Ne" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -536,23 +536,23 @@ msgstr "estos uzata" msgid "Database user" msgstr "Datumbaza uzanto" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Datumbaza pasvorto" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Datumbaza nomo" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Datumbaza tabelospaco" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Datumbaza gastigo" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Fini la instalon" diff --git a/l10n/eo/files.po b/l10n/eo/files.po index 12e93af73b..7b9ca1937b 100644 --- a/l10n/eo/files.po +++ b/l10n/eo/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:09+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/files_encryption.po b/l10n/eo/files_encryption.po index 1a1260fd41..48e48cd33d 100644 --- a/l10n/eo/files_encryption.po +++ b/l10n/eo/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/files_external.po b/l10n/eo/files_external.po index 0483d097fd..c9695b57bf 100644 --- a/l10n/eo/files_external.po +++ b/l10n/eo/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 13:00+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -38,13 +38,13 @@ msgstr "Bonvolu provizi ŝlosilon de la aplikaĵo Dropbox validan kaj sekretan." msgid "Error configuring Google Drive storage" msgstr "Eraro dum agordado de la memorservo Google Drive" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/eo/files_sharing.po b/l10n/eo/files_sharing.po index e9778f8450..b2d00538f1 100644 --- a/l10n/eo/files_sharing.po +++ b/l10n/eo/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-14 02:05+0200\n" -"PO-Revision-Date: 2012-10-13 03:01+0000\n" -"Last-Translator: Mariano \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,24 +26,24 @@ msgstr "Pasvorto" msgid "Submit" msgstr "Sendi" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s kunhavigis la dosierujon %s kun vi" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s kunhavigis la dosieron %s kun vi" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Elŝuti" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "Ne haveblas antaŭvido por" -#: templates/public.php:35 +#: templates/public.php:50 msgid "web services under your control" msgstr "TTT-servoj regataj de vi" diff --git a/l10n/eo/files_trashbin.po b/l10n/eo/files_trashbin.po index 358cb293a8..8d0d618725 100644 --- a/l10n/eo/files_trashbin.po +++ b/l10n/eo/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/files_versions.po b/l10n/eo/files_versions.po index f065928dfb..a9bf35481c 100644 --- a/l10n/eo/files_versions.po +++ b/l10n/eo/files_versions.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-02 00:03+0200\n" -"PO-Revision-Date: 2013-04-01 18:50+0000\n" -"Last-Translator: kristjan \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/eo/lib.po b/l10n/eo/lib.po index 81adfbc7bb..9fc0db90fd 100644 --- a/l10n/eo/lib.po +++ b/l10n/eo/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/settings.po b/l10n/eo/settings.po index b827ba5c85..c623ce092f 100644 --- a/l10n/eo/settings.po +++ b/l10n/eo/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -123,44 +123,44 @@ msgstr "" msgid "Saving..." msgstr "Konservante..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "forigita" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "malfari" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Grupoj" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Grupadministranto" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Forigi" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" diff --git a/l10n/eo/user_ldap.po b/l10n/eo/user_ldap.po index 05c28a8824..6aeb3085b6 100644 --- a/l10n/eo/user_ldap.po +++ b/l10n/eo/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/user_webdavauth.po b/l10n/eo/user_webdavauth.po index d9f66ba517..c18903205f 100644 --- a/l10n/eo/user_webdavauth.po +++ b/l10n/eo/user_webdavauth.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-21 00:04+0100\n" -"PO-Revision-Date: 2013-01-20 01:16+0000\n" -"Last-Translator: Mariano \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,7 +27,7 @@ msgstr "WebDAV-aŭtentigo" msgid "URL: http://" msgstr "URL: http://" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/es/core.po b/l10n/es/core.po index 6603509b33..72132b21e0 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -21,9 +21,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" -"Last-Translator: juanman \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -174,77 +174,77 @@ msgstr "Diciembre" msgid "Settings" msgstr "Ajustes" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "hace segundos" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "hace 1 minuto" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "hace {minutes} minutos" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "Hace 1 hora" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "Hace {hours} horas" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "hoy" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "ayer" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "hace {days} días" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "mes pasado" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "Hace {months} meses" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "hace meses" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "año pasado" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "hace años" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Seleccionar" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Aceptar" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Cancelar" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "No" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Seleccionar" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Sí" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "Aceptar" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "No" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -547,23 +547,23 @@ msgstr "se utilizarán" msgid "Database user" msgstr "Usuario de la base de datos" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Contraseña de la base de datos" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Nombre de la base de datos" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Espacio de tablas de la base de datos" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Host de la base de datos" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Completar la instalación" diff --git a/l10n/es/files.po b/l10n/es/files.po index 7f43e11c29..a448b5bc8a 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -21,9 +21,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-10 02:08+0200\n" -"PO-Revision-Date: 2013-04-09 17:20+0000\n" -"Last-Translator: telco2011 \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/es/files_encryption.po b/l10n/es/files_encryption.po index f4c68c14f4..5c90271db3 100644 --- a/l10n/es/files_encryption.po +++ b/l10n/es/files_encryption.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/files_external.po b/l10n/es/files_external.po index e61835c6ea..b6fbbbeafc 100644 --- a/l10n/es/files_external.po +++ b/l10n/es/files_external.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 13:00+0000\n" -"Last-Translator: Marcos \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -42,13 +42,13 @@ msgstr "Por favor , proporcione un secreto y una contraseña válida de la app D msgid "Error configuring Google Drive storage" msgstr "Error configurando el almacenamiento de Google Drive" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Advertencia: El cliente smb (smbclient) no se encuentra instalado. El montado de archivos o ficheros CIFS/SMB no es posible. Por favor pida al administrador de su sistema que lo instale." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/es/files_sharing.po b/l10n/es/files_sharing.po index 4b1847f27a..46b4d66f10 100644 --- a/l10n/es/files_sharing.po +++ b/l10n/es/files_sharing.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-24 02:01+0200\n" -"PO-Revision-Date: 2012-09-23 09:49+0000\n" -"Last-Translator: Rubén Trujillo \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,24 +28,24 @@ msgstr "Contraseña" msgid "Submit" msgstr "Enviar" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s compartió la carpeta %s contigo" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s compartió el fichero %s contigo" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Descargar" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "No hay vista previa disponible para" -#: templates/public.php:37 +#: templates/public.php:50 msgid "web services under your control" msgstr "Servicios web bajo su control" diff --git a/l10n/es/files_trashbin.po b/l10n/es/files_trashbin.po index 1b0f8f70f3..28a3cb9ded 100644 --- a/l10n/es/files_trashbin.po +++ b/l10n/es/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/files_versions.po b/l10n/es/files_versions.po index 214d638d33..a69a1d1a87 100644 --- a/l10n/es/files_versions.po +++ b/l10n/es/files_versions.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-01 00:05+0100\n" -"PO-Revision-Date: 2013-02-28 22:51+0000\n" -"Last-Translator: vicentevrl \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -46,11 +46,11 @@ msgstr "fallo" msgid "File %s could not be reverted to version %s" msgstr "El archivo %s no puede ser revertido a la version %s" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "No hay versiones antiguas disponibles" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "Ruta no especificada" diff --git a/l10n/es/lib.po b/l10n/es/lib.po index eb527ee4d9..cb2a914372 100644 --- a/l10n/es/lib.po +++ b/l10n/es/lib.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" -"Last-Translator: Marcos \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index 04888a9f08..e9959550b2 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -25,8 +25,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -138,44 +138,44 @@ msgstr "Actualizado" msgid "Saving..." msgstr "Guardando..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "borrado" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "deshacer" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "No se puede quitar el usuario" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Grupos" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Grupo admin" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Eliminar" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "Añadir Grupo" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "Se debe usar un nombre de usuario valido" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "Error al crear usuario" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "Se debe usar una contraseña valida" diff --git a/l10n/es/user_ldap.po b/l10n/es/user_ldap.po index 998243e1cf..25a063bf8f 100644 --- a/l10n/es/user_ldap.po +++ b/l10n/es/user_ldap.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" -"Last-Translator: Raul Fernandez Garcia \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/es/user_webdavauth.po b/l10n/es/user_webdavauth.po index c3d87548a9..8104595c79 100644 --- a/l10n/es/user_webdavauth.po +++ b/l10n/es/user_webdavauth.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-21 00:04+0100\n" -"PO-Revision-Date: 2013-01-20 02:31+0000\n" -"Last-Translator: Agustin Ferrario \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,7 +28,7 @@ msgstr "Autenticación de WevDAV" msgid "URL: http://" msgstr "URL: http://" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/es_AR/core.po b/l10n/es_AR/core.po index 472db3180b..cf82c5251a 100644 --- a/l10n/es_AR/core.po +++ b/l10n/es_AR/core.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" -"Last-Translator: cjtess \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -163,77 +163,77 @@ msgstr "Diciembre" msgid "Settings" msgstr "Ajustes" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "segundos atrás" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "hace 1 minuto" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "hace {minutes} minutos" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "Hace 1 hora" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{hours} horas atrás" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "hoy" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "ayer" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "hace {days} días" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "el mes pasado" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "{months} meses atrás" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "meses atrás" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "el año pasado" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "años atrás" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Elegir" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Aceptar" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Cancelar" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "No" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Elegir" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Sí" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "Aceptar" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "No" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -536,23 +536,23 @@ msgstr "se utilizarán" msgid "Database user" msgstr "Usuario de la base de datos" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Contraseña de la base de datos" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Nombre de la base de datos" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Espacio de tablas de la base de datos" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Host de la base de datos" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Completar la instalación" diff --git a/l10n/es_AR/files.po b/l10n/es_AR/files.po index acdb08fc75..4f2ae47085 100644 --- a/l10n/es_AR/files.po +++ b/l10n/es_AR/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:09+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/files_encryption.po b/l10n/es_AR/files_encryption.po index be26d5b095..a63950a802 100644 --- a/l10n/es_AR/files_encryption.po +++ b/l10n/es_AR/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-12 00:20+0100\n" -"PO-Revision-Date: 2013-02-11 16:00+0000\n" -"Last-Translator: cjtess \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/es_AR/files_external.po b/l10n/es_AR/files_external.po index fe89f32163..c2c6a9eb63 100644 --- a/l10n/es_AR/files_external.po +++ b/l10n/es_AR/files_external.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 13:00+0000\n" -"Last-Translator: juliabis \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -40,13 +40,13 @@ msgstr "Por favor, proporcioná un secreto y una contraseña válida para la apl msgid "Error configuring Google Drive storage" msgstr "Error al configurar el almacenamiento de Google Drive" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Advertencia: El cliente smb (smbclient) no se encuentra instalado. El montado de archivos o ficheros CIFS/SMB no es posible. Por favor pida al administrador de su sistema que lo instale." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/es_AR/files_sharing.po b/l10n/es_AR/files_sharing.po index 62233486fb..4c7375e8da 100644 --- a/l10n/es_AR/files_sharing.po +++ b/l10n/es_AR/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-25 02:02+0200\n" -"PO-Revision-Date: 2012-09-24 04:38+0000\n" -"Last-Translator: cjtess \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,24 +26,24 @@ msgstr "Contraseña" msgid "Submit" msgstr "Enviar" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s compartió la carpeta %s con vos" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s compartió el archivo %s con vos" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Descargar" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "La vista preliminar no está disponible para" -#: templates/public.php:37 +#: templates/public.php:50 msgid "web services under your control" msgstr "servicios web controlados por vos" diff --git a/l10n/es_AR/files_trashbin.po b/l10n/es_AR/files_trashbin.po index 6fd3a47fca..4f423c89d3 100644 --- a/l10n/es_AR/files_trashbin.po +++ b/l10n/es_AR/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/files_versions.po b/l10n/es_AR/files_versions.po index db63d14a04..af1d74768e 100644 --- a/l10n/es_AR/files_versions.po +++ b/l10n/es_AR/files_versions.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-01 00:05+0100\n" -"PO-Revision-Date: 2013-02-28 00:50+0000\n" -"Last-Translator: juliabis \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -43,11 +43,11 @@ msgstr "error" msgid "File %s could not be reverted to version %s" msgstr "El archivo %s no pudo ser revertido a la versión %s" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "No hay versiones antiguas disponibles" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "Ruta de acceso no especificada" diff --git a/l10n/es_AR/lib.po b/l10n/es_AR/lib.po index 8284b524c1..6105dc68ff 100644 --- a/l10n/es_AR/lib.po +++ b/l10n/es_AR/lib.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" -"Last-Translator: cjtess \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/es_AR/settings.po b/l10n/es_AR/settings.po index a23143a63b..d9e2750935 100644 --- a/l10n/es_AR/settings.po +++ b/l10n/es_AR/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -124,44 +124,44 @@ msgstr "Actualizado" msgid "Saving..." msgstr "Guardando..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "borrado" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "deshacer" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "Imposible remover usuario" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Grupos" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Grupo Administrador" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Borrar" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "Agregar grupo" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "Debe ingresar un nombre de usuario válido" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "Error creando usuario" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "Debe ingresar una contraseña válida" diff --git a/l10n/es_AR/user_ldap.po b/l10n/es_AR/user_ldap.po index 69b9d37f70..b539d42812 100644 --- a/l10n/es_AR/user_ldap.po +++ b/l10n/es_AR/user_ldap.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" -"Last-Translator: cjtess \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/es_AR/user_webdavauth.po b/l10n/es_AR/user_webdavauth.po index 6c88cac3fd..3b62ceea0b 100644 --- a/l10n/es_AR/user_webdavauth.po +++ b/l10n/es_AR/user_webdavauth.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-31 00:27+0100\n" -"PO-Revision-Date: 2013-01-30 16:22+0000\n" -"Last-Translator: cjtess \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,7 +28,7 @@ msgstr "Autenticación de WevDAV" msgid "URL: http://" msgstr "URL: http://" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/et_EE/core.po b/l10n/et_EE/core.po index 4265067672..e0224d580e 100644 --- a/l10n/et_EE/core.po +++ b/l10n/et_EE/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-10 02:08+0200\n" -"PO-Revision-Date: 2013-04-09 09:40+0000\n" -"Last-Translator: pisike.sipelgas \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -162,55 +162,55 @@ msgstr "Detsember" msgid "Settings" msgstr "Seaded" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "sekundit tagasi" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "1 minut tagasi" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{minutes} minutit tagasi" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "1 tund tagasi" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{hours} tundi tagasi" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "täna" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "eile" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "{days} päeva tagasi" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "viimasel kuul" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "{months} kuud tagasi" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "kuu tagasi" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "viimasel aastal" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "aastat tagasi" @@ -535,23 +535,23 @@ msgstr "kasutatakse" msgid "Database user" msgstr "Andmebaasi kasutaja" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Andmebaasi parool" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Andmebasi nimi" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Andmebaasi tabeliruum" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Andmebaasi host" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Lõpeta seadistamine" diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index 72fabba273..757224d870 100644 --- a/l10n/et_EE/files.po +++ b/l10n/et_EE/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-10 02:08+0200\n" -"PO-Revision-Date: 2013-04-09 09:20+0000\n" -"Last-Translator: pisike.sipelgas \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/et_EE/files_encryption.po b/l10n/et_EE/files_encryption.po index c2fe900d3a..99746b2373 100644 --- a/l10n/et_EE/files_encryption.po +++ b/l10n/et_EE/files_encryption.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-13 00:03+0100\n" -"PO-Revision-Date: 2013-02-12 18:01+0000\n" -"Last-Translator: Rivo Zängov \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/et_EE/files_external.po b/l10n/et_EE/files_external.po index f9116417c5..69d1f03a4c 100644 --- a/l10n/et_EE/files_external.po +++ b/l10n/et_EE/files_external.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-10 02:08+0200\n" -"PO-Revision-Date: 2013-04-09 09:50+0000\n" -"Last-Translator: pisike.sipelgas \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/et_EE/files_sharing.po b/l10n/et_EE/files_sharing.po index c0302f73c0..9174858925 100644 --- a/l10n/et_EE/files_sharing.po +++ b/l10n/et_EE/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-30 00:01+0100\n" -"PO-Revision-Date: 2012-10-29 22:43+0000\n" -"Last-Translator: Rivo Zängov \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,24 +26,24 @@ msgstr "Parool" msgid "Submit" msgstr "Saada" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s jagas sinuga kausta %s" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s jagas sinuga faili %s" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Lae alla" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "Eelvaadet pole saadaval" -#: templates/public.php:35 +#: templates/public.php:50 msgid "web services under your control" msgstr "veebitenused sinu kontrolli all" diff --git a/l10n/et_EE/files_trashbin.po b/l10n/et_EE/files_trashbin.po index 5c61192eb5..e8b7bd59bc 100644 --- a/l10n/et_EE/files_trashbin.po +++ b/l10n/et_EE/files_trashbin.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-10 02:08+0200\n" -"PO-Revision-Date: 2013-04-09 07:00+0000\n" -"Last-Translator: pisike.sipelgas \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/et_EE/files_versions.po b/l10n/et_EE/files_versions.po index ffd4dc68f7..88597f1f9b 100644 --- a/l10n/et_EE/files_versions.po +++ b/l10n/et_EE/files_versions.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-10 02:08+0200\n" -"PO-Revision-Date: 2013-04-09 10:10+0000\n" -"Last-Translator: pisike.sipelgas \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/et_EE/lib.po b/l10n/et_EE/lib.po index bc7497c4ed..fc47049390 100644 --- a/l10n/et_EE/lib.po +++ b/l10n/et_EE/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-10 02:08+0200\n" -"PO-Revision-Date: 2013-04-09 10:00+0000\n" -"Last-Translator: pisike.sipelgas \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/et_EE/settings.po b/l10n/et_EE/settings.po index 0ea6c62c2b..c603999f22 100644 --- a/l10n/et_EE/settings.po +++ b/l10n/et_EE/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-10 02:08+0200\n" -"PO-Revision-Date: 2013-04-09 09:00+0000\n" -"Last-Translator: pisike.sipelgas \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -123,44 +123,44 @@ msgstr "Uuendatud" msgid "Saving..." msgstr "Salvestamine..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "kustutatud" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "tagasi" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "Ei suuda kustutada kasutajat" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Grupid" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Grupi admin" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Kustuta" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "lisa grupp" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "Sisesta nõuetele vastav kasutajatunnus" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "Viga kasutaja loomisel" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "Sisesta nõuetele vastav parool" diff --git a/l10n/et_EE/user_ldap.po b/l10n/et_EE/user_ldap.po index 8cd4056450..588eb01cbb 100644 --- a/l10n/et_EE/user_ldap.po +++ b/l10n/et_EE/user_ldap.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-10 02:08+0200\n" -"PO-Revision-Date: 2013-04-09 08:00+0000\n" -"Last-Translator: pisike.sipelgas \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/et_EE/user_webdavauth.po b/l10n/et_EE/user_webdavauth.po index a08c908b96..11ee710253 100644 --- a/l10n/et_EE/user_webdavauth.po +++ b/l10n/et_EE/user_webdavauth.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-10 02:08+0200\n" -"PO-Revision-Date: 2013-04-09 10:00+0000\n" -"Last-Translator: pisike.sipelgas \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/eu/core.po b/l10n/eu/core.po index 73e1ca7808..3573993e1c 100644 --- a/l10n/eu/core.po +++ b/l10n/eu/core.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" -"Last-Translator: asieriko \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -164,77 +164,77 @@ msgstr "Abendua" msgid "Settings" msgstr "Ezarpenak" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "segundu" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "orain dela minutu 1" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "orain dela {minutes} minutu" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "orain dela ordu bat" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "orain dela {hours} ordu" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "gaur" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "atzo" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "orain dela {days} egun" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "joan den hilabetean" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "orain dela {months} hilabete" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "hilabete" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "joan den urtean" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "urte" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Aukeratu" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Ados" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Ezeztatu" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Ez" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Aukeratu" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Bai" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "Ados" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Ez" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -537,23 +537,23 @@ msgstr "erabiliko da" msgid "Database user" msgstr "Datubasearen erabiltzailea" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Datubasearen pasahitza" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Datubasearen izena" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Datu basearen taula-lekua" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Datubasearen hostalaria" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Bukatu konfigurazioa" diff --git a/l10n/eu/files.po b/l10n/eu/files.po index 0e57abc01a..0442ccce91 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:09+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/files_encryption.po b/l10n/eu/files_encryption.po index d62efe1ac9..fdab73a534 100644 --- a/l10n/eu/files_encryption.po +++ b/l10n/eu/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-13 00:03+0100\n" -"PO-Revision-Date: 2013-02-12 22:00+0000\n" -"Last-Translator: asieriko \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/eu/files_external.po b/l10n/eu/files_external.po index 3f3d36daef..cb7fd45b34 100644 --- a/l10n/eu/files_external.po +++ b/l10n/eu/files_external.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 13:00+0000\n" -"Last-Translator: asieriko \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -39,13 +39,13 @@ msgstr "Mesedez eman baliozkoa den Dropbox app giltza eta sekretua" msgid "Error configuring Google Drive storage" msgstr "Errore bat egon da Google Drive biltegiratzea konfiguratzean" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Abisua: \"smbclient\" ez dago instalatuta. CIFS/SMB partekatutako karpetak montatzea ez da posible. Mesedez eskatu zure sistema kudeatzaileari instalatzea." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/eu/files_sharing.po b/l10n/eu/files_sharing.po index 1b97a4c57e..c42f25913a 100644 --- a/l10n/eu/files_sharing.po +++ b/l10n/eu/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-25 02:02+0200\n" -"PO-Revision-Date: 2012-09-24 13:26+0000\n" -"Last-Translator: asieriko \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,24 +26,24 @@ msgstr "Pasahitza" msgid "Submit" msgstr "Bidali" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%sk zurekin %s karpeta elkarbanatu du" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%sk zurekin %s fitxategia elkarbanatu du" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Deskargatu" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "Ez dago aurrebista eskuragarririk hauentzat " -#: templates/public.php:37 +#: templates/public.php:50 msgid "web services under your control" msgstr "web zerbitzuak zure kontrolpean" diff --git a/l10n/eu/files_trashbin.po b/l10n/eu/files_trashbin.po index 4ee77f2b6c..cacd96becd 100644 --- a/l10n/eu/files_trashbin.po +++ b/l10n/eu/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/files_versions.po b/l10n/eu/files_versions.po index 867a9523a0..7e42b6733a 100644 --- a/l10n/eu/files_versions.po +++ b/l10n/eu/files_versions.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-03 00:05+0100\n" -"PO-Revision-Date: 2013-03-02 21:30+0000\n" -"Last-Translator: asieriko \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/eu/lib.po b/l10n/eu/lib.po index e7140ec247..c65e98a9a9 100644 --- a/l10n/eu/lib.po +++ b/l10n/eu/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" -"Last-Translator: asieriko \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po index ba6c4c71e5..d9c6759ac5 100644 --- a/l10n/eu/settings.po +++ b/l10n/eu/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -124,44 +124,44 @@ msgstr "Eguneratuta" msgid "Saving..." msgstr "Gordetzen..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "ezabatuta" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "desegin" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "Ezin izan da erabiltzailea aldatu" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Taldeak" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Talde administradorea" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Ezabatu" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "gehitu taldea" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "Baliozko erabiltzaile izena eman behar da" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "Errore bat egon da erabiltzailea sortzean" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "Baliozko pasahitza eman behar da" diff --git a/l10n/eu/user_ldap.po b/l10n/eu/user_ldap.po index 7b70c5469a..4f94b7dbd4 100644 --- a/l10n/eu/user_ldap.po +++ b/l10n/eu/user_ldap.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" -"Last-Translator: asieriko \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/eu/user_webdavauth.po b/l10n/eu/user_webdavauth.po index ada89a92f4..8fc10281ae 100644 --- a/l10n/eu/user_webdavauth.po +++ b/l10n/eu/user_webdavauth.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-20 00:05+0100\n" -"PO-Revision-Date: 2013-01-18 23:47+0000\n" -"Last-Translator: asieriko \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,7 +27,7 @@ msgstr "WebDAV Autentikazioa" msgid "URL: http://" msgstr "URL: http://" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/fa/core.po b/l10n/fa/core.po index 2708fceb96..a0d1c5ffb0 100644 --- a/l10n/fa/core.po +++ b/l10n/fa/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" -"Last-Translator: miki_mika1362 \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -162,77 +162,77 @@ msgstr "دسامبر" msgid "Settings" msgstr "تنظیمات" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "ثانیه‌ها پیش" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "1 دقیقه پیش" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{دقیقه ها} دقیقه های پیش" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "1 ساعت پیش" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{ساعت ها} ساعت ها پیش" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "امروز" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "دیروز" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "{روزها} روزهای پیش" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "ماه قبل" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "{ماه ها} ماه ها پیش" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "ماه‌های قبل" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "سال قبل" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "سال‌های قبل" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "انتخاب کردن" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "قبول" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "منصرف شدن" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "نه" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "انتخاب کردن" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "بله" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "قبول" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "نه" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -535,23 +535,23 @@ msgstr "استفاده خواهد شد" msgid "Database user" msgstr "شناسه پایگاه داده" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "پسورد پایگاه داده" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "نام پایگاه داده" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "جدول پایگاه داده" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "هاست پایگاه داده" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "اتمام نصب" diff --git a/l10n/fa/files.po b/l10n/fa/files.po index ace762323c..d3e345434f 100644 --- a/l10n/fa/files.po +++ b/l10n/fa/files.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-10 02:08+0200\n" -"PO-Revision-Date: 2013-04-09 05:10+0000\n" -"Last-Translator: miki_mika1362 \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/fa/files_encryption.po b/l10n/fa/files_encryption.po index f9ee7fcc63..2d471bafeb 100644 --- a/l10n/fa/files_encryption.po +++ b/l10n/fa/files_encryption.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-19 00:04+0100\n" -"PO-Revision-Date: 2013-03-18 11:40+0000\n" -"Last-Translator: miki_mika1362 \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/fa/files_external.po b/l10n/fa/files_external.po index 99b3b036b7..fa5dc5f9d0 100644 --- a/l10n/fa/files_external.po +++ b/l10n/fa/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" -"Last-Translator: miki_mika1362 \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -38,13 +38,13 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/fa/files_sharing.po b/l10n/fa/files_sharing.po index e72b1ce1dc..f305fac0e0 100644 --- a/l10n/fa/files_sharing.po +++ b/l10n/fa/files_sharing.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 11:20+0000\n" -"Last-Translator: Amir Reza Asadi \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,24 +27,24 @@ msgstr "گذرواژه" msgid "Submit" msgstr "ثبت" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%sپوشه %s را با شما به اشتراک گذاشت" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%sفایل %s را با شما به اشتراک گذاشت" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "دانلود" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "هیچگونه پیش نمایشی موجود نیست" -#: templates/public.php:35 +#: templates/public.php:50 msgid "web services under your control" msgstr "سرویس های تحت وب در کنترل شما" diff --git a/l10n/fa/files_trashbin.po b/l10n/fa/files_trashbin.po index bb1b51c7ef..028245cdc3 100644 --- a/l10n/fa/files_trashbin.po +++ b/l10n/fa/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/files_versions.po b/l10n/fa/files_versions.po index 325fdb2a87..64c3439a0b 100644 --- a/l10n/fa/files_versions.po +++ b/l10n/fa/files_versions.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -43,11 +43,11 @@ msgstr "شکست" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "هیچ نسخه قدیمی در دسترس نیست" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "هیچ مسیری مشخص نشده است" diff --git a/l10n/fa/lib.po b/l10n/fa/lib.po index 4702ff300e..89ee697091 100644 --- a/l10n/fa/lib.po +++ b/l10n/fa/lib.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-08 02:12+0200\n" -"PO-Revision-Date: 2013-04-06 13:40+0000\n" -"Last-Translator: miki_mika1362 \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/fa/settings.po b/l10n/fa/settings.po index 3037631b1b..4d3cc0f53b 100644 --- a/l10n/fa/settings.po +++ b/l10n/fa/settings.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-10 02:08+0200\n" -"PO-Revision-Date: 2013-04-09 05:40+0000\n" -"Last-Translator: miki_mika1362 \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -126,44 +126,44 @@ msgstr "بروز رسانی انجام شد" msgid "Saving..." msgstr "درحال ذخیره ..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "حذف شده" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "بازگشت" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "حذف کاربر امکان پذیر نیست" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "گروه ها" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "گروه مدیران" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "پاک کردن" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "افزودن گروه" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "نام کاربری صحیح باید وارد شود" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "خطا در ایجاد کاربر" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "رمز عبور صحیح باید وارد شود" diff --git a/l10n/fa/user_ldap.po b/l10n/fa/user_ldap.po index 59c855c010..4d69ed86da 100644 --- a/l10n/fa/user_ldap.po +++ b/l10n/fa/user_ldap.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" -"Last-Translator: miki_mika1362 \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/fa/user_webdavauth.po b/l10n/fa/user_webdavauth.po index e4088da32d..62631e8bd8 100644 --- a/l10n/fa/user_webdavauth.po +++ b/l10n/fa/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -25,7 +25,7 @@ msgstr "" msgid "URL: http://" msgstr "" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/fi/core.po b/l10n/fi/core.po index d032fb3518..9199f7cff2 100644 --- a/l10n/fi/core.po +++ b/l10n/fi/core.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2011-07-25 16:05+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"Last-Translator: I Robot \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -160,76 +160,76 @@ msgstr "" msgid "Settings" msgstr "asetukset" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:126 -msgid "Choose" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" msgstr "" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:162 -msgid "No" +#: js/oc-dialogs.js:185 +msgid "Choose" msgstr "" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:180 -msgid "Ok" +#: js/oc-dialogs.js:222 +msgid "No" msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 @@ -237,8 +237,10 @@ msgstr "" msgid "The object type is not specified." msgstr "" -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 #: js/share.js:589 msgid "Error" msgstr "" @@ -531,23 +533,23 @@ msgstr "" msgid "Database user" msgstr "" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "" diff --git a/l10n/fi/files.po b/l10n/fi/files.po index 41347387bc..a6abbe1b1a 100644 --- a/l10n/fi/files.po +++ b/l10n/fi/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-08 02:12+0200\n" -"PO-Revision-Date: 2013-04-08 00:13+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" diff --git a/l10n/fi/lib.po b/l10n/fi/lib.po index e5c2bbd74a..81257271c6 100644 --- a/l10n/fi/lib.po +++ b/l10n/fi/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index a31c1466e4..55b80921b6 100644 --- a/l10n/fi_FI/core.po +++ b/l10n/fi_FI/core.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" -"Last-Translator: Jiri Grönroos \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -167,77 +167,77 @@ msgstr "Joulukuu" msgid "Settings" msgstr "Asetukset" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "sekuntia sitten" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "1 minuutti sitten" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{minutes} minuuttia sitten" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "1 tunti sitten" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{hours} tuntia sitten" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "tänään" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "eilen" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "{days} päivää sitten" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "viime kuussa" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "{months} kuukautta sitten" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "kuukautta sitten" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "viime vuonna" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "vuotta sitten" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Valitse" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Ok" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Peru" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Ei" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Valitse" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Kyllä" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "Ok" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Ei" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -540,23 +540,23 @@ msgstr "käytetään" msgid "Database user" msgstr "Tietokannan käyttäjä" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Tietokannan salasana" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Tietokannan nimi" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Tietokannan taulukkotila" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Tietokantapalvelin" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Viimeistele asennus" diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index dddff09f30..2df6a15b42 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:09+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/files_encryption.po b/l10n/fi_FI/files_encryption.po index 3833503da0..76cae2f156 100644 --- a/l10n/fi_FI/files_encryption.po +++ b/l10n/fi_FI/files_encryption.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-15 00:04+0100\n" -"PO-Revision-Date: 2013-02-14 07:40+0000\n" -"Last-Translator: Jiri Grönroos \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/fi_FI/files_external.po b/l10n/fi_FI/files_external.po index 829e7f111b..6a21eb6ee3 100644 --- a/l10n/fi_FI/files_external.po +++ b/l10n/fi_FI/files_external.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-31 00:01+0100\n" -"PO-Revision-Date: 2013-03-30 09:40+0000\n" -"Last-Translator: Jiri Grönroos \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -40,13 +40,13 @@ msgstr "Anna kelvollinen Dropbox-sovellusavain ja salainen vastaus." msgid "Error configuring Google Drive storage" msgstr "Virhe Google Drive levyn asetuksia tehtäessä" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Varoitus: \"smbclient\" ei ole asennettuna. CIFS-/SMB-jakojen liittäminen ei ole mahdollista. Pyydä järjestelmän ylläpitäjää asentamaan smbclient." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/fi_FI/files_sharing.po b/l10n/fi_FI/files_sharing.po index 8bdb2b410f..bef0c84fd1 100644 --- a/l10n/fi_FI/files_sharing.po +++ b/l10n/fi_FI/files_sharing.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-27 02:01+0200\n" -"PO-Revision-Date: 2012-09-26 12:20+0000\n" -"Last-Translator: Jiri Grönroos \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,24 +27,24 @@ msgstr "Salasana" msgid "Submit" msgstr "Lähetä" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s jakoi kansion %s kanssasi" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s jakoi tiedoston %s kanssasi" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Lataa" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "Ei esikatselua kohteelle" -#: templates/public.php:37 +#: templates/public.php:50 msgid "web services under your control" msgstr "verkkopalvelut hallinnassasi" diff --git a/l10n/fi_FI/files_trashbin.po b/l10n/fi_FI/files_trashbin.po index 1b22f0ce78..83e0e9bc92 100644 --- a/l10n/fi_FI/files_trashbin.po +++ b/l10n/fi_FI/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/files_versions.po b/l10n/fi_FI/files_versions.po index 90ba537696..e05cdfb6e5 100644 --- a/l10n/fi_FI/files_versions.po +++ b/l10n/fi_FI/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-12 02:09+0200\n" -"PO-Revision-Date: 2013-04-11 06:20+0000\n" -"Last-Translator: Jiri Grönroos \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/fi_FI/lib.po b/l10n/fi_FI/lib.po index e7aa43b183..220c28eae6 100644 --- a/l10n/fi_FI/lib.po +++ b/l10n/fi_FI/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-12 02:09+0200\n" -"PO-Revision-Date: 2013-04-11 06:20+0000\n" -"Last-Translator: Jiri Grönroos \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index b2f910134f..f86a50967d 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" -"Last-Translator: Jiri Grönroos \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -123,44 +123,44 @@ msgstr "Päivitetty" msgid "Saving..." msgstr "Tallennetaan..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "poistettu" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "kumoa" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "Käyttäjän poistaminen ei onnistunut" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Ryhmät" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Ryhmän ylläpitäjä" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Poista" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "lisää ryhmä" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "Virhe käyttäjää luotaessa" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" diff --git a/l10n/fi_FI/user_ldap.po b/l10n/fi_FI/user_ldap.po index f6ea662097..ed63037a2e 100644 --- a/l10n/fi_FI/user_ldap.po +++ b/l10n/fi_FI/user_ldap.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-31 00:01+0100\n" -"PO-Revision-Date: 2013-03-30 09:40+0000\n" -"Last-Translator: Jiri Grönroos \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/fi_FI/user_webdavauth.po b/l10n/fi_FI/user_webdavauth.po index e1fa0ca8d1..4ed8a2e5a7 100644 --- a/l10n/fi_FI/user_webdavauth.po +++ b/l10n/fi_FI/user_webdavauth.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-15 00:05+0100\n" -"PO-Revision-Date: 2013-02-14 14:00+0000\n" -"Last-Translator: Jiri Grönroos \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/fr/core.po b/l10n/fr/core.po index cd949b9019..8051f8813b 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/core.po @@ -21,9 +21,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" -"Last-Translator: Guillaume Paumier \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -174,77 +174,77 @@ msgstr "décembre" msgid "Settings" msgstr "Paramètres" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "il y a quelques secondes" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "il y a une minute" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "il y a {minutes} minutes" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "Il y a une heure" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "Il y a {hours} heures" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "aujourd'hui" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "hier" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "il y a {days} jours" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "le mois dernier" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "Il y a {months} mois" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "il y a plusieurs mois" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "l'année dernière" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "il y a plusieurs années" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Choisir" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Ok" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Annuler" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Non" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Choisir" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Oui" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "Ok" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Non" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -547,23 +547,23 @@ msgstr "sera utilisé" msgid "Database user" msgstr "Utilisateur pour la base de données" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Mot de passe de la base de données" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Nom de la base de données" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Tablespaces de la base de données" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Serveur de la base de données" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Terminer l'installation" diff --git a/l10n/fr/files.po b/l10n/fr/files.po index 5a42c71afe..ac62cd46ad 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -24,9 +24,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-14 02:14+0200\n" -"PO-Revision-Date: 2013-04-13 13:20+0000\n" -"Last-Translator: froozeify \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/fr/files_encryption.po b/l10n/fr/files_encryption.po index 7c41515ad8..0a04e493c6 100644 --- a/l10n/fr/files_encryption.po +++ b/l10n/fr/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/files_external.po b/l10n/fr/files_external.po index 60179f9dd4..1eabea7ca2 100644 --- a/l10n/fr/files_external.po +++ b/l10n/fr/files_external.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 13:00+0000\n" -"Last-Translator: Zertrin \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -40,13 +40,13 @@ msgstr "Veuillez fournir une clé d'application (app key) ainsi qu'un mot de pas msgid "Error configuring Google Drive storage" msgstr "Erreur lors de la configuration du support de stockage Google Drive" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Attention : \"smbclient\" n'est pas installé. Le montage des partages CIFS/SMB n'est pas disponible. Contactez votre administrateur système pour l'installer." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/fr/files_sharing.po b/l10n/fr/files_sharing.po index 36628ca4e7..4c4dc7b408 100644 --- a/l10n/fr/files_sharing.po +++ b/l10n/fr/files_sharing.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-25 02:02+0200\n" -"PO-Revision-Date: 2012-09-24 14:21+0000\n" -"Last-Translator: Romain DEP. \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,24 +30,24 @@ msgstr "Mot de passe" msgid "Submit" msgstr "Envoyer" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s a partagé le répertoire %s avec vous" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s a partagé le fichier %s avec vous" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Télécharger" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "Pas d'aperçu disponible pour" -#: templates/public.php:37 +#: templates/public.php:50 msgid "web services under your control" msgstr "services web sous votre contrôle" diff --git a/l10n/fr/files_trashbin.po b/l10n/fr/files_trashbin.po index 456f103b97..f37b15a7d8 100644 --- a/l10n/fr/files_trashbin.po +++ b/l10n/fr/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/files_versions.po b/l10n/fr/files_versions.po index abef94b52e..734bfa8efd 100644 --- a/l10n/fr/files_versions.po +++ b/l10n/fr/files_versions.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-13 00:05+0100\n" -"PO-Revision-Date: 2013-03-12 19:21+0000\n" -"Last-Translator: Zertrin \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/fr/lib.po b/l10n/fr/lib.po index 16a076f358..0d82367ff6 100644 --- a/l10n/fr/lib.po +++ b/l10n/fr/lib.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" -"Last-Translator: Christophe Lherieau \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index 39c3119416..4e5add285a 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -26,8 +26,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -139,44 +139,44 @@ msgstr "Mise à jour effectuée avec succès" msgid "Saving..." msgstr "Sauvegarde..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "supprimé" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "annuler" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "Impossible de retirer l'utilisateur" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Groupes" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Groupe Admin" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Supprimer" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "ajouter un groupe" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "Un nom d'utilisateur valide doit être saisi" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "Erreur lors de la création de l'utilisateur" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "Un mot de passe valide doit être saisi" diff --git a/l10n/fr/user_ldap.po b/l10n/fr/user_ldap.po index f8a1920bec..0328aff362 100644 --- a/l10n/fr/user_ldap.po +++ b/l10n/fr/user_ldap.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" -"Last-Translator: Zertrin \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -31,7 +31,7 @@ msgstr "Échec de la suppression de la configuration du serveur" #: ajax/testConfiguration.php:36 msgid "The configuration is valid and the connection could be established!" -msgstr "La configuration est valide est la connexion peut être établie !" +msgstr "La configuration est valide et la connexion peut être établie !" #: ajax/testConfiguration.php:39 msgid "" diff --git a/l10n/fr/user_webdavauth.po b/l10n/fr/user_webdavauth.po index 4d665c8ff4..efb5ef69b3 100644 --- a/l10n/fr/user_webdavauth.po +++ b/l10n/fr/user_webdavauth.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-25 00:05+0100\n" -"PO-Revision-Date: 2013-01-24 01:04+0000\n" -"Last-Translator: Romain DEP. \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,7 +30,7 @@ msgstr "Authentification WebDAV" msgid "URL: http://" msgstr "URL : http://" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/gl/core.po b/l10n/gl/core.po index 9dc63f3102..7b320635e6 100644 --- a/l10n/gl/core.po +++ b/l10n/gl/core.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" -"Last-Translator: mbouzada \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -164,77 +164,77 @@ msgstr "decembro" msgid "Settings" msgstr "Configuracións" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "segundos atrás" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "hai 1 minuto" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "hai {minutes} minutos" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "hai 1 hora" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "hai {hours} horas" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "hoxe" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "onte" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "hai {days} días" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "último mes" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "hai {months} meses" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "meses atrás" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "último ano" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "anos atrás" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Escoller" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Aceptar" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Cancelar" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Non" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Escoller" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Si" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "Aceptar" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Non" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -537,23 +537,23 @@ msgstr "vai ser utilizado" msgid "Database user" msgstr "Usuario da base de datos" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Contrasinal da base de datos" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Nome da base de datos" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Táboa de espazos da base de datos" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Servidor da base de datos" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Rematar a configuración" diff --git a/l10n/gl/files.po b/l10n/gl/files.po index 7cb31be0d1..13580aacf5 100644 --- a/l10n/gl/files.po +++ b/l10n/gl/files.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:09+0200\n" -"PO-Revision-Date: 2013-04-08 14:40+0000\n" -"Last-Translator: mbouzada \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/gl/files_encryption.po b/l10n/gl/files_encryption.po index 0f66e72f33..96058d128c 100644 --- a/l10n/gl/files_encryption.po +++ b/l10n/gl/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-11 15:39+0100\n" -"PO-Revision-Date: 2013-02-11 10:01+0000\n" -"Last-Translator: mbouzada \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/gl/files_external.po b/l10n/gl/files_external.po index 51b879d758..8e665aecdf 100644 --- a/l10n/gl/files_external.po +++ b/l10n/gl/files_external.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 13:00+0000\n" -"Last-Translator: mbouzada \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -40,13 +40,13 @@ msgstr "Forneza unha chave correcta e segreda do Dropbox." msgid "Error configuring Google Drive storage" msgstr "Produciuse un erro ao configurar o almacenamento en Google Drive" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Aviso: «smbclient» non está instalado. Non é posibel a montaxe de comparticións CIFS/SMB. Consulte co administrador do sistema para instalalo." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/gl/files_sharing.po b/l10n/gl/files_sharing.po index d665b511c6..f515b3253a 100644 --- a/l10n/gl/files_sharing.po +++ b/l10n/gl/files_sharing.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-12 15:10+0100\n" -"PO-Revision-Date: 2013-02-12 13:00+0000\n" -"Last-Translator: mbouzada \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,24 +27,24 @@ msgstr "Contrasinal" msgid "Submit" msgstr "Enviar" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s compartiu o cartafol %s con vostede" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s compartiu o ficheiro %s con vostede" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Descargar" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "Sen vista previa dispoñíbel para" -#: templates/public.php:35 +#: templates/public.php:50 msgid "web services under your control" msgstr "servizos web baixo o seu control" diff --git a/l10n/gl/files_trashbin.po b/l10n/gl/files_trashbin.po index 3c4f5c565b..8530c4e157 100644 --- a/l10n/gl/files_trashbin.po +++ b/l10n/gl/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/files_versions.po b/l10n/gl/files_versions.po index 6c5d2ee8b4..695f30a3d3 100644 --- a/l10n/gl/files_versions.po +++ b/l10n/gl/files_versions.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-01 00:05+0100\n" -"PO-Revision-Date: 2013-02-28 07:10+0000\n" -"Last-Translator: mbouzada \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -44,11 +44,11 @@ msgstr "produciuse un fallo" msgid "File %s could not be reverted to version %s" msgstr "Non foi posíbel reverter o ficheiro %s á versión %s" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "Non hai versións antigas dispoñíbeis" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "Non foi indicada a ruta" diff --git a/l10n/gl/lib.po b/l10n/gl/lib.po index 27a4cf8757..c17f8ea6ee 100644 --- a/l10n/gl/lib.po +++ b/l10n/gl/lib.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" -"Last-Translator: mbouzada \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index 05a59612fe..5d24c3a492 100644 --- a/l10n/gl/settings.po +++ b/l10n/gl/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -126,44 +126,44 @@ msgstr "Actualizado" msgid "Saving..." msgstr "Gardando..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "eliminado" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "desfacer" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "Non é posíbel retirar o usuario" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Grupos" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Grupo Admin" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Eliminar" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "engadir un grupo" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "Debe fornecer un nome de usuario" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "Produciuse un erro ao crear o usuario" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "Debe fornecer un contrasinal" diff --git a/l10n/gl/user_ldap.po b/l10n/gl/user_ldap.po index bb736687f6..1d1c0ab36a 100644 --- a/l10n/gl/user_ldap.po +++ b/l10n/gl/user_ldap.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" -"Last-Translator: mbouzada \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/gl/user_webdavauth.po b/l10n/gl/user_webdavauth.po index e16010dc69..301b089dd7 100644 --- a/l10n/gl/user_webdavauth.po +++ b/l10n/gl/user_webdavauth.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-11 15:39+0100\n" -"PO-Revision-Date: 2013-02-11 11:20+0000\n" -"Last-Translator: mbouzada \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/he/core.po b/l10n/he/core.po index 7c6bc855fd..ee87e77344 100644 --- a/l10n/he/core.po +++ b/l10n/he/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -165,77 +165,77 @@ msgstr "דצמבר" msgid "Settings" msgstr "הגדרות" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "שניות" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "לפני דקה אחת" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "לפני {minutes} דקות" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "לפני שעה" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "לפני {hours} שעות" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "היום" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "אתמול" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "לפני {days} ימים" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "חודש שעבר" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "לפני {months} חודשים" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "חודשים" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "שנה שעברה" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "שנים" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "בחירה" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "בסדר" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "ביטול" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "לא" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "בחירה" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "כן" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "בסדר" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "לא" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -538,23 +538,23 @@ msgstr "ינוצלו" msgid "Database user" msgstr "שם משתמש במסד הנתונים" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "ססמת מסד הנתונים" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "שם מסד הנתונים" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "מרחב הכתובות של מסד הנתונים" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "שרת בסיס נתונים" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "סיום התקנה" diff --git a/l10n/he/files.po b/l10n/he/files.po index f22b2dcd83..2e5a6663f6 100644 --- a/l10n/he/files.po +++ b/l10n/he/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:09+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/files_encryption.po b/l10n/he/files_encryption.po index 2c26e96cd1..7881028811 100644 --- a/l10n/he/files_encryption.po +++ b/l10n/he/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/files_external.po b/l10n/he/files_external.po index 280d2348b8..dbb5147ed9 100644 --- a/l10n/he/files_external.po +++ b/l10n/he/files_external.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 13:00+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -39,13 +39,13 @@ msgstr "נא לספק קוד יישום וסוד תקניים של Dropbox." msgid "Error configuring Google Drive storage" msgstr "אירעה שגיאה בעת הגדרת אחסון ב־Google Drive" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/he/files_sharing.po b/l10n/he/files_sharing.po index 2ccef5f2b5..1201adaf60 100644 --- a/l10n/he/files_sharing.po +++ b/l10n/he/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-10 02:04+0200\n" -"PO-Revision-Date: 2012-10-09 11:45+0000\n" -"Last-Translator: Tomer Cohen \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,24 +26,24 @@ msgstr "ססמה" msgid "Submit" msgstr "שליחה" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s שיתף עמך את התיקייה %s" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s שיתף עמך את הקובץ %s" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "הורדה" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "אין תצוגה מקדימה זמינה עבור" -#: templates/public.php:35 +#: templates/public.php:50 msgid "web services under your control" msgstr "שירותי רשת תחת השליטה שלך" diff --git a/l10n/he/files_trashbin.po b/l10n/he/files_trashbin.po index 4ec7b23ec8..9b28a90b86 100644 --- a/l10n/he/files_trashbin.po +++ b/l10n/he/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/files_versions.po b/l10n/he/files_versions.po index 171a23cbc9..6dc80633be 100644 --- a/l10n/he/files_versions.po +++ b/l10n/he/files_versions.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -42,11 +42,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/he/lib.po b/l10n/he/lib.po index 5c80763080..37d481fbb3 100644 --- a/l10n/he/lib.po +++ b/l10n/he/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/settings.po b/l10n/he/settings.po index 4597abdc41..621702ce0b 100644 --- a/l10n/he/settings.po +++ b/l10n/he/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -124,44 +124,44 @@ msgstr "" msgid "Saving..." msgstr "שומר.." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "ביטול" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "קבוצות" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "מנהל הקבוצה" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "מחיקה" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" diff --git a/l10n/he/user_ldap.po b/l10n/he/user_ldap.po index 1a0fa03954..0b18962145 100644 --- a/l10n/he/user_ldap.po +++ b/l10n/he/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/user_webdavauth.po b/l10n/he/user_webdavauth.po index 65a279ed44..b93834a9e1 100644 --- a/l10n/he/user_webdavauth.po +++ b/l10n/he/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -25,7 +25,7 @@ msgstr "" msgid "URL: http://" msgstr "" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/hi/core.po b/l10n/hi/core.po index f43d7de3b5..9f34c9b87f 100644 --- a/l10n/hi/core.po +++ b/l10n/hi/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:00+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -162,76 +162,76 @@ msgstr "" msgid "Settings" msgstr "सेटिंग्स" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:126 -msgid "Choose" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" msgstr "" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:162 -msgid "No" +#: js/oc-dialogs.js:185 +msgid "Choose" msgstr "" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:180 -msgid "Ok" +#: js/oc-dialogs.js:222 +msgid "No" msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 @@ -239,8 +239,10 @@ msgstr "" msgid "The object type is not specified." msgstr "" -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 #: js/share.js:589 msgid "Error" msgstr "" @@ -533,23 +535,23 @@ msgstr "उपयोग होगा" msgid "Database user" msgstr "डेटाबेस उपयोगकर्ता" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "डेटाबेस पासवर्ड" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "डेटाबेस का नाम" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "सेटअप समाप्त करे" diff --git a/l10n/hi/files.po b/l10n/hi/files.po index 77fc185668..55cc3a81f3 100644 --- a/l10n/hi/files.po +++ b/l10n/hi/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-08 02:12+0200\n" -"PO-Revision-Date: 2013-04-08 00:13+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/files_encryption.po b/l10n/hi/files_encryption.po index 94768da1fc..1d58cb0d5c 100644 --- a/l10n/hi/files_encryption.po +++ b/l10n/hi/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/files_external.po b/l10n/hi/files_external.po index b4d9abc7e7..42d8715e7b 100644 --- a/l10n/hi/files_external.po +++ b/l10n/hi/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -37,13 +37,13 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:421 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:424 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/hi/files_sharing.po b/l10n/hi/files_sharing.po index 65e94288b4..232619dab6 100644 --- a/l10n/hi/files_sharing.po +++ b/l10n/hi/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-22 01:14+0200\n" -"PO-Revision-Date: 2012-09-21 23:15+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,24 +25,24 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "" -#: templates/public.php:37 +#: templates/public.php:50 msgid "web services under your control" msgstr "" diff --git a/l10n/hi/files_trashbin.po b/l10n/hi/files_trashbin.po index f5adaa2e8c..b963b8a880 100644 --- a/l10n/hi/files_trashbin.po +++ b/l10n/hi/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-08 02:12+0200\n" -"PO-Revision-Date: 2013-04-08 00:13+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/files_versions.po b/l10n/hi/files_versions.po index c58f10c16c..6f18e09abb 100644 --- a/l10n/hi/files_versions.po +++ b/l10n/hi/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -40,11 +40,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/hi/lib.po b/l10n/hi/lib.po index a47a99102b..010b36e742 100644 --- a/l10n/hi/lib.po +++ b/l10n/hi/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/settings.po b/l10n/hi/settings.po index 0ef36ef726..0ba8649840 100644 --- a/l10n/hi/settings.po +++ b/l10n/hi/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -100,6 +100,10 @@ msgstr "" msgid "Please wait...." msgstr "" +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" +msgstr "" + #: js/apps.js:90 msgid "Updating...." msgstr "" @@ -108,10 +112,6 @@ msgstr "" msgid "Error while updating app" msgstr "" -#: js/apps.js:93 -msgid "Error" -msgstr "" - #: js/apps.js:96 msgid "Updated" msgstr "" @@ -120,44 +120,44 @@ msgstr "" msgid "Saving..." msgstr "" -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" diff --git a/l10n/hi/user_ldap.po b/l10n/hi/user_ldap.po index b2f6a9761a..157f5a5524 100644 --- a/l10n/hi/user_ldap.po +++ b/l10n/hi/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-02 00:03+0100\n" -"PO-Revision-Date: 2013-03-01 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -86,248 +86,248 @@ msgstr "" msgid "Server configuration" msgstr "" -#: templates/settings.php:18 +#: templates/settings.php:31 msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:23 +#: templates/settings.php:36 msgid "Host" msgstr "" -#: templates/settings.php:25 +#: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:26 +#: templates/settings.php:39 msgid "Base DN" msgstr "" -#: templates/settings.php:27 +#: templates/settings.php:40 msgid "One Base DN per line" msgstr "" -#: templates/settings.php:28 +#: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" -#: templates/settings.php:30 +#: templates/settings.php:43 msgid "User DN" msgstr "" -#: templates/settings.php:32 +#: templates/settings.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 "" -#: templates/settings.php:33 +#: templates/settings.php:46 msgid "Password" msgstr "" -#: templates/settings.php:36 +#: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:37 +#: templates/settings.php:50 msgid "User Login Filter" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:55 msgid "User List Filter" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." msgstr "" -#: templates/settings.php:47 +#: templates/settings.php:60 msgid "Group Filter" msgstr "" -#: templates/settings.php:50 +#: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:68 msgid "Connection Settings" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "Configuration Active" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:71 msgid "Port" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:73 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Use TLS" msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" -#: templates/settings.php:63 +#: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Not recommended, use for testing only." msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:67 +#: templates/settings.php:80 msgid "Directory Settings" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "Base User Tree" msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:71 +#: templates/settings.php:84 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:71 templates/settings.php:74 +#: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:74 +#: templates/settings.php:87 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:88 msgid "Group-Member association" msgstr "" -#: templates/settings.php:77 +#: templates/settings.php:90 msgid "Special Attributes" msgstr "" -#: templates/settings.php:79 +#: templates/settings.php:92 msgid "Quota Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "Quota Default" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "in bytes" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:94 msgid "Email Field" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Test Configuration" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Help" msgstr "सहयोग" diff --git a/l10n/hi/user_webdavauth.po b/l10n/hi/user_webdavauth.po index cc71e94d7f..ac6b020e07 100644 --- a/l10n/hi/user_webdavauth.po +++ b/l10n/hi/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -25,7 +25,7 @@ msgstr "" msgid "URL: http://" msgstr "" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/hr/core.po b/l10n/hr/core.po index 8d9dbcea6e..36ffbbaa91 100644 --- a/l10n/hr/core.po +++ b/l10n/hr/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -164,77 +164,77 @@ msgstr "Prosinac" msgid "Settings" msgstr "Postavke" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "sekundi prije" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "danas" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "jučer" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "prošli mjesec" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "mjeseci" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "prošlu godinu" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "godina" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Izaberi" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "U redu" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Odustani" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Ne" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Izaberi" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Da" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "U redu" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Ne" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -537,23 +537,23 @@ msgstr "će se koristiti" msgid "Database user" msgstr "Korisnik baze podataka" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Lozinka baze podataka" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Ime baze podataka" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Database tablespace" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Poslužitelj baze podataka" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Završi postavljanje" diff --git a/l10n/hr/files.po b/l10n/hr/files.po index 832a52920a..84b9539ca8 100644 --- a/l10n/hr/files.po +++ b/l10n/hr/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:09+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/files_encryption.po b/l10n/hr/files_encryption.po index 434831e8ab..49ffacda4e 100644 --- a/l10n/hr/files_encryption.po +++ b/l10n/hr/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/files_external.po b/l10n/hr/files_external.po index ff1ac7f575..57ba61e83d 100644 --- a/l10n/hr/files_external.po +++ b/l10n/hr/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -37,13 +37,13 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:421 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:424 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/hr/files_sharing.po b/l10n/hr/files_sharing.po index 90582fb737..965254276b 100644 --- a/l10n/hr/files_sharing.po +++ b/l10n/hr/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-22 01:14+0200\n" -"PO-Revision-Date: 2012-09-21 23:15+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,24 +25,24 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "" -#: templates/public.php:37 +#: templates/public.php:50 msgid "web services under your control" msgstr "" diff --git a/l10n/hr/files_trashbin.po b/l10n/hr/files_trashbin.po index 5d8da16449..7a1edc31fc 100644 --- a/l10n/hr/files_trashbin.po +++ b/l10n/hr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/files_versions.po b/l10n/hr/files_versions.po index 95d4715bd6..72c7f48a4c 100644 --- a/l10n/hr/files_versions.po +++ b/l10n/hr/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -40,11 +40,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/hr/lib.po b/l10n/hr/lib.po index 9f53f45467..6ad791925e 100644 --- a/l10n/hr/lib.po +++ b/l10n/hr/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-02 00:03+0200\n" -"PO-Revision-Date: 2013-03-31 22:13+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/settings.po b/l10n/hr/settings.po index 3269cfa11c..6577be3e2b 100644 --- a/l10n/hr/settings.po +++ b/l10n/hr/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -123,44 +123,44 @@ msgstr "" msgid "Saving..." msgstr "Spremanje..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "izbrisano" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "vrati" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Grupe" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Grupa Admin" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Obriši" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" diff --git a/l10n/hr/user_ldap.po b/l10n/hr/user_ldap.po index fbc304add5..aa5d9446e9 100644 --- a/l10n/hr/user_ldap.po +++ b/l10n/hr/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-02 00:03+0100\n" -"PO-Revision-Date: 2013-03-01 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -86,248 +86,248 @@ msgstr "" msgid "Server configuration" msgstr "" -#: templates/settings.php:18 +#: templates/settings.php:31 msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:23 +#: templates/settings.php:36 msgid "Host" msgstr "" -#: templates/settings.php:25 +#: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:26 +#: templates/settings.php:39 msgid "Base DN" msgstr "" -#: templates/settings.php:27 +#: templates/settings.php:40 msgid "One Base DN per line" msgstr "" -#: templates/settings.php:28 +#: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" -#: templates/settings.php:30 +#: templates/settings.php:43 msgid "User DN" msgstr "" -#: templates/settings.php:32 +#: templates/settings.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 "" -#: templates/settings.php:33 +#: templates/settings.php:46 msgid "Password" msgstr "" -#: templates/settings.php:36 +#: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:37 +#: templates/settings.php:50 msgid "User Login Filter" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:55 msgid "User List Filter" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." msgstr "" -#: templates/settings.php:47 +#: templates/settings.php:60 msgid "Group Filter" msgstr "" -#: templates/settings.php:50 +#: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:68 msgid "Connection Settings" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "Configuration Active" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:71 msgid "Port" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:73 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Use TLS" msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" -#: templates/settings.php:63 +#: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Not recommended, use for testing only." msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:67 +#: templates/settings.php:80 msgid "Directory Settings" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "Base User Tree" msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:71 +#: templates/settings.php:84 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:71 templates/settings.php:74 +#: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:74 +#: templates/settings.php:87 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:88 msgid "Group-Member association" msgstr "" -#: templates/settings.php:77 +#: templates/settings.php:90 msgid "Special Attributes" msgstr "" -#: templates/settings.php:79 +#: templates/settings.php:92 msgid "Quota Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "Quota Default" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "in bytes" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:94 msgid "Email Field" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Test Configuration" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Help" msgstr "Pomoć" diff --git a/l10n/hr/user_webdavauth.po b/l10n/hr/user_webdavauth.po index d33ff57a3a..78b5589c2b 100644 --- a/l10n/hr/user_webdavauth.po +++ b/l10n/hr/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -25,7 +25,7 @@ msgstr "" msgid "URL: http://" msgstr "" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/hu_HU/core.po b/l10n/hu_HU/core.po index 5640290395..9706d55d51 100644 --- a/l10n/hu_HU/core.po +++ b/l10n/hu_HU/core.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" -"Last-Translator: Laszlo Tornoci \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -165,77 +165,77 @@ msgstr "december" msgid "Settings" msgstr "Beállítások" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "pár másodperce" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "1 perce" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{minutes} perce" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "1 órája" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{hours} órája" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "ma" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "tegnap" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "{days} napja" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "múlt hónapban" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "{months} hónapja" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "több hónapja" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "tavaly" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "több éve" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Válasszon" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Ok" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Mégse" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Nem" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Válasszon" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Igen" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "Ok" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Nem" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -538,23 +538,23 @@ msgstr "adatbázist fogunk használni" msgid "Database user" msgstr "Adatbázis felhasználónév" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Adatbázis jelszó" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Az adatbázis neve" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Az adatbázis táblázattér (tablespace)" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Adatbázis szerver" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "A beállítások befejezése" diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index 1194d9e1c2..ef50be8ac5 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/files.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:09+0200\n" -"PO-Revision-Date: 2013-04-08 13:10+0000\n" -"Last-Translator: Laszlo Tornoci \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/hu_HU/files_encryption.po b/l10n/hu_HU/files_encryption.po index 4ad1f0108e..b358c1d440 100644 --- a/l10n/hu_HU/files_encryption.po +++ b/l10n/hu_HU/files_encryption.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-14 00:05+0100\n" -"PO-Revision-Date: 2013-02-13 14:00+0000\n" -"Last-Translator: Laszlo Tornoci \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/hu_HU/files_external.po b/l10n/hu_HU/files_external.po index 256bc81c4d..f9b482fd6c 100644 --- a/l10n/hu_HU/files_external.po +++ b/l10n/hu_HU/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 13:00+0000\n" -"Last-Translator: Laszlo Tornoci \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -38,13 +38,13 @@ msgstr "Adjon meg egy érvényes Dropbox app key-t és secretet!" msgid "Error configuring Google Drive storage" msgstr "A Google Drive tárolót nem sikerült beállítani" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Figyelem: az \"smbclient\" nincs telepítve a kiszolgálón. Emiatt nem lehet CIFS/SMB megosztásokat fölcsatolni. Kérje meg a rendszergazdát, hogy telepítse a szükséges programot." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/hu_HU/files_sharing.po b/l10n/hu_HU/files_sharing.po index 0534ea09d4..5ec7cac763 100644 --- a/l10n/hu_HU/files_sharing.po +++ b/l10n/hu_HU/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-31 00:04+0100\n" -"PO-Revision-Date: 2012-12-30 17:39+0000\n" -"Last-Translator: Laszlo Tornoci \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,24 +26,24 @@ msgstr "Jelszó" msgid "Submit" msgstr "Elküld" -#: templates/public.php:17 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s megosztotta Önnel ezt a mappát: %s" -#: templates/public.php:19 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s megosztotta Önnel ezt az állományt: %s" -#: templates/public.php:22 templates/public.php:38 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Letöltés" -#: templates/public.php:37 +#: templates/public.php:40 msgid "No preview available for" msgstr "Nem áll rendelkezésre előnézet ehhez: " -#: templates/public.php:43 +#: templates/public.php:50 msgid "web services under your control" msgstr "webszolgáltatások saját kézben" diff --git a/l10n/hu_HU/files_trashbin.po b/l10n/hu_HU/files_trashbin.po index c035242eb2..bf38caacad 100644 --- a/l10n/hu_HU/files_trashbin.po +++ b/l10n/hu_HU/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/files_versions.po b/l10n/hu_HU/files_versions.po index f166ccc2e3..2202da640b 100644 --- a/l10n/hu_HU/files_versions.po +++ b/l10n/hu_HU/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-01 00:05+0100\n" -"PO-Revision-Date: 2013-02-27 23:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -41,11 +41,11 @@ msgstr "nem sikerült" msgid "File %s could not be reverted to version %s" msgstr "%s állományt nem sikerült átállítani erre a változatra: %s" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "Nincs régebbi változat" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "Nincs megadva az útvonal" diff --git a/l10n/hu_HU/lib.po b/l10n/hu_HU/lib.po index f82cf57021..4251d9809f 100644 --- a/l10n/hu_HU/lib.po +++ b/l10n/hu_HU/lib.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" -"Last-Translator: Laszlo Tornoci \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po index 8d9d0e1c0f..61bef74075 100644 --- a/l10n/hu_HU/settings.po +++ b/l10n/hu_HU/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -124,44 +124,44 @@ msgstr "Frissítve" msgid "Saving..." msgstr "Mentés..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "törölve" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "visszavonás" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "A felhasználót nem sikerült eltávolítáni" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Csoportok" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Csoportadminisztrátor" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Törlés" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "csoport hozzáadása" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "Érvényes felhasználónevet kell megadnia" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "A felhasználó nem hozható létre" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "Érvényes jelszót kell megadnia" diff --git a/l10n/hu_HU/user_ldap.po b/l10n/hu_HU/user_ldap.po index d7f7177ba7..7e833a6522 100644 --- a/l10n/hu_HU/user_ldap.po +++ b/l10n/hu_HU/user_ldap.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" -"Last-Translator: Laszlo Tornoci \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/hu_HU/user_webdavauth.po b/l10n/hu_HU/user_webdavauth.po index f661c0e4ee..d7f60e3f90 100644 --- a/l10n/hu_HU/user_webdavauth.po +++ b/l10n/hu_HU/user_webdavauth.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-29 00:04+0100\n" -"PO-Revision-Date: 2013-01-28 11:27+0000\n" -"Last-Translator: akoscomp \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,7 +26,7 @@ msgstr "WebDAV hitelesítés" msgid "URL: http://" msgstr "URL: http://" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/hy/files.po b/l10n/hy/files.po index a68a0138b8..6548eb6fba 100644 --- a/l10n/hy/files.po +++ b/l10n/hy/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-08 02:12+0200\n" -"PO-Revision-Date: 2013-04-08 00:13+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" diff --git a/l10n/hy/files_external.po b/l10n/hy/files_external.po index 6563d68691..262948abfc 100644 --- a/l10n/hy/files_external.po +++ b/l10n/hy/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" @@ -37,13 +37,13 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:421 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:424 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/hy/files_trashbin.po b/l10n/hy/files_trashbin.po index 110ce8444c..2cde2eb10a 100644 --- a/l10n/hy/files_trashbin.po +++ b/l10n/hy/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-08 02:12+0200\n" -"PO-Revision-Date: 2013-04-08 00:13+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" diff --git a/l10n/hy/settings.po b/l10n/hy/settings.po index 170d774b3c..afe7a74849 100644 --- a/l10n/hy/settings.po +++ b/l10n/hy/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" @@ -100,6 +100,10 @@ msgstr "" msgid "Please wait...." msgstr "" +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" +msgstr "" + #: js/apps.js:90 msgid "Updating...." msgstr "" @@ -108,10 +112,6 @@ msgstr "" msgid "Error while updating app" msgstr "" -#: js/apps.js:93 -msgid "Error" -msgstr "" - #: js/apps.js:96 msgid "Updated" msgstr "" @@ -120,44 +120,44 @@ msgstr "" msgid "Saving..." msgstr "" -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Ջնջել" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" diff --git a/l10n/ia/core.po b/l10n/ia/core.po index a43d57ba72..25be34611f 100644 --- a/l10n/ia/core.po +++ b/l10n/ia/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-02 00:03+0200\n" -"PO-Revision-Date: 2013-03-31 22:12+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -161,76 +161,76 @@ msgstr "Decembre" msgid "Settings" msgstr "Configurationes" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:126 -msgid "Choose" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" msgstr "" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Cancellar" -#: js/oc-dialogs.js:162 -msgid "No" +#: js/oc-dialogs.js:185 +msgid "Choose" msgstr "" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:180 -msgid "Ok" +#: js/oc-dialogs.js:222 +msgid "No" msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 @@ -238,8 +238,10 @@ msgstr "" msgid "The object type is not specified." msgstr "" -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 #: js/share.js:589 msgid "Error" msgstr "" @@ -532,23 +534,23 @@ msgstr "essera usate" msgid "Database user" msgstr "Usator de base de datos" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Contrasigno de base de datos" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Nomine de base de datos" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Hospite de base de datos" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "" diff --git a/l10n/ia/files.po b/l10n/ia/files.po index ad9b1aea13..bd599c7c1b 100644 --- a/l10n/ia/files.po +++ b/l10n/ia/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-08 02:12+0200\n" -"PO-Revision-Date: 2013-04-08 00:13+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/files_encryption.po b/l10n/ia/files_encryption.po index 11e4cc8eb8..1fae34d8cc 100644 --- a/l10n/ia/files_encryption.po +++ b/l10n/ia/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/files_external.po b/l10n/ia/files_external.po index e79169bb21..f840fe05c1 100644 --- a/l10n/ia/files_external.po +++ b/l10n/ia/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -37,13 +37,13 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:421 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:424 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/ia/files_sharing.po b/l10n/ia/files_sharing.po index 05ecbbb146..9c831a86e5 100644 --- a/l10n/ia/files_sharing.po +++ b/l10n/ia/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-22 01:14+0200\n" -"PO-Revision-Date: 2012-09-21 23:15+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,24 +25,24 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "" -#: templates/public.php:37 +#: templates/public.php:50 msgid "web services under your control" msgstr "" diff --git a/l10n/ia/files_trashbin.po b/l10n/ia/files_trashbin.po index 8ac8c8f293..e64cfd2633 100644 --- a/l10n/ia/files_trashbin.po +++ b/l10n/ia/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-08 02:12+0200\n" -"PO-Revision-Date: 2013-04-08 00:13+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/files_versions.po b/l10n/ia/files_versions.po index 400157adb8..3717ffc9d4 100644 --- a/l10n/ia/files_versions.po +++ b/l10n/ia/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -40,11 +40,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/ia/lib.po b/l10n/ia/lib.po index c61f3e4c67..318fe7a9c6 100644 --- a/l10n/ia/lib.po +++ b/l10n/ia/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-02 00:03+0200\n" -"PO-Revision-Date: 2013-03-31 22:13+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/settings.po b/l10n/ia/settings.po index 1c72de58d9..41b5e193ab 100644 --- a/l10n/ia/settings.po +++ b/l10n/ia/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-11 02:09+0200\n" -"PO-Revision-Date: 2013-04-10 10:00+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/user_ldap.po b/l10n/ia/user_ldap.po index 602cde8f9a..456021e477 100644 --- a/l10n/ia/user_ldap.po +++ b/l10n/ia/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-02 00:03+0100\n" -"PO-Revision-Date: 2013-03-01 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -86,248 +86,248 @@ msgstr "" msgid "Server configuration" msgstr "" -#: templates/settings.php:18 +#: templates/settings.php:31 msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:23 +#: templates/settings.php:36 msgid "Host" msgstr "" -#: templates/settings.php:25 +#: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:26 +#: templates/settings.php:39 msgid "Base DN" msgstr "" -#: templates/settings.php:27 +#: templates/settings.php:40 msgid "One Base DN per line" msgstr "" -#: templates/settings.php:28 +#: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" -#: templates/settings.php:30 +#: templates/settings.php:43 msgid "User DN" msgstr "" -#: templates/settings.php:32 +#: templates/settings.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 "" -#: templates/settings.php:33 +#: templates/settings.php:46 msgid "Password" msgstr "" -#: templates/settings.php:36 +#: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:37 +#: templates/settings.php:50 msgid "User Login Filter" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:55 msgid "User List Filter" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." msgstr "" -#: templates/settings.php:47 +#: templates/settings.php:60 msgid "Group Filter" msgstr "" -#: templates/settings.php:50 +#: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:68 msgid "Connection Settings" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "Configuration Active" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:71 msgid "Port" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:73 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Use TLS" msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" -#: templates/settings.php:63 +#: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Not recommended, use for testing only." msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:67 +#: templates/settings.php:80 msgid "Directory Settings" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "Base User Tree" msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:71 +#: templates/settings.php:84 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:71 templates/settings.php:74 +#: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:74 +#: templates/settings.php:87 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:88 msgid "Group-Member association" msgstr "" -#: templates/settings.php:77 +#: templates/settings.php:90 msgid "Special Attributes" msgstr "" -#: templates/settings.php:79 +#: templates/settings.php:92 msgid "Quota Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "Quota Default" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "in bytes" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:94 msgid "Email Field" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Test Configuration" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Help" msgstr "Adjuta" diff --git a/l10n/ia/user_webdavauth.po b/l10n/ia/user_webdavauth.po index cee575b438..dde76722d6 100644 --- a/l10n/ia/user_webdavauth.po +++ b/l10n/ia/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -25,7 +25,7 @@ msgstr "" msgid "URL: http://" msgstr "" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/id/core.po b/l10n/id/core.po index d84472d76c..c45ad98fd2 100644 --- a/l10n/id/core.po +++ b/l10n/id/core.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-10 02:08+0200\n" -"PO-Revision-Date: 2013-04-09 14:40+0000\n" -"Last-Translator: rodin \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -167,55 +167,55 @@ msgstr "Desember" msgid "Settings" msgstr "Setelan" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "beberapa detik yang lalu" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "1 menit yang lalu" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{minutes} menit yang lalu" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "1 jam yang lalu" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{hours} jam yang lalu" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "hari ini" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "kemarin" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "{days} hari yang lalu" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "bulan kemarin" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "{months} bulan yang lalu" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "beberapa bulan lalu" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "tahun kemarin" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "beberapa tahun lalu" @@ -540,23 +540,23 @@ msgstr "akan digunakan" msgid "Database user" msgstr "Pengguna basis data" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Sandi basis data" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Nama basis data" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Tablespace basis data" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Host basis data" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Selesaikan instalasi" diff --git a/l10n/id/files.po b/l10n/id/files.po index 591a4e843b..998d6e5006 100644 --- a/l10n/id/files.po +++ b/l10n/id/files.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-10 02:08+0200\n" -"PO-Revision-Date: 2013-04-09 14:40+0000\n" -"Last-Translator: rodin \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/id/files_encryption.po b/l10n/id/files_encryption.po index 7a7d4d5211..6adbc04ba9 100644 --- a/l10n/id/files_encryption.po +++ b/l10n/id/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-21 00:14+0100\n" -"PO-Revision-Date: 2013-02-20 03:12+0000\n" -"Last-Translator: w41l \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/id/files_external.po b/l10n/id/files_external.po index 2772346657..8ee624833a 100644 --- a/l10n/id/files_external.po +++ b/l10n/id/files_external.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-10 02:08+0200\n" -"PO-Revision-Date: 2013-04-09 14:40+0000\n" -"Last-Translator: rodin \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/id/files_sharing.po b/l10n/id/files_sharing.po index 9bd840324e..0efab864e7 100644 --- a/l10n/id/files_sharing.po +++ b/l10n/id/files_sharing.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-10 02:08+0200\n" -"PO-Revision-Date: 2013-04-09 14:40+0000\n" -"Last-Translator: rodin \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/id/files_trashbin.po b/l10n/id/files_trashbin.po index 060a99434e..fde2b7d5cb 100644 --- a/l10n/id/files_trashbin.po +++ b/l10n/id/files_trashbin.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-10 02:08+0200\n" -"PO-Revision-Date: 2013-04-09 14:10+0000\n" -"Last-Translator: rodin \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/id/files_versions.po b/l10n/id/files_versions.po index 2dd987695e..f63611d434 100644 --- a/l10n/id/files_versions.po +++ b/l10n/id/files_versions.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-10 02:08+0200\n" -"PO-Revision-Date: 2013-04-09 14:40+0000\n" -"Last-Translator: rodin \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/id/lib.po b/l10n/id/lib.po index bd9587aa65..d014bc056e 100644 --- a/l10n/id/lib.po +++ b/l10n/id/lib.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-10 02:08+0200\n" -"PO-Revision-Date: 2013-04-09 14:40+0000\n" -"Last-Translator: rodin \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/id/settings.po b/l10n/id/settings.po index 197d26ac20..2dcd31a4c7 100644 --- a/l10n/id/settings.po +++ b/l10n/id/settings.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-10 02:08+0200\n" -"PO-Revision-Date: 2013-04-09 14:40+0000\n" -"Last-Translator: rodin \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -126,44 +126,44 @@ msgstr "Diperbarui" msgid "Saving..." msgstr "Menyimpan..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "dihapus" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "urungkan" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "Tidak dapat menghapus pengguna" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Grup" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Admin Grup" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Hapus" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "tambah grup" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "Tuliskan nama pengguna yang valid" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "Gagal membuat pengguna" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "Tuliskan sandi yang valid" diff --git a/l10n/id/user_ldap.po b/l10n/id/user_ldap.po index 75e5bbf8d9..b2e46704a2 100644 --- a/l10n/id/user_ldap.po +++ b/l10n/id/user_ldap.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-10 02:08+0200\n" -"PO-Revision-Date: 2013-04-09 14:40+0000\n" -"Last-Translator: rodin \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/id/user_webdavauth.po b/l10n/id/user_webdavauth.po index 9ae62e5a2c..0ac81cebe6 100644 --- a/l10n/id/user_webdavauth.po +++ b/l10n/id/user_webdavauth.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-05 00:19+0100\n" -"PO-Revision-Date: 2013-02-04 02:30+0000\n" -"Last-Translator: w41l \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/is/core.po b/l10n/is/core.po index 2d4e0839ee..7fffb7d1dc 100644 --- a/l10n/is/core.po +++ b/l10n/is/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -162,77 +162,77 @@ msgstr "Desember" msgid "Settings" msgstr "Stillingar" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "sek síðan" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "1 min síðan" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{minutes} min síðan" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "Fyrir 1 klst." -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "fyrir {hours} klst." -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "í dag" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "í gær" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "{days} dagar síðan" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "síðasta mánuði" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "fyrir {months} mánuðum" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "mánuðir síðan" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "síðasta ári" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "árum síðan" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Veldu" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Í lagi" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Hætta við" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Nei" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Veldu" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Já" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "Í lagi" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Nei" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -535,23 +535,23 @@ msgstr "verður notað" msgid "Database user" msgstr "Gagnagrunns notandi" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Gagnagrunns lykilorð" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Nafn gagnagrunns" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Töflusvæði gagnagrunns" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Netþjónn gagnagrunns" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Virkja uppsetningu" diff --git a/l10n/is/files.po b/l10n/is/files.po index a5153c7f0d..3b6c150aeb 100644 --- a/l10n/is/files.po +++ b/l10n/is/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:09+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/files_encryption.po b/l10n/is/files_encryption.po index 63f151c73c..e5df846e8b 100644 --- a/l10n/is/files_encryption.po +++ b/l10n/is/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/files_external.po b/l10n/is/files_external.po index 644ef518ad..f3914d98cf 100644 --- a/l10n/is/files_external.po +++ b/l10n/is/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 13:00+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -38,13 +38,13 @@ msgstr "Gefðu upp virkan Dropbox lykil og leynikóða" msgid "Error configuring Google Drive storage" msgstr "Villa kom upp við að setja upp Google Drive gagnasvæði" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Aðvörun: \"smbclient\" er ekki uppsettur. Uppsetning á CIFS/SMB gagnasvæðum er ekki möguleg. Hafðu samband við kerfisstjóra til að fá hann uppsettan." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/is/files_sharing.po b/l10n/is/files_sharing.po index d37c647555..89c5f2cc2a 100644 --- a/l10n/is/files_sharing.po +++ b/l10n/is/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-31 00:04+0100\n" -"PO-Revision-Date: 2012-12-30 15:08+0000\n" -"Last-Translator: sveinn \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,24 +26,24 @@ msgstr "Lykilorð" msgid "Submit" msgstr "Senda" -#: templates/public.php:17 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s deildi möppunni %s með þér" -#: templates/public.php:19 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s deildi skránni %s með þér" -#: templates/public.php:22 templates/public.php:38 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Niðurhal" -#: templates/public.php:37 +#: templates/public.php:40 msgid "No preview available for" msgstr "Yfirlit ekki í boði fyrir" -#: templates/public.php:43 +#: templates/public.php:50 msgid "web services under your control" msgstr "vefþjónusta undir þinni stjórn" diff --git a/l10n/is/files_trashbin.po b/l10n/is/files_trashbin.po index b6fccfcb1c..ca786d8b1c 100644 --- a/l10n/is/files_trashbin.po +++ b/l10n/is/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/files_versions.po b/l10n/is/files_versions.po index 4159653790..5717e05eff 100644 --- a/l10n/is/files_versions.po +++ b/l10n/is/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-01 00:05+0100\n" -"PO-Revision-Date: 2013-02-27 23:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -41,11 +41,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/is/lib.po b/l10n/is/lib.po index 4d18e99a26..e64d420529 100644 --- a/l10n/is/lib.po +++ b/l10n/is/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/settings.po b/l10n/is/settings.po index c26757a9a0..eea0a0b3e9 100644 --- a/l10n/is/settings.po +++ b/l10n/is/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -121,44 +121,44 @@ msgstr "" msgid "Saving..." msgstr "Er að vista ..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "afturkalla" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Hópar" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Hópstjóri" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Eyða" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" diff --git a/l10n/is/user_ldap.po b/l10n/is/user_ldap.po index 02d72b9058..6b6e486032 100644 --- a/l10n/is/user_ldap.po +++ b/l10n/is/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/user_webdavauth.po b/l10n/is/user_webdavauth.po index 8bf0557218..d87d79fafb 100644 --- a/l10n/is/user_webdavauth.po +++ b/l10n/is/user_webdavauth.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -26,7 +26,7 @@ msgstr "" msgid "URL: http://" msgstr "Vefslóð: http://" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/it/core.po b/l10n/it/core.po index 795ef1ace6..9abf2d1c04 100644 --- a/l10n/it/core.po +++ b/l10n/it/core.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -166,77 +166,77 @@ msgstr "Dicembre" msgid "Settings" msgstr "Impostazioni" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "secondi fa" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "Un minuto fa" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{minutes} minuti fa" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "1 ora fa" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{hours} ore fa" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "oggi" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "ieri" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "{days} giorni fa" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "mese scorso" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "{months} mesi fa" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "mesi fa" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "anno scorso" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "anni fa" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Scegli" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Ok" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Annulla" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "No" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Scegli" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Sì" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "Ok" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "No" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -539,23 +539,23 @@ msgstr "sarà utilizzato" msgid "Database user" msgstr "Utente del database" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Password del database" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Nome del database" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Spazio delle tabelle del database" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Host del database" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Termina la configurazione" diff --git a/l10n/it/files.po b/l10n/it/files.po index 00e752a4fc..e4a9e38f1d 100644 --- a/l10n/it/files.po +++ b/l10n/it/files.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-12 02:09+0200\n" -"PO-Revision-Date: 2013-04-11 07:10+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/it/files_encryption.po b/l10n/it/files_encryption.po index e94b789221..3839ab13a9 100644 --- a/l10n/it/files_encryption.po +++ b/l10n/it/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/files_external.po b/l10n/it/files_external.po index 84e772567c..5743de999b 100644 --- a/l10n/it/files_external.po +++ b/l10n/it/files_external.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 13:00+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -39,13 +39,13 @@ msgstr "Fornisci chiave di applicazione e segreto di Dropbox validi." msgid "Error configuring Google Drive storage" msgstr "Errore durante la configurazione dell'archivio Google Drive" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Avviso: \"smbclient\" non è installato. Impossibile montare condivisioni CIFS/SMB. Chiedi all'amministratore di sistema di installarlo." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/it/files_sharing.po b/l10n/it/files_sharing.po index aaabba1bea..38971183ab 100644 --- a/l10n/it/files_sharing.po +++ b/l10n/it/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-23 02:01+0200\n" -"PO-Revision-Date: 2012-09-22 06:41+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,24 +26,24 @@ msgstr "Password" msgid "Submit" msgstr "Invia" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s ha condiviso la cartella %s con te" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s ha condiviso il file %s con te" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Scarica" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "Nessuna anteprima disponibile per" -#: templates/public.php:37 +#: templates/public.php:50 msgid "web services under your control" msgstr "servizi web nelle tue mani" diff --git a/l10n/it/files_trashbin.po b/l10n/it/files_trashbin.po index c120324a36..4a03d9e735 100644 --- a/l10n/it/files_trashbin.po +++ b/l10n/it/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/files_versions.po b/l10n/it/files_versions.po index 57ca778df6..1acb6a0db0 100644 --- a/l10n/it/files_versions.po +++ b/l10n/it/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-01 00:05+0100\n" -"PO-Revision-Date: 2013-02-27 23:30+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -41,11 +41,11 @@ msgstr "non riuscita" msgid "File %s could not be reverted to version %s" msgstr "Il file %s non può essere ripristinato alla versione %s" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "Non sono disponibili versioni precedenti" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "Nessun percorso specificato" diff --git a/l10n/it/lib.po b/l10n/it/lib.po index 92bba9c7d3..4daad98778 100644 --- a/l10n/it/lib.po +++ b/l10n/it/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index 0e4be0b729..06ec6749b5 100644 --- a/l10n/it/settings.po +++ b/l10n/it/settings.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -127,44 +127,44 @@ msgstr "Aggiornato" msgid "Saving..." msgstr "Salvataggio in corso..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "eliminati" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "annulla" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "Impossibile rimuovere l'utente" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Gruppi" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Gruppi amministrati" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Elimina" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "aggiungi gruppo" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "Deve essere fornito un nome utente valido" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "Errore durante la creazione dell'utente" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "Deve essere fornita una password valida" diff --git a/l10n/it/user_ldap.po b/l10n/it/user_ldap.po index 36930d04bf..780bc6319c 100644 --- a/l10n/it/user_ldap.po +++ b/l10n/it/user_ldap.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/it/user_webdavauth.po b/l10n/it/user_webdavauth.po index ba6bfbe7d4..3dca23310f 100644 --- a/l10n/it/user_webdavauth.po +++ b/l10n/it/user_webdavauth.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-17 00:26+0100\n" -"PO-Revision-Date: 2013-01-16 06:51+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,7 +26,7 @@ msgstr "Autenticazione WebDAV" msgid "URL: http://" msgstr "URL: http://" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/ja_JP/core.po b/l10n/ja_JP/core.po index c4bbe6b432..ebe76b82ec 100644 --- a/l10n/ja_JP/core.po +++ b/l10n/ja_JP/core.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" -"Last-Translator: Daisuke Deguchi \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -164,77 +164,77 @@ msgstr "12月" msgid "Settings" msgstr "設定" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" -msgstr "秒前" +msgstr "数秒前" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "1 分前" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{minutes} 分前" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "1 時間前" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{hours} 時間前" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "今日" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "昨日" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "{days} 日前" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "一月前" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "{months} 月前" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "月前" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "一年前" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "年前" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "選択" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "OK" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "キャンセル" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "いいえ" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "選択" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "はい" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "OK" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "いいえ" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -537,23 +537,23 @@ msgstr "が使用されます" msgid "Database user" msgstr "データベースのユーザ名" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "データベースのパスワード" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "データベース名" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "データベースの表領域" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "データベースのホスト名" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "セットアップを完了します" diff --git a/l10n/ja_JP/files.po b/l10n/ja_JP/files.po index ebbea30f04..8ea8587439 100644 --- a/l10n/ja_JP/files.po +++ b/l10n/ja_JP/files.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:09+0200\n" -"PO-Revision-Date: 2013-04-08 12:00+0000\n" -"Last-Translator: Daisuke Deguchi \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -258,7 +258,7 @@ msgstr "保存" #: templates/index.php:7 msgid "New" -msgstr "新規" +msgstr "新規作成" #: templates/index.php:10 msgid "Text file" diff --git a/l10n/ja_JP/files_encryption.po b/l10n/ja_JP/files_encryption.po index 6d5a563dfe..4d2e89a259 100644 --- a/l10n/ja_JP/files_encryption.po +++ b/l10n/ja_JP/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/files_external.po b/l10n/ja_JP/files_external.po index 92a8319325..b084e4a066 100644 --- a/l10n/ja_JP/files_external.po +++ b/l10n/ja_JP/files_external.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 13:00+0000\n" -"Last-Translator: tt yn \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -40,13 +40,13 @@ msgstr "有効なDropboxアプリのキーとパスワードを入力して下 msgid "Error configuring Google Drive storage" msgstr "Googleドライブストレージの設定エラー" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "警告: \"smbclient\" はインストールされていません。CIFS/SMB 共有のマウントはできません。システム管理者にインストールをお願いして下さい。" -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/ja_JP/files_sharing.po b/l10n/ja_JP/files_sharing.po index 28be75107c..876ebabb36 100644 --- a/l10n/ja_JP/files_sharing.po +++ b/l10n/ja_JP/files_sharing.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-23 02:02+0200\n" -"PO-Revision-Date: 2012-10-22 11:01+0000\n" -"Last-Translator: Daisuke Deguchi \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,24 +27,24 @@ msgstr "パスワード" msgid "Submit" msgstr "送信" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s はフォルダー %s をあなたと共有中です" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s はファイル %s をあなたと共有中です" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "ダウンロード" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "プレビューはありません" -#: templates/public.php:35 +#: templates/public.php:50 msgid "web services under your control" msgstr "管理下のウェブサービス" diff --git a/l10n/ja_JP/files_trashbin.po b/l10n/ja_JP/files_trashbin.po index 16d0be2a1a..f16dc84de5 100644 --- a/l10n/ja_JP/files_trashbin.po +++ b/l10n/ja_JP/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/files_versions.po b/l10n/ja_JP/files_versions.po index 7b11e7cf48..d052012496 100644 --- a/l10n/ja_JP/files_versions.po +++ b/l10n/ja_JP/files_versions.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-02 00:03+0100\n" -"PO-Revision-Date: 2013-03-01 05:10+0000\n" -"Last-Translator: tt yn \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/ja_JP/lib.po b/l10n/ja_JP/lib.po index 555153ff9e..8d6bc8df10 100644 --- a/l10n/ja_JP/lib.po +++ b/l10n/ja_JP/lib.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" -"Last-Translator: tt yn \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -192,7 +192,7 @@ msgstr "インストールガイドをよく確認してくだ #: template.php:113 msgid "seconds ago" -msgstr "秒前" +msgstr "数秒前" #: template.php:114 msgid "1 minute ago" diff --git a/l10n/ja_JP/settings.po b/l10n/ja_JP/settings.po index 1218f5a5f9..265d861a3d 100644 --- a/l10n/ja_JP/settings.po +++ b/l10n/ja_JP/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" @@ -125,44 +125,44 @@ msgstr "更新済み" msgid "Saving..." msgstr "保存中..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "削除" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "元に戻す" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "ユーザを削除出来ません" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "グループ" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "グループ管理者" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "削除" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "グループを追加" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "有効なユーザ名を指定する必要があります" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "ユーザ作成エラー" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "有効なパスワードを指定する必要があります" @@ -337,7 +337,7 @@ msgid "" "licensed under the AGPL." -msgstr "ownCloud communityにより開発されています、ソースコードライセンスは、AGPL ライセンスにより提供されています。" +msgstr "ownCloud コミュニティにより開発されています。 ソースコードは、AGPL ライセンスの下で提供されています。" #: templates/apps.php:11 msgid "Add your App" @@ -394,11 +394,11 @@ msgstr "現在、%s / %s を利用していま #: templates/personal.php:15 msgid "Get the apps to sync your files" -msgstr "あなたのファイルを同期するためのアプリを取得" +msgstr "ファイルを同期するためのアプリを取得" #: templates/personal.php:26 msgid "Show First Run Wizard again" -msgstr "初回実行ウィザードを再度表示する" +msgstr "初回ウィザードを再表示する" #: templates/personal.php:37 templates/users.php:23 templates/users.php:79 msgid "Password" diff --git a/l10n/ja_JP/user_ldap.po b/l10n/ja_JP/user_ldap.po index b5271f2653..75cc31572a 100644 --- a/l10n/ja_JP/user_ldap.po +++ b/l10n/ja_JP/user_ldap.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" -"Last-Translator: Daisuke Deguchi \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/ja_JP/user_webdavauth.po b/l10n/ja_JP/user_webdavauth.po index 966cae8416..3b17802d24 100644 --- a/l10n/ja_JP/user_webdavauth.po +++ b/l10n/ja_JP/user_webdavauth.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-17 00:26+0100\n" -"PO-Revision-Date: 2013-01-16 05:50+0000\n" -"Last-Translator: Daisuke Deguchi \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,7 +27,7 @@ msgstr "WebDAV 認証" msgid "URL: http://" msgstr "URL: http://" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/ka/core.po b/l10n/ka/core.po index fff9226e31..cb2aaf68ff 100644 --- a/l10n/ka/core.po +++ b/l10n/ka/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:10+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -160,76 +160,76 @@ msgstr "" msgid "Settings" msgstr "" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "წამის წინ" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "1 წუთის წინ" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "1 საათის წინ" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "დღეს" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "გუშინ" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:126 -msgid "Choose" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" msgstr "" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:162 -msgid "No" +#: js/oc-dialogs.js:185 +msgid "Choose" msgstr "" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:180 -msgid "Ok" +#: js/oc-dialogs.js:222 +msgid "No" msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 @@ -237,9 +237,11 @@ msgstr "" msgid "The object type is not specified." msgstr "" -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 -#: js/share.js:578 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 msgid "Error" msgstr "" @@ -259,7 +261,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:125 js/share.js:606 +#: js/share.js:125 js/share.js:617 msgid "Error while sharing" msgstr "" @@ -319,59 +321,59 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:240 +#: js/share.js:251 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:276 +#: js/share.js:287 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:297 +#: js/share.js:308 msgid "Unshare" msgstr "" -#: js/share.js:309 +#: js/share.js:320 msgid "can edit" msgstr "" -#: js/share.js:311 +#: js/share.js:322 msgid "access control" msgstr "" -#: js/share.js:314 +#: js/share.js:325 msgid "create" msgstr "" -#: js/share.js:317 +#: js/share.js:328 msgid "update" msgstr "" -#: js/share.js:320 +#: js/share.js:331 msgid "delete" msgstr "" -#: js/share.js:323 +#: js/share.js:334 msgid "share" msgstr "" -#: js/share.js:357 js/share.js:553 +#: js/share.js:368 js/share.js:564 msgid "Password protected" msgstr "" -#: js/share.js:566 +#: js/share.js:577 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:578 +#: js/share.js:589 msgid "Error setting expiration date" msgstr "" -#: js/share.js:593 +#: js/share.js:604 msgid "Sending ..." msgstr "" -#: js/share.js:604 +#: js/share.js:615 msgid "Email sent" msgstr "" @@ -531,23 +533,23 @@ msgstr "" msgid "Database user" msgstr "" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "" diff --git a/l10n/ka/files.po b/l10n/ka/files.po index 342f9ca6aa..93cf94b26a 100644 --- a/l10n/ka/files.po +++ b/l10n/ka/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-08 02:12+0200\n" -"PO-Revision-Date: 2013-04-08 00:13+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka/files_encryption.po b/l10n/ka/files_encryption.po index 5321e594c3..adea9e1d6f 100644 --- a/l10n/ka/files_encryption.po +++ b/l10n/ka/files_encryption.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-27 00:08+0100\n" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/ka/files_external.po b/l10n/ka/files_external.po index ff99ab0648..5a7c867641 100644 --- a/l10n/ka/files_external.po +++ b/l10n/ka/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -37,13 +37,13 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:421 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:424 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/ka/files_sharing.po b/l10n/ka/files_sharing.po index f4c48c38cd..3d6704f80b 100644 --- a/l10n/ka/files_sharing.po +++ b/l10n/ka/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-27 14:34+0100\n" -"PO-Revision-Date: 2013-02-27 04:40+0000\n" -"Last-Translator: GeoCybers \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -36,14 +36,14 @@ msgstr "" msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:19 templates/public.php:37 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "გადმოწერა" -#: templates/public.php:34 +#: templates/public.php:40 msgid "No preview available for" msgstr "" -#: templates/public.php:43 +#: templates/public.php:50 msgid "web services under your control" msgstr "" diff --git a/l10n/ka/files_trashbin.po b/l10n/ka/files_trashbin.po index c20b8f1e13..f1f26c53dd 100644 --- a/l10n/ka/files_trashbin.po +++ b/l10n/ka/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-08 02:12+0200\n" -"PO-Revision-Date: 2013-04-08 00:13+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka/files_versions.po b/l10n/ka/files_versions.po index 4f6c948624..55ea3250c2 100644 --- a/l10n/ka/files_versions.po +++ b/l10n/ka/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -40,11 +40,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/ka/lib.po b/l10n/ka/lib.po index 607e49334b..c401f407ac 100644 --- a/l10n/ka/lib.po +++ b/l10n/ka/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:10+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka/settings.po b/l10n/ka/settings.po index f0d51ede95..1d2ec64e03 100644 --- a/l10n/ka/settings.po +++ b/l10n/ka/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -100,6 +100,10 @@ msgstr "" msgid "Please wait...." msgstr "" +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" +msgstr "" + #: js/apps.js:90 msgid "Updating...." msgstr "" @@ -108,10 +112,6 @@ msgstr "" msgid "Error while updating app" msgstr "" -#: js/apps.js:93 -msgid "Error" -msgstr "" - #: js/apps.js:96 msgid "Updated" msgstr "" @@ -120,44 +120,44 @@ msgstr "" msgid "Saving..." msgstr "" -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" diff --git a/l10n/ka/user_ldap.po b/l10n/ka/user_ldap.po index a49552a01f..0dfd81d2bb 100644 --- a/l10n/ka/user_ldap.po +++ b/l10n/ka/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-02 00:03+0100\n" -"PO-Revision-Date: 2013-03-01 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -86,248 +86,248 @@ msgstr "" msgid "Server configuration" msgstr "" -#: templates/settings.php:18 +#: templates/settings.php:31 msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:23 +#: templates/settings.php:36 msgid "Host" msgstr "" -#: templates/settings.php:25 +#: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:26 +#: templates/settings.php:39 msgid "Base DN" msgstr "" -#: templates/settings.php:27 +#: templates/settings.php:40 msgid "One Base DN per line" msgstr "" -#: templates/settings.php:28 +#: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" -#: templates/settings.php:30 +#: templates/settings.php:43 msgid "User DN" msgstr "" -#: templates/settings.php:32 +#: templates/settings.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 "" -#: templates/settings.php:33 +#: templates/settings.php:46 msgid "Password" msgstr "პაროლი" -#: templates/settings.php:36 +#: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:37 +#: templates/settings.php:50 msgid "User Login Filter" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:55 msgid "User List Filter" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." msgstr "" -#: templates/settings.php:47 +#: templates/settings.php:60 msgid "Group Filter" msgstr "" -#: templates/settings.php:50 +#: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:68 msgid "Connection Settings" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "Configuration Active" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:71 msgid "Port" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:73 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Use TLS" msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" -#: templates/settings.php:63 +#: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Not recommended, use for testing only." msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:67 +#: templates/settings.php:80 msgid "Directory Settings" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "Base User Tree" msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:71 +#: templates/settings.php:84 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:71 templates/settings.php:74 +#: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:74 +#: templates/settings.php:87 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:88 msgid "Group-Member association" msgstr "" -#: templates/settings.php:77 +#: templates/settings.php:90 msgid "Special Attributes" msgstr "" -#: templates/settings.php:79 +#: templates/settings.php:92 msgid "Quota Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "Quota Default" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "in bytes" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:94 msgid "Email Field" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Test Configuration" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Help" msgstr "შველა" diff --git a/l10n/ka/user_webdavauth.po b/l10n/ka/user_webdavauth.po index 3c15980932..9cc3db2b60 100644 --- a/l10n/ka/user_webdavauth.po +++ b/l10n/ka/user_webdavauth.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-27 00:08+0100\n" -"PO-Revision-Date: 2012-11-09 09:06+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/ka_GE/core.po b/l10n/ka_GE/core.po index 8f28e3ceb9..8da06db432 100644 --- a/l10n/ka_GE/core.po +++ b/l10n/ka_GE/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-13 02:12+0200\n" -"PO-Revision-Date: 2013-04-12 07:48+0000\n" -"Last-Translator: drlinux64 \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -162,55 +162,55 @@ msgstr "დეკემბერი" msgid "Settings" msgstr "პარამეტრები" -#: js/js.js:717 +#: js/js.js:718 msgid "seconds ago" msgstr "წამის წინ" -#: js/js.js:718 +#: js/js.js:719 msgid "1 minute ago" msgstr "1 წუთის წინ" -#: js/js.js:719 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{minutes} წუთის წინ" -#: js/js.js:720 +#: js/js.js:721 msgid "1 hour ago" msgstr "1 საათის წინ" -#: js/js.js:721 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{hours} საათის წინ" -#: js/js.js:722 +#: js/js.js:723 msgid "today" msgstr "დღეს" -#: js/js.js:723 +#: js/js.js:724 msgid "yesterday" msgstr "გუშინ" -#: js/js.js:724 +#: js/js.js:725 msgid "{days} days ago" msgstr "{days} დღის წინ" -#: js/js.js:725 +#: js/js.js:726 msgid "last month" msgstr "გასულ თვეში" -#: js/js.js:726 +#: js/js.js:727 msgid "{months} months ago" msgstr "{months} თვის წინ" -#: js/js.js:727 +#: js/js.js:728 msgid "months ago" msgstr "თვის წინ" -#: js/js.js:728 +#: js/js.js:729 msgid "last year" msgstr "ბოლო წელს" -#: js/js.js:729 +#: js/js.js:730 msgid "years ago" msgstr "წლის წინ" @@ -535,23 +535,23 @@ msgstr "გამოყენებული იქნება" msgid "Database user" msgstr "მონაცემთა ბაზის მომხმარებელი" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "მონაცემთა ბაზის პაროლი" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "მონაცემთა ბაზის სახელი" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "ბაზის ცხრილის ზომა" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "მონაცემთა ბაზის ჰოსტი" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "კონფიგურაციის დასრულება" diff --git a/l10n/ka_GE/files.po b/l10n/ka_GE/files.po index fd27bc6ca2..b23917765c 100644 --- a/l10n/ka_GE/files.po +++ b/l10n/ka_GE/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-13 02:12+0200\n" -"PO-Revision-Date: 2013-04-12 07:49+0000\n" -"Last-Translator: drlinux64 \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/ka_GE/files_encryption.po b/l10n/ka_GE/files_encryption.po index c0eb489fc8..b1bc051547 100644 --- a/l10n/ka_GE/files_encryption.po +++ b/l10n/ka_GE/files_encryption.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-13 02:12+0200\n" -"PO-Revision-Date: 2013-04-12 14:10+0000\n" -"Last-Translator: drlinux64 \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/ka_GE/files_external.po b/l10n/ka_GE/files_external.po index c9092e688d..54bce79203 100644 --- a/l10n/ka_GE/files_external.po +++ b/l10n/ka_GE/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-13 02:12+0200\n" -"PO-Revision-Date: 2013-04-12 14:30+0000\n" -"Last-Translator: drlinux64 \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/ka_GE/files_sharing.po b/l10n/ka_GE/files_sharing.po index 2edbce0e43..0d46e1c1a5 100644 --- a/l10n/ka_GE/files_sharing.po +++ b/l10n/ka_GE/files_sharing.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-13 02:12+0200\n" -"PO-Revision-Date: 2013-04-12 11:09+0000\n" -"Last-Translator: drlinux64 \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/ka_GE/files_trashbin.po b/l10n/ka_GE/files_trashbin.po index 6e8e37e818..ec48b3823a 100644 --- a/l10n/ka_GE/files_trashbin.po +++ b/l10n/ka_GE/files_trashbin.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-13 02:12+0200\n" -"PO-Revision-Date: 2013-04-12 07:30+0000\n" -"Last-Translator: drlinux64 \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/ka_GE/files_versions.po b/l10n/ka_GE/files_versions.po index 77b0ca0d8d..ecda637d05 100644 --- a/l10n/ka_GE/files_versions.po +++ b/l10n/ka_GE/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-13 02:12+0200\n" -"PO-Revision-Date: 2013-04-12 14:10+0000\n" -"Last-Translator: drlinux64 \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/ka_GE/lib.po b/l10n/ka_GE/lib.po index 75c4fc2139..c36273be03 100644 --- a/l10n/ka_GE/lib.po +++ b/l10n/ka_GE/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-13 02:12+0200\n" -"PO-Revision-Date: 2013-04-12 11:09+0000\n" -"Last-Translator: drlinux64 \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/ka_GE/settings.po b/l10n/ka_GE/settings.po index 29025ab733..dd0f972d50 100644 --- a/l10n/ka_GE/settings.po +++ b/l10n/ka_GE/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-15 02:10+0200\n" -"PO-Revision-Date: 2013-04-14 15:20+0000\n" -"Last-Translator: drlinux64 \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/ka_GE/user_ldap.po b/l10n/ka_GE/user_ldap.po index ebde56128d..69e1df8eac 100644 --- a/l10n/ka_GE/user_ldap.po +++ b/l10n/ka_GE/user_ldap.po @@ -3,12 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Romeo Pirtskhalava , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-13 02:12+0200\n" -"PO-Revision-Date: 2013-04-12 07:50+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -19,76 +20,76 @@ msgstr "" #: ajax/deleteConfiguration.php:34 msgid "Failed to delete the server configuration" -msgstr "" +msgstr "შეცდომა სერვერის კონფიგურაციის წაშლისას" #: ajax/testConfiguration.php:36 msgid "The configuration is valid and the connection could be established!" -msgstr "" +msgstr "კონფიგურაცია მართებულია და კავშირი დამყარდება!" #: ajax/testConfiguration.php:39 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." -msgstr "" +msgstr "კონფიგურაცია მართებულია, მაგრამ მიერთება ვერ მოხერხდა. გთხოვთ შეამოწმოთ სერვერის პარამეტრები და აუთენთიკაციის პარამეტრები." #: ajax/testConfiguration.php:43 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." -msgstr "" +msgstr "კონფიგურაცია არ არის მართებული. გთხოვთ ჩაიხედოთ დეტალური ინფორმაციისთვის ownCloud –ის ლოგში." #: js/settings.js:66 msgid "Deletion failed" -msgstr "წაშლის ველი" +msgstr "წაშლა ვერ განხორციელდა" #: js/settings.js:82 msgid "Take over settings from recent server configuration?" -msgstr "" +msgstr "დაბრუნდებით სერვერის წინა კონფიგურაციაში?" #: js/settings.js:83 msgid "Keep settings?" -msgstr "" +msgstr "დავტოვოთ პარამეტრები?" #: js/settings.js:97 msgid "Cannot add server configuration" -msgstr "" +msgstr "სერვერის პარამეტრების დამატება ვერ მოხერხდა" #: js/settings.js:121 msgid "Connection test succeeded" -msgstr "" +msgstr "კავშირის ტესტირება მოხერხდა" #: js/settings.js:126 msgid "Connection test failed" -msgstr "" +msgstr "კავშირის ტესტირება ვერ მოხერხდა" #: js/settings.js:136 msgid "Do you really want to delete the current Server Configuration?" -msgstr "" +msgstr "ნამდვილად გინდათ წაშალოთ სერვერის მიმდინარე პარამეტრები?" #: js/settings.js:137 msgid "Confirm Deletion" -msgstr "" +msgstr "წაშლის დადასტურება" #: templates/settings.php:8 msgid "" "Warning: Apps user_ldap and user_webdavauth are incompatible. You may" " experience unexpected behaviour. Please ask your system administrator to " "disable one of them." -msgstr "" +msgstr "გაფრთხილება: აპლიკაციის user_ldap და user_webdavauth არათავსებადია. თქვენ შეიძლება შეეჩეხოთ მოულოდნელ შშედეგებს. თხოვეთ თქვენს ადმინისტრატორს ჩათიშოს ერთერთი." #: templates/settings.php:11 msgid "" "Warning: The PHP LDAP module is not installed, the backend will not " "work. Please ask your system administrator to install it." -msgstr "" +msgstr "გაფრთხილება: PHP LDAP მოდული არ არის ინსტალირებული, ბექენდი არ იმუშავებს. თხოვეთ თქვენს ადმინისტრატორს დააინსტალიროს ის." #: templates/settings.php:15 msgid "Server configuration" -msgstr "" +msgstr "სერვერის პარამეტრები" #: templates/settings.php:31 msgid "Add Server Configuration" -msgstr "" +msgstr "სერვერის პარამეტრების დამატება" #: templates/settings.php:36 msgid "Host" @@ -97,90 +98,90 @@ msgstr "ჰოსტი" #: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" -msgstr "" +msgstr "თქვენ შეგიძლიათ გამოტოვოთ პროტოკოლი. გარდა ამისა გჭირდებათ SSL. შემდეგ დაიწყეთ ldaps://" #: templates/settings.php:39 msgid "Base DN" -msgstr "" +msgstr "საწყისი DN" #: templates/settings.php:40 msgid "One Base DN per line" -msgstr "" +msgstr "ერთი საწყისი DN ერთ ხაზზე" #: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "" +msgstr "თქვენ შეგიძლიათ მიუთითოთ საწყისი DN მომხმარებლებისთვის და ჯგუფებისთვის Advanced ტაბში" #: templates/settings.php:43 msgid "User DN" -msgstr "" +msgstr "მომხმარებლის DN" #: templates/settings.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/settings.php:46 msgid "Password" -msgstr "" +msgstr "პაროლი" #: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." -msgstr "" +msgstr "ანონიმური დაშვებისთვის, დატოვეთ DN–ის და პაროლის ველები ცარიელი." #: templates/settings.php:50 msgid "User Login Filter" -msgstr "" +msgstr "მომხმარებლის ფილტრი" #: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." -msgstr "" +msgstr "როცა შემოსვლა განხორციელდება ასეიძლება მოვახდინოთ გაფილტვრა. %%uid შეიცვლება იუზერნეიმით მომხმარებლის ველში." #: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" -msgstr "" +msgstr "გამოიყენეთ %%uid დამასრულებელი მაგ: \"uid=%%uid\"" #: templates/settings.php:55 msgid "User List Filter" -msgstr "" +msgstr "მომხმარებლებიის სიის ფილტრი" #: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." -msgstr "" +msgstr "გაფილტვრა განხორციელდება, როცა მომხმარებლების სია ჩამოიტვირთება." #: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." -msgstr "" +msgstr "ყოველგვარი დამასრულებელის გარეშე, მაგ: \"objectClass=person\"." #: templates/settings.php:60 msgid "Group Filter" -msgstr "" +msgstr "ჯგუფის ფილტრი" #: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." -msgstr "" +msgstr "გაფილტვრა განხორციელდება, როცა ჯგუფის სია ჩამოიტვირთება." #: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." -msgstr "" +msgstr "ყოველგვარი დამასრულებელის გარეშე, მაგ: \"objectClass=posixGroup\"." #: templates/settings.php:68 msgid "Connection Settings" -msgstr "" +msgstr "კავშირის პარამეტრები" #: templates/settings.php:70 msgid "Configuration Active" -msgstr "" +msgstr "კონფიგურაცია აქტიურია" #: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." -msgstr "" +msgstr "როცა გადანიშნულია, ეს კონფიგურაცია გამოტოვებული იქნება." #: templates/settings.php:71 msgid "Port" @@ -188,145 +189,145 @@ msgstr "პორტი" #: templates/settings.php:72 msgid "Backup (Replica) Host" -msgstr "" +msgstr "ბექაფ (რეპლიკა) ჰოსტი" #: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." -msgstr "" +msgstr "მიუთითეთ რაიმე ბექაფ ჰოსტი. ის უნდა იყოს ძირითადი LDAP/AD სერვერის რეპლიკა." #: templates/settings.php:73 msgid "Backup (Replica) Port" -msgstr "" +msgstr "ბექაფ (რეპლიკა) პორტი" #: templates/settings.php:74 msgid "Disable Main Server" -msgstr "" +msgstr "გამორთეთ ძირითადი სერვერი" #: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." -msgstr "" +msgstr "როცა მონიშნულია, ownCloud დაუკავშირდება მხოლოდ რეპლიკა სერვერს." #: templates/settings.php:75 msgid "Use TLS" -msgstr "" +msgstr "გამოიყენეთ TLS" #: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "" +msgstr "არ გამოიყენოთ დამატებით LDAPS კავშირი. ის წარუმატებლად დასრულდება." #: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" -msgstr "" +msgstr "LDAP server (Windows)" #: templates/settings.php:77 msgid "Turn off SSL certificate validation." -msgstr "" +msgstr "გამორთეთ SSL სერთიფიკატის ვალიდაცია." #: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." -msgstr "" +msgstr "იმ შემთხვევაში თუ მუშაობს მხოლოდ ეს ოფცია, დააიმპორტეთ LDAP სერვერის SSL სერთიფიკატი თქვენს ownCloud სერვერზე." #: templates/settings.php:77 msgid "Not recommended, use for testing only." -msgstr "" +msgstr "არ არის რეკომენდირებული, გამოიყენეთ მხოლოდ სატესტოდ." #: templates/settings.php:78 msgid "Cache Time-To-Live" -msgstr "" +msgstr "ქეშის სიცოცხლის ხანგრძლივობა" #: templates/settings.php:78 msgid "in seconds. A change empties the cache." -msgstr "" +msgstr "წამებში. ცვლილება ასუფთავებს ქეშს." #: templates/settings.php:80 msgid "Directory Settings" -msgstr "" +msgstr "დირექტორიის პარამეტრები" #: templates/settings.php:82 msgid "User Display Name Field" -msgstr "" +msgstr "მომხმარებლის დისფლეის სახელის ფილდი" #: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "" +msgstr "LDAP ატრიბუტი მომხმარებლის ownCloud სახელის გენერაციისთვის." #: templates/settings.php:83 msgid "Base User Tree" -msgstr "" +msgstr "ძირითად მომხმარებელთა სია" #: templates/settings.php:83 msgid "One User Base DN per line" -msgstr "" +msgstr "ერთი მომხმარებლის საწყისი DN ერთ ხაზზე" #: templates/settings.php:84 msgid "User Search Attributes" -msgstr "" +msgstr "მომხმარებლის ძებნის ატრიბუტი" #: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" -msgstr "" +msgstr "ოფციონალური; თითო ატრიბუტი თითო ხაზზე" #: templates/settings.php:85 msgid "Group Display Name Field" -msgstr "" +msgstr "ჯგუფის დისფლეის სახელის ფილდი" #: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "" +msgstr "LDAP ატრიბუტი ჯგუფის ownCloud სახელის გენერაციისთვის." #: templates/settings.php:86 msgid "Base Group Tree" -msgstr "" +msgstr "ძირითად ჯგუფთა სია" #: templates/settings.php:86 msgid "One Group Base DN per line" -msgstr "" +msgstr "ერთი ჯგუფის საწყისი DN ერთ ხაზზე" #: templates/settings.php:87 msgid "Group Search Attributes" -msgstr "" +msgstr "ჯგუფური ძებნის ატრიბუტი" #: templates/settings.php:88 msgid "Group-Member association" -msgstr "" +msgstr "ჯგუფის წევრობის ასოციაცია" #: templates/settings.php:90 msgid "Special Attributes" -msgstr "" +msgstr "სპეციალური ატრიბუტები" #: templates/settings.php:92 msgid "Quota Field" -msgstr "" +msgstr "ქვოტას ველი" #: templates/settings.php:93 msgid "Quota Default" -msgstr "" +msgstr "საწყისი ქვოტა" #: templates/settings.php:93 msgid "in bytes" -msgstr "" +msgstr "ბაიტებში" #: templates/settings.php:94 msgid "Email Field" -msgstr "" +msgstr "იმეილის ველი" #: templates/settings.php:95 msgid "User Home Folder Naming Rule" -msgstr "" +msgstr "მომხმარებლის Home დირექტორიის სახელების დარქმევის წესი" #: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." -msgstr "" +msgstr "დატოვეთ ცარიელი მომხმარებლის სახელი (default). სხვა დანარჩენში მიუთითეთ LDAP/AD ატრიბუტი." #: templates/settings.php:99 msgid "Test Configuration" -msgstr "" +msgstr "კავშირის ტესტირება" #: templates/settings.php:99 msgid "Help" diff --git a/l10n/ka_GE/user_webdavauth.po b/l10n/ka_GE/user_webdavauth.po index f4ffea5b9a..48f9fba866 100644 --- a/l10n/ka_GE/user_webdavauth.po +++ b/l10n/ka_GE/user_webdavauth.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-13 02:12+0200\n" -"PO-Revision-Date: 2013-04-12 07:50+0000\n" -"Last-Translator: drlinux64 \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/kn/core.po b/l10n/kn/core.po index cacb6c9596..1a32e4aae2 100644 --- a/l10n/kn/core.po +++ b/l10n/kn/core.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-06 00:04+0200\n" -"PO-Revision-Date: 2011-07-25 16:05+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -160,76 +160,76 @@ msgstr "" msgid "Settings" msgstr "" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:126 -msgid "Choose" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" msgstr "" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:162 -msgid "No" +#: js/oc-dialogs.js:185 +msgid "Choose" msgstr "" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:180 -msgid "Ok" +#: js/oc-dialogs.js:222 +msgid "No" msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 @@ -237,8 +237,10 @@ msgstr "" msgid "The object type is not specified." msgstr "" -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 #: js/share.js:589 msgid "Error" msgstr "" @@ -531,23 +533,23 @@ msgstr "" msgid "Database user" msgstr "" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "" diff --git a/l10n/kn/files.po b/l10n/kn/files.po index 750b56b6b5..60c8c634e2 100644 --- a/l10n/kn/files.po +++ b/l10n/kn/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-08 02:12+0200\n" -"PO-Revision-Date: 2013-04-08 00:13+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/kn/files_encryption.po b/l10n/kn/files_encryption.po index a3a70bbe6e..13626aad5a 100644 --- a/l10n/kn/files_encryption.po +++ b/l10n/kn/files_encryption.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-06 00:04+0200\n" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/kn/files_external.po b/l10n/kn/files_external.po index 1b4f92a170..60bd0f142f 100644 --- a/l10n/kn/files_external.po +++ b/l10n/kn/files_external.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-06 00:04+0200\n" -"PO-Revision-Date: 2012-08-12 22:34+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -37,13 +37,13 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/kn/files_sharing.po b/l10n/kn/files_sharing.po index e94682baac..04f82d2e65 100644 --- a/l10n/kn/files_sharing.po +++ b/l10n/kn/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-06 00:04+0200\n" -"PO-Revision-Date: 2012-08-12 22:35+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/kn/files_trashbin.po b/l10n/kn/files_trashbin.po index 649be08ae1..3547c1bf8b 100644 --- a/l10n/kn/files_trashbin.po +++ b/l10n/kn/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-08 02:12+0200\n" -"PO-Revision-Date: 2013-04-08 00:13+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/kn/files_versions.po b/l10n/kn/files_versions.po index 57e19d1785..a8249bb2ba 100644 --- a/l10n/kn/files_versions.po +++ b/l10n/kn/files_versions.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-06 00:04+0200\n" -"PO-Revision-Date: 2012-08-12 22:37+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/kn/lib.po b/l10n/kn/lib.po index 95b4872e94..dce059b9c8 100644 --- a/l10n/kn/lib.po +++ b/l10n/kn/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-06 00:04+0200\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/kn/settings.po b/l10n/kn/settings.po index 867408992f..9dbdfea614 100644 --- a/l10n/kn/settings.po +++ b/l10n/kn/settings.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-06 00:04+0200\n" -"PO-Revision-Date: 2011-07-25 16:05+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -100,6 +100,10 @@ msgstr "" msgid "Please wait...." msgstr "" +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" +msgstr "" + #: js/apps.js:90 msgid "Updating...." msgstr "" @@ -108,10 +112,6 @@ msgstr "" msgid "Error while updating app" msgstr "" -#: js/apps.js:93 -msgid "Error" -msgstr "" - #: js/apps.js:96 msgid "Updated" msgstr "" @@ -120,44 +120,44 @@ msgstr "" msgid "Saving..." msgstr "" -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" diff --git a/l10n/kn/user_ldap.po b/l10n/kn/user_ldap.po index 777d0e1b97..1b252cb419 100644 --- a/l10n/kn/user_ldap.po +++ b/l10n/kn/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-06 00:04+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/kn/user_webdavauth.po b/l10n/kn/user_webdavauth.po index 16b7b5b562..c4192a2576 100644 --- a/l10n/kn/user_webdavauth.po +++ b/l10n/kn/user_webdavauth.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-06 00:04+0200\n" -"PO-Revision-Date: 2012-11-09 09:06+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/ko/core.po b/l10n/ko/core.po index 6e65cc6963..aa6678269d 100644 --- a/l10n/ko/core.po +++ b/l10n/ko/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -165,77 +165,77 @@ msgstr "12월" msgid "Settings" msgstr "설정" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "초 전" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "1분 전" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{minutes}분 전" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "1시간 전" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{hours}시간 전" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "오늘" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "어제" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "{days}일 전" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "지난 달" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "{months}개월 전" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "개월 전" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "작년" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "년 전" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "선택" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "승락" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "취소" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "아니요" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "선택" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "예" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "승락" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "아니요" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -538,23 +538,23 @@ msgstr "사용될 예정" msgid "Database user" msgstr "데이터베이스 사용자" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "데이터베이스 암호" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "데이터베이스 이름" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "데이터베이스 테이블 공간" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "데이터베이스 호스트" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "설치 완료" diff --git a/l10n/ko/files.po b/l10n/ko/files.po index 3aaacfdd62..454decde7b 100644 --- a/l10n/ko/files.po +++ b/l10n/ko/files.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:09+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/files_encryption.po b/l10n/ko/files_encryption.po index 79f1c6ae60..874e483240 100644 --- a/l10n/ko/files_encryption.po +++ b/l10n/ko/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/files_external.po b/l10n/ko/files_external.po index 306e67eeaa..ceb77ef977 100644 --- a/l10n/ko/files_external.po +++ b/l10n/ko/files_external.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 13:00+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -41,13 +41,13 @@ msgstr "올바른 Dropbox 앱 키와 암호를 입력하십시오." msgid "Error configuring Google Drive storage" msgstr "Google 드라이브 저장소 설정 오류" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "경고: \"smbclient\"가 설치되지 않았습니다. CIFS/SMB 공유 자원에 연결할 수 없습니다. 시스템 관리자에게 설치를 요청하십시오." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/ko/files_sharing.po b/l10n/ko/files_sharing.po index 0190903ffa..eacbe1a4eb 100644 --- a/l10n/ko/files_sharing.po +++ b/l10n/ko/files_sharing.po @@ -4,14 +4,15 @@ # # Translators: # 남자사람 , 2012. +# Park Shinjo , 2013. # Shinjo Park , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-10 00:11+0100\n" -"PO-Revision-Date: 2012-12-09 06:12+0000\n" -"Last-Translator: Shinjo Park \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,24 +28,24 @@ msgstr "암호" msgid "Submit" msgstr "제출" -#: templates/public.php:17 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s 님이 폴더 %s을(를) 공유하였습니다" -#: templates/public.php:19 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s 님이 파일 %s을(를) 공유하였습니다" -#: templates/public.php:22 templates/public.php:38 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "다운로드" -#: templates/public.php:37 +#: templates/public.php:40 msgid "No preview available for" msgstr "다음 항목을 미리 볼 수 없음:" -#: templates/public.php:43 +#: templates/public.php:50 msgid "web services under your control" msgstr "내가 관리하는 웹 서비스" diff --git a/l10n/ko/files_trashbin.po b/l10n/ko/files_trashbin.po index e18e542aae..4da8a759ef 100644 --- a/l10n/ko/files_trashbin.po +++ b/l10n/ko/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/files_versions.po b/l10n/ko/files_versions.po index 3598454523..2e8f8fec0f 100644 --- a/l10n/ko/files_versions.po +++ b/l10n/ko/files_versions.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-11 02:08+0200\n" -"PO-Revision-Date: 2013-04-10 16:50+0000\n" -"Last-Translator: Sung Jin Gang \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/ko/lib.po b/l10n/ko/lib.po index 3699d0cb0b..cc10281988 100644 --- a/l10n/ko/lib.po +++ b/l10n/ko/lib.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index 542bf452f7..3ff506d4a9 100644 --- a/l10n/ko/settings.po +++ b/l10n/ko/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-11 02:09+0200\n" -"PO-Revision-Date: 2013-04-10 17:00+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/user_ldap.po b/l10n/ko/user_ldap.po index ad02f58dde..299a770209 100644 --- a/l10n/ko/user_ldap.po +++ b/l10n/ko/user_ldap.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/user_webdavauth.po b/l10n/ko/user_webdavauth.po index f10bd76454..b3a842c9f9 100644 --- a/l10n/ko/user_webdavauth.po +++ b/l10n/ko/user_webdavauth.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-31 17:02+0100\n" -"PO-Revision-Date: 2013-01-31 08:10+0000\n" -"Last-Translator: Shinjo Park \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,7 +28,7 @@ msgstr "WebDAV 인증" msgid "URL: http://" msgstr "URL: http://" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/ku_IQ/core.po b/l10n/ku_IQ/core.po index f015f7cd69..1a5f27625f 100644 --- a/l10n/ku_IQ/core.po +++ b/l10n/ku_IQ/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -161,76 +161,76 @@ msgstr "" msgid "Settings" msgstr "ده‌ستكاری" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:126 -msgid "Choose" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" msgstr "" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:162 -msgid "No" +#: js/oc-dialogs.js:185 +msgid "Choose" msgstr "" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:180 -msgid "Ok" +#: js/oc-dialogs.js:222 +msgid "No" msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 @@ -534,23 +534,23 @@ msgstr "" msgid "Database user" msgstr "به‌كارهێنه‌ری داتابه‌یس" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "وشه‌ی نهێنی داتا به‌یس" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "ناوی داتابه‌یس" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "هۆستی داتابه‌یس" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "كۆتایی هات ده‌ستكاریه‌كان" diff --git a/l10n/ku_IQ/files.po b/l10n/ku_IQ/files.po index 1aade6ed34..8a381380be 100644 --- a/l10n/ku_IQ/files.po +++ b/l10n/ku_IQ/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:09+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/files_encryption.po b/l10n/ku_IQ/files_encryption.po index 25da3eec3a..e8ffbf31f9 100644 --- a/l10n/ku_IQ/files_encryption.po +++ b/l10n/ku_IQ/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/files_external.po b/l10n/ku_IQ/files_external.po index 40a38765f0..615505f25c 100644 --- a/l10n/ku_IQ/files_external.po +++ b/l10n/ku_IQ/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 13:00+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -37,13 +37,13 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/ku_IQ/files_sharing.po b/l10n/ku_IQ/files_sharing.po index daa1ed36ce..fc8210c054 100644 --- a/l10n/ku_IQ/files_sharing.po +++ b/l10n/ku_IQ/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-07 02:03+0200\n" -"PO-Revision-Date: 2012-10-07 00:05+0000\n" -"Last-Translator: Hozha Koyi \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,24 +26,24 @@ msgstr "تێپه‌ڕه‌وشه" msgid "Submit" msgstr "ناردن" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s دابه‌شی کردووه‌ بوخچه‌ی %s له‌گه‌ڵ تۆ" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s دابه‌شی کردووه‌ په‌ڕگه‌یی %s له‌گه‌ڵ تۆ" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "داگرتن" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "هیچ پێشبینیه‌ك ئاماده‌ نیه بۆ" -#: templates/public.php:35 +#: templates/public.php:50 msgid "web services under your control" msgstr "ڕاژه‌ی وێب له‌ژێر چاودێریت دایه" diff --git a/l10n/ku_IQ/files_trashbin.po b/l10n/ku_IQ/files_trashbin.po index 5329cb538e..7f649909e0 100644 --- a/l10n/ku_IQ/files_trashbin.po +++ b/l10n/ku_IQ/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/files_versions.po b/l10n/ku_IQ/files_versions.po index d5bfd4c337..149ad35dbf 100644 --- a/l10n/ku_IQ/files_versions.po +++ b/l10n/ku_IQ/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -41,11 +41,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/ku_IQ/lib.po b/l10n/ku_IQ/lib.po index 597d8b7509..72e87c6312 100644 --- a/l10n/ku_IQ/lib.po +++ b/l10n/ku_IQ/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/settings.po b/l10n/ku_IQ/settings.po index 6a7ca7f418..0d5a13796a 100644 --- a/l10n/ku_IQ/settings.po +++ b/l10n/ku_IQ/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -120,44 +120,44 @@ msgstr "" msgid "Saving..." msgstr "پاشکه‌وتده‌کات..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" diff --git a/l10n/ku_IQ/user_ldap.po b/l10n/ku_IQ/user_ldap.po index 0e3bf045fa..89de1afb37 100644 --- a/l10n/ku_IQ/user_ldap.po +++ b/l10n/ku_IQ/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-02 00:03+0100\n" -"PO-Revision-Date: 2013-03-01 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -86,248 +86,248 @@ msgstr "" msgid "Server configuration" msgstr "" -#: templates/settings.php:18 +#: templates/settings.php:31 msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:23 +#: templates/settings.php:36 msgid "Host" msgstr "" -#: templates/settings.php:25 +#: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:26 +#: templates/settings.php:39 msgid "Base DN" msgstr "" -#: templates/settings.php:27 +#: templates/settings.php:40 msgid "One Base DN per line" msgstr "" -#: templates/settings.php:28 +#: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" -#: templates/settings.php:30 +#: templates/settings.php:43 msgid "User DN" msgstr "" -#: templates/settings.php:32 +#: templates/settings.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 "" -#: templates/settings.php:33 +#: templates/settings.php:46 msgid "Password" msgstr "" -#: templates/settings.php:36 +#: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:37 +#: templates/settings.php:50 msgid "User Login Filter" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:55 msgid "User List Filter" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." msgstr "" -#: templates/settings.php:47 +#: templates/settings.php:60 msgid "Group Filter" msgstr "" -#: templates/settings.php:50 +#: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:68 msgid "Connection Settings" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "Configuration Active" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:71 msgid "Port" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:73 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Use TLS" msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" -#: templates/settings.php:63 +#: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Not recommended, use for testing only." msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:67 +#: templates/settings.php:80 msgid "Directory Settings" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "Base User Tree" msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:71 +#: templates/settings.php:84 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:71 templates/settings.php:74 +#: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:74 +#: templates/settings.php:87 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:88 msgid "Group-Member association" msgstr "" -#: templates/settings.php:77 +#: templates/settings.php:90 msgid "Special Attributes" msgstr "" -#: templates/settings.php:79 +#: templates/settings.php:92 msgid "Quota Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "Quota Default" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "in bytes" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:94 msgid "Email Field" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Test Configuration" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Help" msgstr "یارمەتی" diff --git a/l10n/ku_IQ/user_webdavauth.po b/l10n/ku_IQ/user_webdavauth.po index 313845a14b..3acc098249 100644 --- a/l10n/ku_IQ/user_webdavauth.po +++ b/l10n/ku_IQ/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -25,7 +25,7 @@ msgstr "" msgid "URL: http://" msgstr "" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/lb/core.po b/l10n/lb/core.po index 1963026ba3..604cdfeb85 100644 --- a/l10n/lb/core.po +++ b/l10n/lb/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -162,77 +162,77 @@ msgstr "Dezember" msgid "Settings" msgstr "Astellungen" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "vrun 1 Stonn" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "vru {hours} Stonnen" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "Läschte Mount" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "vru {months} Méint" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "Méint hier" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "Läscht Joer" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "Joren hier" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Auswielen" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "OK" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Ofbriechen" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Nee" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Auswielen" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Jo" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "OK" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Nee" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -535,23 +535,23 @@ msgstr "wärt benotzt ginn" msgid "Database user" msgstr "Datebank Benotzer" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Datebank Passwuert" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Datebank Numm" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Datebank Tabelle-Gréisst" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Datebank Server" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Installatioun ofschléissen" diff --git a/l10n/lb/files.po b/l10n/lb/files.po index 149e993376..96058281e7 100644 --- a/l10n/lb/files.po +++ b/l10n/lb/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:09+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/files_encryption.po b/l10n/lb/files_encryption.po index 6705693de9..1eca9f9580 100644 --- a/l10n/lb/files_encryption.po +++ b/l10n/lb/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/files_external.po b/l10n/lb/files_external.po index 4a9bd53d5c..b923b07ae8 100644 --- a/l10n/lb/files_external.po +++ b/l10n/lb/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 13:00+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -37,13 +37,13 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/lb/files_sharing.po b/l10n/lb/files_sharing.po index f4d8ed5cc8..972dce0278 100644 --- a/l10n/lb/files_sharing.po +++ b/l10n/lb/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-27 00:04+0100\n" -"PO-Revision-Date: 2013-01-26 13:36+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -25,7 +25,7 @@ msgstr "Passwuert" msgid "Submit" msgstr "" -#: templates/public.php:11 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "" @@ -35,14 +35,14 @@ msgstr "" msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:16 templates/public.php:32 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "" -#: templates/public.php:31 +#: templates/public.php:40 msgid "No preview available for" msgstr "" -#: templates/public.php:37 +#: templates/public.php:50 msgid "web services under your control" msgstr "" diff --git a/l10n/lb/files_trashbin.po b/l10n/lb/files_trashbin.po index dca63133d8..d774d9ccdc 100644 --- a/l10n/lb/files_trashbin.po +++ b/l10n/lb/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/files_versions.po b/l10n/lb/files_versions.po index c820aa4669..d28d02613b 100644 --- a/l10n/lb/files_versions.po +++ b/l10n/lb/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -41,11 +41,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/lb/lib.po b/l10n/lb/lib.po index ee8465ae6f..de22578b7f 100644 --- a/l10n/lb/lib.po +++ b/l10n/lb/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-02 00:03+0200\n" -"PO-Revision-Date: 2013-03-31 22:13+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/settings.po b/l10n/lb/settings.po index c49b6ae351..c80db5e831 100644 --- a/l10n/lb/settings.po +++ b/l10n/lb/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -121,44 +121,44 @@ msgstr "" msgid "Saving..." msgstr "Speicheren..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "geläscht" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "réckgängeg man" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Gruppen" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Gruppen Admin" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Läschen" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" diff --git a/l10n/lb/user_ldap.po b/l10n/lb/user_ldap.po index 8e3b5b7e31..f1d3a5397d 100644 --- a/l10n/lb/user_ldap.po +++ b/l10n/lb/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-02 00:03+0100\n" -"PO-Revision-Date: 2013-03-01 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -86,248 +86,248 @@ msgstr "" msgid "Server configuration" msgstr "" -#: templates/settings.php:18 +#: templates/settings.php:31 msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:23 +#: templates/settings.php:36 msgid "Host" msgstr "" -#: templates/settings.php:25 +#: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:26 +#: templates/settings.php:39 msgid "Base DN" msgstr "" -#: templates/settings.php:27 +#: templates/settings.php:40 msgid "One Base DN per line" msgstr "" -#: templates/settings.php:28 +#: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" -#: templates/settings.php:30 +#: templates/settings.php:43 msgid "User DN" msgstr "" -#: templates/settings.php:32 +#: templates/settings.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 "" -#: templates/settings.php:33 +#: templates/settings.php:46 msgid "Password" msgstr "Passwuert" -#: templates/settings.php:36 +#: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:37 +#: templates/settings.php:50 msgid "User Login Filter" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:55 msgid "User List Filter" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." msgstr "" -#: templates/settings.php:47 +#: templates/settings.php:60 msgid "Group Filter" msgstr "" -#: templates/settings.php:50 +#: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:68 msgid "Connection Settings" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "Configuration Active" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:71 msgid "Port" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:73 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Use TLS" msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" -#: templates/settings.php:63 +#: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Not recommended, use for testing only." msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:67 +#: templates/settings.php:80 msgid "Directory Settings" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "Base User Tree" msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:71 +#: templates/settings.php:84 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:71 templates/settings.php:74 +#: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:74 +#: templates/settings.php:87 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:88 msgid "Group-Member association" msgstr "" -#: templates/settings.php:77 +#: templates/settings.php:90 msgid "Special Attributes" msgstr "" -#: templates/settings.php:79 +#: templates/settings.php:92 msgid "Quota Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "Quota Default" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "in bytes" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:94 msgid "Email Field" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Test Configuration" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Help" msgstr "Hëllef" diff --git a/l10n/lb/user_webdavauth.po b/l10n/lb/user_webdavauth.po index fb53f7bcb2..2b1c6404d5 100644 --- a/l10n/lb/user_webdavauth.po +++ b/l10n/lb/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -25,7 +25,7 @@ msgstr "" msgid "URL: http://" msgstr "" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/lt_LT/core.po b/l10n/lt_LT/core.po index c953a0270a..7c12af72de 100644 --- a/l10n/lt_LT/core.po +++ b/l10n/lt_LT/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -162,77 +162,77 @@ msgstr "Gruodis" msgid "Settings" msgstr "Nustatymai" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "prieš sekundę" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "Prieš 1 minutę" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "Prieš {count} minutes" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "šiandien" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "vakar" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "Prieš {days} dienas" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "praeitą mėnesį" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "prieš mėnesį" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "praeitais metais" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "prieš metus" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Pasirinkite" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Gerai" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Atšaukti" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Ne" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Pasirinkite" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Taip" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "Gerai" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Ne" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -535,23 +535,23 @@ msgstr "bus naudojama" msgid "Database user" msgstr "Duomenų bazės vartotojas" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Duomenų bazės slaptažodis" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Duomenų bazės pavadinimas" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Duomenų bazės loginis saugojimas" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Duomenų bazės serveris" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Baigti diegimą" diff --git a/l10n/lt_LT/files.po b/l10n/lt_LT/files.po index b32048b7e6..d2a357328a 100644 --- a/l10n/lt_LT/files.po +++ b/l10n/lt_LT/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:09+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files_encryption.po b/l10n/lt_LT/files_encryption.po index 2e398b6292..34e4264e6c 100644 --- a/l10n/lt_LT/files_encryption.po +++ b/l10n/lt_LT/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files_external.po b/l10n/lt_LT/files_external.po index 690cb47622..89e5eb1d39 100644 --- a/l10n/lt_LT/files_external.po +++ b/l10n/lt_LT/files_external.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 13:00+0000\n" -"Last-Translator: Min2liz \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -40,13 +40,13 @@ msgstr "Prašome įvesti teisingus Dropbox \"app key\" ir \"secret\"." msgid "Error configuring Google Drive storage" msgstr "Klaida nustatinėjant Google Drive talpyklą" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Įspėjimas: \"smbclient\" nėra įdiegtas. CIFS/SMB dalinimasis nėra galimas. Prašome susisiekti su sistemos administratoriumi kad būtų įdiegtas \"smbclient\"" -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/lt_LT/files_sharing.po b/l10n/lt_LT/files_sharing.po index e6c1c3865f..c4369f8248 100644 --- a/l10n/lt_LT/files_sharing.po +++ b/l10n/lt_LT/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-22 01:14+0200\n" -"PO-Revision-Date: 2012-09-21 23:15+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,24 +26,24 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "" -#: templates/public.php:37 +#: templates/public.php:50 msgid "web services under your control" msgstr "" diff --git a/l10n/lt_LT/files_trashbin.po b/l10n/lt_LT/files_trashbin.po index 9063682e9a..8117996577 100644 --- a/l10n/lt_LT/files_trashbin.po +++ b/l10n/lt_LT/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files_versions.po b/l10n/lt_LT/files_versions.po index f43ae71f84..5530b9feaf 100644 --- a/l10n/lt_LT/files_versions.po +++ b/l10n/lt_LT/files_versions.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 06:10+0000\n" -"Last-Translator: Min2liz \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/lt_LT/lib.po b/l10n/lt_LT/lib.po index 010c61df3b..798d9c6cb1 100644 --- a/l10n/lt_LT/lib.po +++ b/l10n/lt_LT/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-02 00:03+0200\n" -"PO-Revision-Date: 2013-03-31 22:13+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/settings.po b/l10n/lt_LT/settings.po index 3d3f85dbfa..838d97af34 100644 --- a/l10n/lt_LT/settings.po +++ b/l10n/lt_LT/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -122,44 +122,44 @@ msgstr "" msgid "Saving..." msgstr "Saugoma.." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "anuliuoti" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Grupės" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Ištrinti" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" diff --git a/l10n/lt_LT/user_ldap.po b/l10n/lt_LT/user_ldap.po index 28684ff33e..bf16727734 100644 --- a/l10n/lt_LT/user_ldap.po +++ b/l10n/lt_LT/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-02 00:03+0100\n" -"PO-Revision-Date: 2013-03-01 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -87,248 +87,248 @@ msgstr "" msgid "Server configuration" msgstr "" -#: templates/settings.php:18 +#: templates/settings.php:31 msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:23 +#: templates/settings.php:36 msgid "Host" msgstr "" -#: templates/settings.php:25 +#: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:26 +#: templates/settings.php:39 msgid "Base DN" msgstr "" -#: templates/settings.php:27 +#: templates/settings.php:40 msgid "One Base DN per line" msgstr "" -#: templates/settings.php:28 +#: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" -#: templates/settings.php:30 +#: templates/settings.php:43 msgid "User DN" msgstr "" -#: templates/settings.php:32 +#: templates/settings.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 "" -#: templates/settings.php:33 +#: templates/settings.php:46 msgid "Password" msgstr "Slaptažodis" -#: templates/settings.php:36 +#: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:37 +#: templates/settings.php:50 msgid "User Login Filter" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:55 msgid "User List Filter" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." msgstr "" -#: templates/settings.php:47 +#: templates/settings.php:60 msgid "Group Filter" msgstr "Grupės filtras" -#: templates/settings.php:50 +#: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:68 msgid "Connection Settings" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "Configuration Active" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:71 msgid "Port" msgstr "Prievadas" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:73 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Use TLS" msgstr "Naudoti TLS" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" -#: templates/settings.php:63 +#: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Turn off SSL certificate validation." msgstr "Išjungti SSL sertifikato tikrinimą." -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Not recommended, use for testing only." msgstr "Nerekomenduojama, naudokite tik testavimui." -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:67 +#: templates/settings.php:80 msgid "Directory Settings" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "Base User Tree" msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:71 +#: templates/settings.php:84 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:71 templates/settings.php:74 +#: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:74 +#: templates/settings.php:87 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:88 msgid "Group-Member association" msgstr "" -#: templates/settings.php:77 +#: templates/settings.php:90 msgid "Special Attributes" msgstr "" -#: templates/settings.php:79 +#: templates/settings.php:92 msgid "Quota Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "Quota Default" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "in bytes" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:94 msgid "Email Field" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Test Configuration" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Help" msgstr "Pagalba" diff --git a/l10n/lt_LT/user_webdavauth.po b/l10n/lt_LT/user_webdavauth.po index 2801133d59..086cccfdd2 100644 --- a/l10n/lt_LT/user_webdavauth.po +++ b/l10n/lt_LT/user_webdavauth.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 06:00+0000\n" -"Last-Translator: Min2liz \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/lv/core.po b/l10n/lv/core.po index 8e5cc66cb5..a7c8d5630c 100644 --- a/l10n/lv/core.po +++ b/l10n/lv/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -162,77 +162,77 @@ msgstr "Decembris" msgid "Settings" msgstr "Iestatījumi" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "sekundes atpakaļ" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "pirms 1 minūtes" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "pirms {minutes} minūtēm" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "pirms 1 stundas" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "pirms {hours} stundām" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "šodien" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "vakar" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "pirms {days} dienām" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "pagājušajā mēnesī" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "pirms {months} mēnešiem" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "mēnešus atpakaļ" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "gājušajā gadā" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "gadus atpakaļ" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Izvēlieties" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Labi" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Atcelt" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Nē" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Izvēlieties" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Jā" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "Labi" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Nē" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -535,23 +535,23 @@ msgstr "tiks izmantots" msgid "Database user" msgstr "Datubāzes lietotājs" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Datubāzes parole" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Datubāzes nosaukums" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Datubāzes tabulas telpa" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Datubāzes serveris" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Pabeigt iestatīšanu" diff --git a/l10n/lv/files.po b/l10n/lv/files.po index ee10faffe1..b59d7a6bfa 100644 --- a/l10n/lv/files.po +++ b/l10n/lv/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:09+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/files_encryption.po b/l10n/lv/files_encryption.po index 845062cf87..cd156c95e8 100644 --- a/l10n/lv/files_encryption.po +++ b/l10n/lv/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/files_external.po b/l10n/lv/files_external.po index b1227556c3..8e5ca0c841 100644 --- a/l10n/lv/files_external.po +++ b/l10n/lv/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 13:00+0000\n" -"Last-Translator: Rūdolfs Mazurs \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -38,13 +38,13 @@ msgstr "Lūdzu, norādiet derīgu Dropbox lietotnes atslēgu un noslēpumu." msgid "Error configuring Google Drive storage" msgstr "Kļūda, konfigurējot Google Drive krātuvi" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Brīdinājums: nav uzinstalēts “smbclient”. Nevar montēt CIFS/SMB koplietojumus. Lūdzu, vaicājiet savam sistēmas administratoram, lai to uzinstalē." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/lv/files_sharing.po b/l10n/lv/files_sharing.po index 46609775b6..74aca9c22a 100644 --- a/l10n/lv/files_sharing.po +++ b/l10n/lv/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-16 22:17+0100\n" -"PO-Revision-Date: 2013-03-15 17:00+0000\n" -"Last-Translator: Rūdolfs Mazurs \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -36,14 +36,14 @@ msgstr "%s ar jums dalījās ar mapi %s" msgid "%s shared the file %s with you" msgstr "%s ar jums dalījās ar datni %s" -#: templates/public.php:19 templates/public.php:37 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Lejupielādēt" -#: templates/public.php:34 +#: templates/public.php:40 msgid "No preview available for" msgstr "Nav pieejams priekšskatījums priekš" -#: templates/public.php:43 +#: templates/public.php:50 msgid "web services under your control" msgstr "jūsu vadībā esošie tīmekļa servisi" diff --git a/l10n/lv/files_trashbin.po b/l10n/lv/files_trashbin.po index b3252d40d1..5cc002eaa1 100644 --- a/l10n/lv/files_trashbin.po +++ b/l10n/lv/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/files_versions.po b/l10n/lv/files_versions.po index cfbdfa3db8..095a8a33b5 100644 --- a/l10n/lv/files_versions.po +++ b/l10n/lv/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-01 00:05+0100\n" -"PO-Revision-Date: 2013-02-28 20:50+0000\n" -"Last-Translator: Rūdolfs Mazurs \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -41,11 +41,11 @@ msgstr "neveiksme" msgid "File %s could not be reverted to version %s" msgstr "Datni %s nevarēja atgriezt uz versiju %s" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "Nav pieejamu vecāku versiju" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "Nav norādīts ceļš" diff --git a/l10n/lv/lib.po b/l10n/lv/lib.po index 6511559d5e..42c9ad2273 100644 --- a/l10n/lv/lib.po +++ b/l10n/lv/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" -"Last-Translator: Rūdolfs Mazurs \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/lv/settings.po b/l10n/lv/settings.po index 18644f7fb0..ee26dbf4f4 100644 --- a/l10n/lv/settings.po +++ b/l10n/lv/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -123,44 +123,44 @@ msgstr "Atjaunināta" msgid "Saving..." msgstr "Saglabā..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "izdzests" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "atsaukt" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "Nevar izņemt lietotāju" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Grupas" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Grupas administrators" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Dzēst" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "pievienot grupu" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "Jānorāda derīgs lietotājvārds" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "Kļūda, veidojot lietotāju" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "Jānorāda derīga parole" diff --git a/l10n/lv/user_ldap.po b/l10n/lv/user_ldap.po index 442b097a56..5b474e294c 100644 --- a/l10n/lv/user_ldap.po +++ b/l10n/lv/user_ldap.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" -"Last-Translator: Rūdolfs Mazurs \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/lv/user_webdavauth.po b/l10n/lv/user_webdavauth.po index bac06d9c1e..0874111e98 100644 --- a/l10n/lv/user_webdavauth.po +++ b/l10n/lv/user_webdavauth.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-05 00:19+0100\n" -"PO-Revision-Date: 2013-02-04 11:30+0000\n" -"Last-Translator: Rūdolfs Mazurs \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/mk/core.po b/l10n/mk/core.po index d217e5335d..d5c1c8cd7d 100644 --- a/l10n/mk/core.po +++ b/l10n/mk/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -163,77 +163,77 @@ msgstr "Декември" msgid "Settings" msgstr "Поставки" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "пред секунди" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "пред 1 минута" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "пред {minutes} минути" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "пред 1 час" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "пред {hours} часови" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "денеска" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "вчера" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "пред {days} денови" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "минатиот месец" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "пред {months} месеци" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "пред месеци" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "минатата година" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "пред години" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Избери" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Во ред" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Откажи" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Не" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Избери" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Да" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "Во ред" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Не" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -536,23 +536,23 @@ msgstr "ќе биде користено" msgid "Database user" msgstr "Корисник на база" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Лозинка на база" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Име на база" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Табела во базата на податоци" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Сервер со база" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Заврши го подесувањето" diff --git a/l10n/mk/files.po b/l10n/mk/files.po index 438739bdf0..48c74acdf5 100644 --- a/l10n/mk/files.po +++ b/l10n/mk/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:09+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/files_encryption.po b/l10n/mk/files_encryption.po index 3eab97885b..4a1a4c47ff 100644 --- a/l10n/mk/files_encryption.po +++ b/l10n/mk/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/files_external.po b/l10n/mk/files_external.po index 0ea4caf77c..7326c9f28f 100644 --- a/l10n/mk/files_external.po +++ b/l10n/mk/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 13:00+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -38,13 +38,13 @@ msgstr "Ве молам доставите валиден Dropbox клуч и т msgid "Error configuring Google Drive storage" msgstr "Грешка при конфигурација на Google Drive" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Внимание: \"smbclient\" не е инсталиран. Не е можно монтирање на CIFS/SMB дискови. Замолете го Вашиот систем администратор да го инсталира." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/mk/files_sharing.po b/l10n/mk/files_sharing.po index 51205c77b2..374577a744 100644 --- a/l10n/mk/files_sharing.po +++ b/l10n/mk/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-18 00:13+0100\n" -"PO-Revision-Date: 2012-12-17 13:31+0000\n" -"Last-Translator: Georgi Stanojevski \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,24 +26,24 @@ msgstr "Лозинка" msgid "Submit" msgstr "Прати" -#: templates/public.php:17 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s ја сподели папката %s со Вас" -#: templates/public.php:19 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s ја сподели датотеката %s со Вас" -#: templates/public.php:22 templates/public.php:38 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Преземи" -#: templates/public.php:37 +#: templates/public.php:40 msgid "No preview available for" msgstr "Нема достапно преглед за" -#: templates/public.php:43 +#: templates/public.php:50 msgid "web services under your control" msgstr "веб сервиси под Ваша контрола" diff --git a/l10n/mk/files_trashbin.po b/l10n/mk/files_trashbin.po index c053571e8f..bcda3004eb 100644 --- a/l10n/mk/files_trashbin.po +++ b/l10n/mk/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/files_versions.po b/l10n/mk/files_versions.po index f79838b9c0..84dee8dad3 100644 --- a/l10n/mk/files_versions.po +++ b/l10n/mk/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-01 00:05+0100\n" -"PO-Revision-Date: 2013-02-27 23:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -41,11 +41,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/mk/lib.po b/l10n/mk/lib.po index 3e18f0b9d0..98e3ad7085 100644 --- a/l10n/mk/lib.po +++ b/l10n/mk/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/settings.po b/l10n/mk/settings.po index 9a2115e319..3235daed11 100644 --- a/l10n/mk/settings.po +++ b/l10n/mk/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -123,44 +123,44 @@ msgstr "" msgid "Saving..." msgstr "Снимам..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "врати" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Групи" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Администратор на група" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Избриши" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" diff --git a/l10n/mk/user_ldap.po b/l10n/mk/user_ldap.po index e09b0f2440..a6395bcf5a 100644 --- a/l10n/mk/user_ldap.po +++ b/l10n/mk/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/user_webdavauth.po b/l10n/mk/user_webdavauth.po index 19b5d3df58..e19772ebc7 100644 --- a/l10n/mk/user_webdavauth.po +++ b/l10n/mk/user_webdavauth.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -26,7 +26,7 @@ msgstr "" msgid "URL: http://" msgstr "URL: http://" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/ms_MY/core.po b/l10n/ms_MY/core.po index be9c3022f2..057c4b98a7 100644 --- a/l10n/ms_MY/core.po +++ b/l10n/ms_MY/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -163,77 +163,77 @@ msgstr "Disember" msgid "Settings" msgstr "Tetapan" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Ok" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Batal" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Tidak" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Ya" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "Ok" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Tidak" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -536,23 +536,23 @@ msgstr "akan digunakan" msgid "Database user" msgstr "Nama pengguna pangkalan data" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Kata laluan pangkalan data" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Nama pangkalan data" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Hos pangkalan data" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Setup selesai" diff --git a/l10n/ms_MY/files.po b/l10n/ms_MY/files.po index 80ad8ecc88..0ff8b67f0b 100644 --- a/l10n/ms_MY/files.po +++ b/l10n/ms_MY/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:09+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/files_encryption.po b/l10n/ms_MY/files_encryption.po index b87b0fa030..2704af4e7d 100644 --- a/l10n/ms_MY/files_encryption.po +++ b/l10n/ms_MY/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/files_external.po b/l10n/ms_MY/files_external.po index 898cd9062a..23fe53ff4b 100644 --- a/l10n/ms_MY/files_external.po +++ b/l10n/ms_MY/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -37,13 +37,13 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:421 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:424 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/ms_MY/files_sharing.po b/l10n/ms_MY/files_sharing.po index 6518fcc4c6..11553a7aa2 100644 --- a/l10n/ms_MY/files_sharing.po +++ b/l10n/ms_MY/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-22 01:14+0200\n" -"PO-Revision-Date: 2012-09-21 23:15+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,24 +25,24 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "" -#: templates/public.php:37 +#: templates/public.php:50 msgid "web services under your control" msgstr "" diff --git a/l10n/ms_MY/files_trashbin.po b/l10n/ms_MY/files_trashbin.po index 60595c6bdd..78cba637f3 100644 --- a/l10n/ms_MY/files_trashbin.po +++ b/l10n/ms_MY/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/files_versions.po b/l10n/ms_MY/files_versions.po index 5694a0b699..d66a36bc7a 100644 --- a/l10n/ms_MY/files_versions.po +++ b/l10n/ms_MY/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -40,11 +40,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/ms_MY/lib.po b/l10n/ms_MY/lib.po index 639a4ea571..a78f7f6af7 100644 --- a/l10n/ms_MY/lib.po +++ b/l10n/ms_MY/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-02 00:03+0200\n" -"PO-Revision-Date: 2013-03-31 22:13+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/settings.po b/l10n/ms_MY/settings.po index 8be5b5d094..6dd34bb284 100644 --- a/l10n/ms_MY/settings.po +++ b/l10n/ms_MY/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -124,44 +124,44 @@ msgstr "" msgid "Saving..." msgstr "Simpan..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "dihapus" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Kumpulan" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Padam" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" diff --git a/l10n/ms_MY/user_ldap.po b/l10n/ms_MY/user_ldap.po index 1fea18548a..71e5c5675f 100644 --- a/l10n/ms_MY/user_ldap.po +++ b/l10n/ms_MY/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-02 00:03+0100\n" -"PO-Revision-Date: 2013-03-01 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -86,248 +86,248 @@ msgstr "" msgid "Server configuration" msgstr "" -#: templates/settings.php:18 +#: templates/settings.php:31 msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:23 +#: templates/settings.php:36 msgid "Host" msgstr "" -#: templates/settings.php:25 +#: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:26 +#: templates/settings.php:39 msgid "Base DN" msgstr "" -#: templates/settings.php:27 +#: templates/settings.php:40 msgid "One Base DN per line" msgstr "" -#: templates/settings.php:28 +#: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" -#: templates/settings.php:30 +#: templates/settings.php:43 msgid "User DN" msgstr "" -#: templates/settings.php:32 +#: templates/settings.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 "" -#: templates/settings.php:33 +#: templates/settings.php:46 msgid "Password" msgstr "" -#: templates/settings.php:36 +#: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:37 +#: templates/settings.php:50 msgid "User Login Filter" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:55 msgid "User List Filter" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." msgstr "" -#: templates/settings.php:47 +#: templates/settings.php:60 msgid "Group Filter" msgstr "" -#: templates/settings.php:50 +#: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:68 msgid "Connection Settings" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "Configuration Active" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:71 msgid "Port" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:73 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Use TLS" msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" -#: templates/settings.php:63 +#: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Not recommended, use for testing only." msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:67 +#: templates/settings.php:80 msgid "Directory Settings" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "Base User Tree" msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:71 +#: templates/settings.php:84 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:71 templates/settings.php:74 +#: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:74 +#: templates/settings.php:87 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:88 msgid "Group-Member association" msgstr "" -#: templates/settings.php:77 +#: templates/settings.php:90 msgid "Special Attributes" msgstr "" -#: templates/settings.php:79 +#: templates/settings.php:92 msgid "Quota Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "Quota Default" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "in bytes" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:94 msgid "Email Field" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Test Configuration" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Help" msgstr "Bantuan" diff --git a/l10n/ms_MY/user_webdavauth.po b/l10n/ms_MY/user_webdavauth.po index 8e8f74d0a7..51db2d612e 100644 --- a/l10n/ms_MY/user_webdavauth.po +++ b/l10n/ms_MY/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -25,7 +25,7 @@ msgstr "" msgid "URL: http://" msgstr "" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/my_MM/core.po b/l10n/my_MM/core.po index 011e4893c0..5b10a84f57 100644 --- a/l10n/my_MM/core.po +++ b/l10n/my_MM/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -161,86 +161,88 @@ msgstr "ဒီဇင်ဘာ" msgid "Settings" msgstr "" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "စက္ကန့်အနည်းငယ်က" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "၁ မိနစ်အရင်က" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "၁ နာရီ အရင်က" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "ယနေ့" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "မနေ့က" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "ပြီးခဲ့သောလ" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "မနှစ်က" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "နှစ် အရင်က" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "ရွေးချယ်" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "အိုကေ" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "ပယ်ဖျက်မည်" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "မဟုတ်ဘူး" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "ရွေးချယ်" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "ဟုတ်" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "အိုကေ" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "မဟုတ်ဘူး" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." msgstr "" -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 -#: js/share.js:578 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 msgid "Error" msgstr "" @@ -260,7 +262,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:125 js/share.js:606 +#: js/share.js:125 js/share.js:617 msgid "Error while sharing" msgstr "" @@ -320,59 +322,59 @@ msgstr "အီးမေးလ်ဖြင့်ဝေမျှမည် -" msgid "No people found" msgstr "" -#: js/share.js:240 +#: js/share.js:251 msgid "Resharing is not allowed" msgstr "ပြန်လည်ဝေမျှခြင်းခွင့်မပြုပါ" -#: js/share.js:276 +#: js/share.js:287 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:297 +#: js/share.js:308 msgid "Unshare" msgstr "" -#: js/share.js:309 +#: js/share.js:320 msgid "can edit" msgstr "ပြင်ဆင်နိုင်" -#: js/share.js:311 +#: js/share.js:322 msgid "access control" msgstr "" -#: js/share.js:314 +#: js/share.js:325 msgid "create" msgstr "ဖန်တီးမည်" -#: js/share.js:317 +#: js/share.js:328 msgid "update" msgstr "" -#: js/share.js:320 +#: js/share.js:331 msgid "delete" msgstr "ဖျက်မည်" -#: js/share.js:323 +#: js/share.js:334 msgid "share" msgstr "ဝေမျှမည်" -#: js/share.js:357 js/share.js:553 +#: js/share.js:368 js/share.js:564 msgid "Password protected" msgstr "စကားဝှက်ဖြင့်ကာကွယ်ထားသည်" -#: js/share.js:566 +#: js/share.js:577 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:578 +#: js/share.js:589 msgid "Error setting expiration date" msgstr "" -#: js/share.js:593 +#: js/share.js:604 msgid "Sending ..." msgstr "" -#: js/share.js:604 +#: js/share.js:615 msgid "Email sent" msgstr "" @@ -532,23 +534,23 @@ msgstr "" msgid "Database user" msgstr "Database သုံးစွဲသူ" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Database စကားဝှက်" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Database အမည်" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "တပ်ဆင်ခြင်းပြီးပါပြီ။" diff --git a/l10n/my_MM/files.po b/l10n/my_MM/files.po index b676717879..5e8bca7fd6 100644 --- a/l10n/my_MM/files.po +++ b/l10n/my_MM/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-08 02:12+0200\n" -"PO-Revision-Date: 2013-04-08 00:13+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/files_encryption.po b/l10n/my_MM/files_encryption.po index e6b714b2cb..330468c977 100644 --- a/l10n/my_MM/files_encryption.po +++ b/l10n/my_MM/files_encryption.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-21 00:14+0100\n" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/my_MM/files_external.po b/l10n/my_MM/files_external.po index 9d597dfe54..66757d0328 100644 --- a/l10n/my_MM/files_external.po +++ b/l10n/my_MM/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -37,13 +37,13 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:421 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:424 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/my_MM/files_sharing.po b/l10n/my_MM/files_sharing.po index b960c995af..af1867532c 100644 --- a/l10n/my_MM/files_sharing.po +++ b/l10n/my_MM/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-27 14:34+0100\n" -"PO-Revision-Date: 2012-08-12 22:35+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -35,14 +35,14 @@ msgstr "" msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:19 templates/public.php:37 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "ဒေါင်းလုတ်" -#: templates/public.php:34 +#: templates/public.php:40 msgid "No preview available for" msgstr "" -#: templates/public.php:43 +#: templates/public.php:50 msgid "web services under your control" msgstr "သင်၏ထိန်းချုပ်မှု့အောက်တွင်ရှိသော Web services" diff --git a/l10n/my_MM/files_trashbin.po b/l10n/my_MM/files_trashbin.po index 191941cf52..86cfe94392 100644 --- a/l10n/my_MM/files_trashbin.po +++ b/l10n/my_MM/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-08 02:12+0200\n" -"PO-Revision-Date: 2013-04-08 00:13+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/files_versions.po b/l10n/my_MM/files_versions.po index 1bb8d9af22..062c86e62e 100644 --- a/l10n/my_MM/files_versions.po +++ b/l10n/my_MM/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -40,11 +40,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/my_MM/lib.po b/l10n/my_MM/lib.po index 8201b63c01..054469003c 100644 --- a/l10n/my_MM/lib.po +++ b/l10n/my_MM/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:10+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/settings.po b/l10n/my_MM/settings.po index 9d80882ae4..f4eaf7ebb8 100644 --- a/l10n/my_MM/settings.po +++ b/l10n/my_MM/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -100,6 +100,10 @@ msgstr "" msgid "Please wait...." msgstr "" +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" +msgstr "" + #: js/apps.js:90 msgid "Updating...." msgstr "" @@ -108,10 +112,6 @@ msgstr "" msgid "Error while updating app" msgstr "" -#: js/apps.js:93 -msgid "Error" -msgstr "" - #: js/apps.js:96 msgid "Updated" msgstr "" @@ -120,44 +120,44 @@ msgstr "" msgid "Saving..." msgstr "" -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" diff --git a/l10n/my_MM/user_ldap.po b/l10n/my_MM/user_ldap.po index 14b74ed4d5..4bf54c5dde 100644 --- a/l10n/my_MM/user_ldap.po +++ b/l10n/my_MM/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-02 00:03+0100\n" -"PO-Revision-Date: 2013-03-01 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -86,248 +86,248 @@ msgstr "" msgid "Server configuration" msgstr "" -#: templates/settings.php:18 +#: templates/settings.php:31 msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:23 +#: templates/settings.php:36 msgid "Host" msgstr "" -#: templates/settings.php:25 +#: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:26 +#: templates/settings.php:39 msgid "Base DN" msgstr "" -#: templates/settings.php:27 +#: templates/settings.php:40 msgid "One Base DN per line" msgstr "" -#: templates/settings.php:28 +#: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" -#: templates/settings.php:30 +#: templates/settings.php:43 msgid "User DN" msgstr "" -#: templates/settings.php:32 +#: templates/settings.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 "" -#: templates/settings.php:33 +#: templates/settings.php:46 msgid "Password" msgstr "စကားဝှက်" -#: templates/settings.php:36 +#: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:37 +#: templates/settings.php:50 msgid "User Login Filter" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:55 msgid "User List Filter" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." msgstr "" -#: templates/settings.php:47 +#: templates/settings.php:60 msgid "Group Filter" msgstr "" -#: templates/settings.php:50 +#: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:68 msgid "Connection Settings" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "Configuration Active" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:71 msgid "Port" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:73 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Use TLS" msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" -#: templates/settings.php:63 +#: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Not recommended, use for testing only." msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:67 +#: templates/settings.php:80 msgid "Directory Settings" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "Base User Tree" msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:71 +#: templates/settings.php:84 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:71 templates/settings.php:74 +#: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:74 +#: templates/settings.php:87 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:88 msgid "Group-Member association" msgstr "" -#: templates/settings.php:77 +#: templates/settings.php:90 msgid "Special Attributes" msgstr "" -#: templates/settings.php:79 +#: templates/settings.php:92 msgid "Quota Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "Quota Default" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "in bytes" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:94 msgid "Email Field" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Test Configuration" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Help" msgstr "အကူအညီ" diff --git a/l10n/my_MM/user_webdavauth.po b/l10n/my_MM/user_webdavauth.po index 45d8ff660d..7bd78a09d5 100644 --- a/l10n/my_MM/user_webdavauth.po +++ b/l10n/my_MM/user_webdavauth.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-21 00:14+0100\n" -"PO-Revision-Date: 2012-11-09 09:06+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/nb_NO/core.po b/l10n/nb_NO/core.po index 501db5e3a7..bb7ae5b0cf 100644 --- a/l10n/nb_NO/core.po +++ b/l10n/nb_NO/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -167,77 +167,77 @@ msgstr "Desember" msgid "Settings" msgstr "Innstillinger" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "sekunder siden" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "1 minutt siden" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{minutes} minutter siden" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "1 time siden" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{hours} timer siden" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "i dag" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "i går" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "{days} dager siden" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "forrige måned" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "{months} måneder siden" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "måneder siden" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "forrige år" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "år siden" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Velg" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Ok" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Avbryt" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Nei" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Velg" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Ja" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "Ok" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Nei" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -540,23 +540,23 @@ msgstr "vil bli brukt" msgid "Database user" msgstr "Databasebruker" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Databasepassord" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Databasenavn" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Database tabellområde" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Databasevert" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Fullfør oppsetting" diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po index 1e2cffa776..a3ffbdf4fe 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/files.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:09+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files_encryption.po b/l10n/nb_NO/files_encryption.po index 5002641107..e584a2b471 100644 --- a/l10n/nb_NO/files_encryption.po +++ b/l10n/nb_NO/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-07 00:16+0100\n" -"PO-Revision-Date: 2013-03-06 15:13+0000\n" -"Last-Translator: troll \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/nb_NO/files_external.po b/l10n/nb_NO/files_external.po index a1b5376017..9f22c654cc 100644 --- a/l10n/nb_NO/files_external.po +++ b/l10n/nb_NO/files_external.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 13:00+0000\n" -"Last-Translator: troll \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -39,13 +39,13 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/nb_NO/files_sharing.po b/l10n/nb_NO/files_sharing.po index 8f4798597a..a34b1e9209 100644 --- a/l10n/nb_NO/files_sharing.po +++ b/l10n/nb_NO/files_sharing.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-31 00:01+0100\n" -"PO-Revision-Date: 2012-10-30 12:47+0000\n" -"Last-Translator: hdalgrav \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,24 +27,24 @@ msgstr "Passord" msgid "Submit" msgstr "Send inn" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s delte mappen %s med deg" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s delte filen %s med deg" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Last ned" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "Forhåndsvisning ikke tilgjengelig for" -#: templates/public.php:35 +#: templates/public.php:50 msgid "web services under your control" msgstr "web tjenester du kontrollerer" diff --git a/l10n/nb_NO/files_trashbin.po b/l10n/nb_NO/files_trashbin.po index 5fdfb52c77..41f5263d0d 100644 --- a/l10n/nb_NO/files_trashbin.po +++ b/l10n/nb_NO/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files_versions.po b/l10n/nb_NO/files_versions.po index b918fa61b6..983a89bf40 100644 --- a/l10n/nb_NO/files_versions.po +++ b/l10n/nb_NO/files_versions.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -42,11 +42,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/nb_NO/lib.po b/l10n/nb_NO/lib.po index 95403236ec..30fc6e562c 100644 --- a/l10n/nb_NO/lib.po +++ b/l10n/nb_NO/lib.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/settings.po b/l10n/nb_NO/settings.po index 8c84cd5607..2c505cf1a2 100644 --- a/l10n/nb_NO/settings.po +++ b/l10n/nb_NO/settings.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -128,44 +128,44 @@ msgstr "" msgid "Saving..." msgstr "Lagrer..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "slettet" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "angre" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Grupper" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Gruppeadministrator" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Slett" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" diff --git a/l10n/nb_NO/user_ldap.po b/l10n/nb_NO/user_ldap.po index 4ae7f1b6dd..ce3caf482b 100644 --- a/l10n/nb_NO/user_ldap.po +++ b/l10n/nb_NO/user_ldap.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" -"Last-Translator: MorphyNOR \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/nb_NO/user_webdavauth.po b/l10n/nb_NO/user_webdavauth.po index 915d27dae8..c11bcf1619 100644 --- a/l10n/nb_NO/user_webdavauth.po +++ b/l10n/nb_NO/user_webdavauth.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -26,7 +26,7 @@ msgstr "" msgid "URL: http://" msgstr "URL: http://" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/ne/core.po b/l10n/ne/core.po index 0ef3963546..f1c0c77ebf 100644 --- a/l10n/ne/core.po +++ b/l10n/ne/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-22 00:03+0100\n" -"PO-Revision-Date: 2013-03-21 23:03+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" @@ -160,76 +160,76 @@ msgstr "" msgid "Settings" msgstr "" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:126 -msgid "Choose" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" msgstr "" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:162 -msgid "No" +#: js/oc-dialogs.js:185 +msgid "Choose" msgstr "" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:180 -msgid "Ok" +#: js/oc-dialogs.js:222 +msgid "No" msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 @@ -237,9 +237,11 @@ msgstr "" msgid "The object type is not specified." msgstr "" -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 -#: js/share.js:578 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 msgid "Error" msgstr "" @@ -259,7 +261,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:125 js/share.js:606 +#: js/share.js:125 js/share.js:617 msgid "Error while sharing" msgstr "" @@ -319,59 +321,59 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:240 +#: js/share.js:251 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:276 +#: js/share.js:287 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:297 +#: js/share.js:308 msgid "Unshare" msgstr "" -#: js/share.js:309 +#: js/share.js:320 msgid "can edit" msgstr "" -#: js/share.js:311 +#: js/share.js:322 msgid "access control" msgstr "" -#: js/share.js:314 +#: js/share.js:325 msgid "create" msgstr "" -#: js/share.js:317 +#: js/share.js:328 msgid "update" msgstr "" -#: js/share.js:320 +#: js/share.js:331 msgid "delete" msgstr "" -#: js/share.js:323 +#: js/share.js:334 msgid "share" msgstr "" -#: js/share.js:357 js/share.js:553 +#: js/share.js:368 js/share.js:564 msgid "Password protected" msgstr "" -#: js/share.js:566 +#: js/share.js:577 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:578 +#: js/share.js:589 msgid "Error setting expiration date" msgstr "" -#: js/share.js:593 +#: js/share.js:604 msgid "Sending ..." msgstr "" -#: js/share.js:604 +#: js/share.js:615 msgid "Email sent" msgstr "" @@ -531,23 +533,23 @@ msgstr "" msgid "Database user" msgstr "" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "" diff --git a/l10n/ne/files.po b/l10n/ne/files.po index 927300ef72..ed60ef595b 100644 --- a/l10n/ne/files.po +++ b/l10n/ne/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-08 02:12+0200\n" -"PO-Revision-Date: 2013-04-08 00:13+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ne/files_encryption.po b/l10n/ne/files_encryption.po index 89230b0748..c6346833fa 100644 --- a/l10n/ne/files_encryption.po +++ b/l10n/ne/files_encryption.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-18 00:05+0100\n" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/ne/files_external.po b/l10n/ne/files_external.po index 5920f250ef..0f0c281163 100644 --- a/l10n/ne/files_external.po +++ b/l10n/ne/files_external.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-18 00:05+0100\n" -"PO-Revision-Date: 2012-08-12 22:34+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -37,13 +37,13 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/ne/files_sharing.po b/l10n/ne/files_sharing.po index 0019778bce..2eecd24e2b 100644 --- a/l10n/ne/files_sharing.po +++ b/l10n/ne/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-18 00:05+0100\n" -"PO-Revision-Date: 2012-08-12 22:35+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -35,14 +35,14 @@ msgstr "" msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:19 templates/public.php:37 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "" -#: templates/public.php:34 +#: templates/public.php:40 msgid "No preview available for" msgstr "" -#: templates/public.php:43 +#: templates/public.php:50 msgid "web services under your control" msgstr "" diff --git a/l10n/ne/files_trashbin.po b/l10n/ne/files_trashbin.po index e0c8624eb1..aa7b4136e2 100644 --- a/l10n/ne/files_trashbin.po +++ b/l10n/ne/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-08 02:12+0200\n" -"PO-Revision-Date: 2013-04-08 00:13+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ne/files_versions.po b/l10n/ne/files_versions.po index a2fa4e1dab..b318af6e7e 100644 --- a/l10n/ne/files_versions.po +++ b/l10n/ne/files_versions.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-18 00:05+0100\n" -"PO-Revision-Date: 2012-08-12 22:37+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/ne/lib.po b/l10n/ne/lib.po index 59f4b9b202..c8340a3f31 100644 --- a/l10n/ne/lib.po +++ b/l10n/ne/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-18 00:05+0100\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -117,72 +117,72 @@ msgstr "" msgid "%s set the database host." msgstr "" -#: setup.php:128 setup.php:320 setup.php:365 +#: setup.php:132 setup.php:324 setup.php:369 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:129 setup.php:152 setup.php:229 +#: setup.php:133 setup.php:156 setup.php:233 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup.php:151 setup.php:453 setup.php:520 +#: setup.php:155 setup.php:457 setup.php:524 msgid "Oracle username and/or password not valid" msgstr "" -#: setup.php:228 +#: setup.php:232 msgid "MySQL username and/or password not valid" msgstr "" -#: setup.php:282 setup.php:386 setup.php:395 setup.php:413 setup.php:423 -#: setup.php:432 setup.php:461 setup.php:527 setup.php:553 setup.php:560 -#: setup.php:571 setup.php:578 setup.php:587 setup.php:595 setup.php:604 -#: setup.php:610 +#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 +#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 +#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 +#: setup.php:614 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup.php:283 setup.php:387 setup.php:396 setup.php:414 setup.php:424 -#: setup.php:433 setup.php:462 setup.php:528 setup.php:554 setup.php:561 -#: setup.php:572 setup.php:588 setup.php:596 setup.php:605 +#: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 +#: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 +#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:299 +#: setup.php:303 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup.php:300 +#: setup.php:304 msgid "Drop this user from MySQL" msgstr "" -#: setup.php:305 +#: setup.php:309 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup.php:306 +#: setup.php:310 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:579 setup.php:611 +#: setup.php:583 setup.php:615 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:631 +#: setup.php:635 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:849 +#: setup.php:853 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:850 +#: setup.php:854 #, php-format msgid "Please double check the installation guides." msgstr "" diff --git a/l10n/ne/settings.po b/l10n/ne/settings.po index 32d2e429fd..21112ba305 100644 --- a/l10n/ne/settings.po +++ b/l10n/ne/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" @@ -100,6 +100,10 @@ msgstr "" msgid "Please wait...." msgstr "" +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" +msgstr "" + #: js/apps.js:90 msgid "Updating...." msgstr "" @@ -108,10 +112,6 @@ msgstr "" msgid "Error while updating app" msgstr "" -#: js/apps.js:93 -msgid "Error" -msgstr "" - #: js/apps.js:96 msgid "Updated" msgstr "" @@ -120,44 +120,44 @@ msgstr "" msgid "Saving..." msgstr "" -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" diff --git a/l10n/ne/user_ldap.po b/l10n/ne/user_ldap.po index 57664ab3fc..67b1336777 100644 --- a/l10n/ne/user_ldap.po +++ b/l10n/ne/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-18 00:05+0100\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/ne/user_webdavauth.po b/l10n/ne/user_webdavauth.po index 7b62eb7fe6..9db1e1b180 100644 --- a/l10n/ne/user_webdavauth.po +++ b/l10n/ne/user_webdavauth.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-18 00:05+0100\n" -"PO-Revision-Date: 2012-11-09 09:06+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/nl/core.po b/l10n/nl/core.po index 95513aea35..3238df3e9b 100644 --- a/l10n/nl/core.po +++ b/l10n/nl/core.po @@ -21,9 +21,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" -"Last-Translator: André Koot \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"Last-Translator: I Robot \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" @@ -174,77 +174,77 @@ msgstr "december" msgid "Settings" msgstr "Instellingen" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "seconden geleden" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "1 minuut geleden" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{minutes} minuten geleden" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "1 uur geleden" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{hours} uren geleden" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "vandaag" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "gisteren" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "{days} dagen geleden" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "vorige maand" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "{months} maanden geleden" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "maanden geleden" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "vorig jaar" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "jaar geleden" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Kies" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Ok" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Annuleren" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Nee" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Kies" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Ja" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "Ok" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Nee" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -547,23 +547,23 @@ msgstr "zal gebruikt worden" msgid "Database user" msgstr "Gebruiker database" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Wachtwoord database" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Naam database" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Database tablespace" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Database server" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Installatie afronden" diff --git a/l10n/nl/files.po b/l10n/nl/files.po index f5062d9d87..b551cb1c20 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/files.po @@ -19,9 +19,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:09+0200\n" -"PO-Revision-Date: 2013-04-08 21:21+0000\n" -"Last-Translator: André Koot \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \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" diff --git a/l10n/nl/files_encryption.po b/l10n/nl/files_encryption.po index c287efb9f7..f716ee20fa 100644 --- a/l10n/nl/files_encryption.po +++ b/l10n/nl/files_encryption.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/files_external.po b/l10n/nl/files_external.po index 9d227720c6..14fa7898a5 100644 --- a/l10n/nl/files_external.po +++ b/l10n/nl/files_external.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 13:00+0000\n" -"Last-Translator: André Koot \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \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" @@ -39,13 +39,13 @@ msgstr "Geef een geldige Dropbox key en secret." msgid "Error configuring Google Drive storage" msgstr "Fout tijdens het configureren van Google Drive opslag" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Waarschuwing: \"smbclient\" is niet geïnstalleerd. Mounten van CIFS/SMB shares is niet mogelijk. Vraag uw beheerder om smbclient te installeren." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/nl/files_sharing.po b/l10n/nl/files_sharing.po index 4ac028d4f8..0bdafc3531 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-24 02:01+0200\n" -"PO-Revision-Date: 2012-09-23 14:47+0000\n" -"Last-Translator: Richard Bos \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \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" @@ -27,24 +27,24 @@ msgstr "Wachtwoord" msgid "Submit" msgstr "Verzenden" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s deelt de map %s met u" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s deelt het bestand %s met u" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Downloaden" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "Geen voorbeeldweergave beschikbaar voor" -#: templates/public.php:37 +#: templates/public.php:50 msgid "web services under your control" msgstr "Webdiensten in eigen beheer" diff --git a/l10n/nl/files_trashbin.po b/l10n/nl/files_trashbin.po index bc4e1a37cd..546c51510d 100644 --- a/l10n/nl/files_trashbin.po +++ b/l10n/nl/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/files_versions.po b/l10n/nl/files_versions.po index 87ba278235..3171f1345a 100644 --- a/l10n/nl/files_versions.po +++ b/l10n/nl/files_versions.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-06 00:07+0100\n" -"PO-Revision-Date: 2013-03-05 20:10+0000\n" -"Last-Translator: André Koot \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \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" diff --git a/l10n/nl/lib.po b/l10n/nl/lib.po index 5f9e61b575..8240ed69ee 100644 --- a/l10n/nl/lib.po +++ b/l10n/nl/lib.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" -"Last-Translator: André Koot \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \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" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index 3fc9792144..b7808c8060 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -19,8 +19,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -132,44 +132,44 @@ msgstr "Bijgewerkt" msgid "Saving..." msgstr "Aan het bewaren....." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "verwijderd" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "ongedaan maken" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "Kon gebruiker niet verwijderen" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Groepen" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Groep beheerder" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "verwijderen" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "toevoegen groep" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "Er moet een geldige gebruikersnaam worden opgegeven" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "Fout bij aanmaken gebruiker" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "Er moet een geldig wachtwoord worden opgegeven" diff --git a/l10n/nl/user_ldap.po b/l10n/nl/user_ldap.po index 22dfb2ddcc..8955fc084a 100644 --- a/l10n/nl/user_ldap.po +++ b/l10n/nl/user_ldap.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" -"Last-Translator: André Koot \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \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" diff --git a/l10n/nl/user_webdavauth.po b/l10n/nl/user_webdavauth.po index 8606d6f316..e1e3d510ba 100644 --- a/l10n/nl/user_webdavauth.po +++ b/l10n/nl/user_webdavauth.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-16 00:19+0100\n" -"PO-Revision-Date: 2013-01-15 09:56+0000\n" -"Last-Translator: André Koot \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \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" @@ -27,7 +27,7 @@ msgstr "WebDAV authenticatie" msgid "URL: http://" msgstr "URL: http://" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/nn_NO/core.po b/l10n/nn_NO/core.po index c5361c1767..83a1b479fa 100644 --- a/l10n/nn_NO/core.po +++ b/l10n/nn_NO/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -162,76 +162,76 @@ msgstr "Desember" msgid "Settings" msgstr "Innstillingar" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:126 -msgid "Choose" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" msgstr "" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Kanseller" -#: js/oc-dialogs.js:162 -msgid "No" +#: js/oc-dialogs.js:185 +msgid "Choose" msgstr "" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:180 -msgid "Ok" +#: js/oc-dialogs.js:222 +msgid "No" msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 @@ -535,23 +535,23 @@ msgstr "vil bli nytta" msgid "Database user" msgstr "Databasebrukar" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Databasepassord" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Databasenamn" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Databasetenar" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Fullfør oppsettet" diff --git a/l10n/nn_NO/files.po b/l10n/nn_NO/files.po index a5bb432c42..b71321ee98 100644 --- a/l10n/nn_NO/files.po +++ b/l10n/nn_NO/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:09+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/files_encryption.po b/l10n/nn_NO/files_encryption.po index 5b5ba56793..4c044b7046 100644 --- a/l10n/nn_NO/files_encryption.po +++ b/l10n/nn_NO/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/files_external.po b/l10n/nn_NO/files_external.po index 3ab783c837..fb03e3cb37 100644 --- a/l10n/nn_NO/files_external.po +++ b/l10n/nn_NO/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -37,13 +37,13 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:421 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:424 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/nn_NO/files_sharing.po b/l10n/nn_NO/files_sharing.po index 6a569d362f..877f89fbd4 100644 --- a/l10n/nn_NO/files_sharing.po +++ b/l10n/nn_NO/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-22 01:14+0200\n" -"PO-Revision-Date: 2012-09-21 23:15+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,24 +25,24 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "" -#: templates/public.php:37 +#: templates/public.php:50 msgid "web services under your control" msgstr "" diff --git a/l10n/nn_NO/files_trashbin.po b/l10n/nn_NO/files_trashbin.po index c000ec8f09..43b1a71c81 100644 --- a/l10n/nn_NO/files_trashbin.po +++ b/l10n/nn_NO/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/files_versions.po b/l10n/nn_NO/files_versions.po index abcb5fe4f5..f9421355e4 100644 --- a/l10n/nn_NO/files_versions.po +++ b/l10n/nn_NO/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -40,11 +40,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/nn_NO/lib.po b/l10n/nn_NO/lib.po index a21cfaf86b..f816e93848 100644 --- a/l10n/nn_NO/lib.po +++ b/l10n/nn_NO/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-02 00:03+0200\n" -"PO-Revision-Date: 2013-03-31 22:13+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/settings.po b/l10n/nn_NO/settings.po index f6264b6953..25710dd529 100644 --- a/l10n/nn_NO/settings.po +++ b/l10n/nn_NO/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -122,44 +122,44 @@ msgstr "" msgid "Saving..." msgstr "" -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Grupper" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Slett" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" diff --git a/l10n/nn_NO/user_ldap.po b/l10n/nn_NO/user_ldap.po index 33368c4379..96d7ea3e90 100644 --- a/l10n/nn_NO/user_ldap.po +++ b/l10n/nn_NO/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-02 00:03+0100\n" -"PO-Revision-Date: 2013-03-01 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -86,248 +86,248 @@ msgstr "" msgid "Server configuration" msgstr "" -#: templates/settings.php:18 +#: templates/settings.php:31 msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:23 +#: templates/settings.php:36 msgid "Host" msgstr "" -#: templates/settings.php:25 +#: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:26 +#: templates/settings.php:39 msgid "Base DN" msgstr "" -#: templates/settings.php:27 +#: templates/settings.php:40 msgid "One Base DN per line" msgstr "" -#: templates/settings.php:28 +#: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" -#: templates/settings.php:30 +#: templates/settings.php:43 msgid "User DN" msgstr "" -#: templates/settings.php:32 +#: templates/settings.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 "" -#: templates/settings.php:33 +#: templates/settings.php:46 msgid "Password" msgstr "" -#: templates/settings.php:36 +#: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:37 +#: templates/settings.php:50 msgid "User Login Filter" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:55 msgid "User List Filter" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." msgstr "" -#: templates/settings.php:47 +#: templates/settings.php:60 msgid "Group Filter" msgstr "" -#: templates/settings.php:50 +#: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:68 msgid "Connection Settings" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "Configuration Active" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:71 msgid "Port" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:73 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Use TLS" msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" -#: templates/settings.php:63 +#: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Not recommended, use for testing only." msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:67 +#: templates/settings.php:80 msgid "Directory Settings" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "Base User Tree" msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:71 +#: templates/settings.php:84 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:71 templates/settings.php:74 +#: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:74 +#: templates/settings.php:87 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:88 msgid "Group-Member association" msgstr "" -#: templates/settings.php:77 +#: templates/settings.php:90 msgid "Special Attributes" msgstr "" -#: templates/settings.php:79 +#: templates/settings.php:92 msgid "Quota Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "Quota Default" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "in bytes" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:94 msgid "Email Field" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Test Configuration" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Help" msgstr "Hjelp" diff --git a/l10n/nn_NO/user_webdavauth.po b/l10n/nn_NO/user_webdavauth.po index 42c4c7ed97..aa8db07cf4 100644 --- a/l10n/nn_NO/user_webdavauth.po +++ b/l10n/nn_NO/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -25,7 +25,7 @@ msgstr "" msgid "URL: http://" msgstr "" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/oc/core.po b/l10n/oc/core.po index 900861203d..c5edaf4ff0 100644 --- a/l10n/oc/core.po +++ b/l10n/oc/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -161,77 +161,77 @@ msgstr "Decembre" msgid "Settings" msgstr "Configuracion" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "segonda a" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "1 minuta a" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "uèi" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "ièr" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "mes passat" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "meses a" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "an passat" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "ans a" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Causís" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "D'accòrdi" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Anulla" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Non" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Causís" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Òc" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "D'accòrdi" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Non" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -534,23 +534,23 @@ msgstr "serà utilizat" msgid "Database user" msgstr "Usancièr de la basa de donadas" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Senhal de la basa de donadas" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Nom de la basa de donadas" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Espandi de taula de basa de donadas" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Òste de basa de donadas" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Configuracion acabada" diff --git a/l10n/oc/files.po b/l10n/oc/files.po index a18a3d2096..438e64ed3b 100644 --- a/l10n/oc/files.po +++ b/l10n/oc/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:09+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/files_encryption.po b/l10n/oc/files_encryption.po index 4db4079a8e..1d610acbd7 100644 --- a/l10n/oc/files_encryption.po +++ b/l10n/oc/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/files_external.po b/l10n/oc/files_external.po index b363f8d316..b41f8d964f 100644 --- a/l10n/oc/files_external.po +++ b/l10n/oc/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -37,13 +37,13 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:421 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:424 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/oc/files_sharing.po b/l10n/oc/files_sharing.po index 0e83b85076..5d54968662 100644 --- a/l10n/oc/files_sharing.po +++ b/l10n/oc/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-22 01:14+0200\n" -"PO-Revision-Date: 2012-09-21 23:15+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,24 +25,24 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "" -#: templates/public.php:37 +#: templates/public.php:50 msgid "web services under your control" msgstr "" diff --git a/l10n/oc/files_trashbin.po b/l10n/oc/files_trashbin.po index 9e3213d785..f3ed3d0f41 100644 --- a/l10n/oc/files_trashbin.po +++ b/l10n/oc/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/files_versions.po b/l10n/oc/files_versions.po index a84be8cd14..127b1e57b8 100644 --- a/l10n/oc/files_versions.po +++ b/l10n/oc/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -40,11 +40,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/oc/lib.po b/l10n/oc/lib.po index 151a4c2711..a41273fdd8 100644 --- a/l10n/oc/lib.po +++ b/l10n/oc/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-02 00:03+0200\n" -"PO-Revision-Date: 2013-03-31 22:13+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/settings.po b/l10n/oc/settings.po index 699f521282..e7ec51dfaf 100644 --- a/l10n/oc/settings.po +++ b/l10n/oc/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -121,44 +121,44 @@ msgstr "" msgid "Saving..." msgstr "Enregistra..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "escafat" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "defar" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Grops" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Grop Admin" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Escafa" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" diff --git a/l10n/oc/user_ldap.po b/l10n/oc/user_ldap.po index 3c1cdc754b..39a8e2f1c6 100644 --- a/l10n/oc/user_ldap.po +++ b/l10n/oc/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-02 00:03+0100\n" -"PO-Revision-Date: 2013-03-01 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -86,248 +86,248 @@ msgstr "" msgid "Server configuration" msgstr "" -#: templates/settings.php:18 +#: templates/settings.php:31 msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:23 +#: templates/settings.php:36 msgid "Host" msgstr "" -#: templates/settings.php:25 +#: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:26 +#: templates/settings.php:39 msgid "Base DN" msgstr "" -#: templates/settings.php:27 +#: templates/settings.php:40 msgid "One Base DN per line" msgstr "" -#: templates/settings.php:28 +#: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" -#: templates/settings.php:30 +#: templates/settings.php:43 msgid "User DN" msgstr "" -#: templates/settings.php:32 +#: templates/settings.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 "" -#: templates/settings.php:33 +#: templates/settings.php:46 msgid "Password" msgstr "" -#: templates/settings.php:36 +#: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:37 +#: templates/settings.php:50 msgid "User Login Filter" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:55 msgid "User List Filter" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." msgstr "" -#: templates/settings.php:47 +#: templates/settings.php:60 msgid "Group Filter" msgstr "" -#: templates/settings.php:50 +#: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:68 msgid "Connection Settings" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "Configuration Active" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:71 msgid "Port" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:73 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Use TLS" msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" -#: templates/settings.php:63 +#: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Not recommended, use for testing only." msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:67 +#: templates/settings.php:80 msgid "Directory Settings" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "Base User Tree" msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:71 +#: templates/settings.php:84 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:71 templates/settings.php:74 +#: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:74 +#: templates/settings.php:87 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:88 msgid "Group-Member association" msgstr "" -#: templates/settings.php:77 +#: templates/settings.php:90 msgid "Special Attributes" msgstr "" -#: templates/settings.php:79 +#: templates/settings.php:92 msgid "Quota Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "Quota Default" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "in bytes" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:94 msgid "Email Field" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Test Configuration" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Help" msgstr "Ajuda" diff --git a/l10n/oc/user_webdavauth.po b/l10n/oc/user_webdavauth.po index 03cdef79eb..791548b97e 100644 --- a/l10n/oc/user_webdavauth.po +++ b/l10n/oc/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -25,7 +25,7 @@ msgstr "" msgid "URL: http://" msgstr "" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/pl/core.po b/l10n/pl/core.po index 3c34f8965f..dc589ac76d 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/core.po @@ -20,9 +20,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" -"Last-Translator: emc \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -173,77 +173,77 @@ msgstr "Grudzień" msgid "Settings" msgstr "Ustawienia" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "sekund temu" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "1 minutę temu" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{minutes} minut temu" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "1 godzinę temu" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{hours} godzin temu" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "dziś" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "wczoraj" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "{days} dni temu" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "w zeszłym miesiącu" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "{months} miesięcy temu" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "miesięcy temu" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "w zeszłym roku" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "lat temu" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Wybierz" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "OK" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Anuluj" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Nie" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Wybierz" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Tak" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "OK" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Nie" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -546,23 +546,23 @@ msgstr "zostanie użyte" msgid "Database user" msgstr "Użytkownik bazy danych" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Hasło do bazy danych" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Nazwa bazy danych" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Obszar tabel bazy danych" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Komputer bazy danych" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Zakończ konfigurowanie" diff --git a/l10n/pl/files.po b/l10n/pl/files.po index f0d3b79dee..5e8ce661c0 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/files.po @@ -17,9 +17,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-13 02:12+0200\n" -"PO-Revision-Date: 2013-04-12 08:40+0000\n" -"Last-Translator: Cyryl Sochacki \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/pl/files_encryption.po b/l10n/pl/files_encryption.po index ee5832f42d..bab982698b 100644 --- a/l10n/pl/files_encryption.po +++ b/l10n/pl/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-12 15:10+0100\n" -"PO-Revision-Date: 2013-02-12 09:46+0000\n" -"Last-Translator: bbartlomiej \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/pl/files_external.po b/l10n/pl/files_external.po index 700e621dc7..6fcbfc009e 100644 --- a/l10n/pl/files_external.po +++ b/l10n/pl/files_external.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 13:00+0000\n" -"Last-Translator: Maciej Tarmas \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -41,13 +41,13 @@ msgstr "Proszę podać prawidłowy klucz aplikacji Dropbox i klucz sekretny." msgid "Error configuring Google Drive storage" msgstr "Wystąpił błąd podczas konfigurowania zasobu Google Drive" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Ostrzeżenie: \"smbclient\" nie jest zainstalowany. Zamontowanie katalogów CIFS/SMB nie jest możliwe. Skontaktuj sie z administratorem w celu zainstalowania." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/pl/files_sharing.po b/l10n/pl/files_sharing.po index a355ae067e..447eac36dc 100644 --- a/l10n/pl/files_sharing.po +++ b/l10n/pl/files_sharing.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-03 00:05+0100\n" -"PO-Revision-Date: 2013-03-02 14:40+0000\n" -"Last-Translator: emc \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -38,14 +38,14 @@ msgstr "%s współdzieli folder z tobą %s" msgid "%s shared the file %s with you" msgstr "%s współdzieli z tobą plik %s" -#: templates/public.php:19 templates/public.php:37 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Pobierz" -#: templates/public.php:34 +#: templates/public.php:40 msgid "No preview available for" msgstr "Podgląd nie jest dostępny dla" -#: templates/public.php:43 +#: templates/public.php:50 msgid "web services under your control" msgstr "Kontrolowane serwisy" diff --git a/l10n/pl/files_trashbin.po b/l10n/pl/files_trashbin.po index 9d49e7ca92..2638a60560 100644 --- a/l10n/pl/files_trashbin.po +++ b/l10n/pl/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/files_versions.po b/l10n/pl/files_versions.po index 54824d793e..dd854a1b07 100644 --- a/l10n/pl/files_versions.po +++ b/l10n/pl/files_versions.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-03 00:05+0100\n" -"PO-Revision-Date: 2013-03-02 07:50+0000\n" -"Last-Translator: Maciej Tarmas \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/pl/lib.po b/l10n/pl/lib.po index 799e11c034..8eddff3fcd 100644 --- a/l10n/pl/lib.po +++ b/l10n/pl/lib.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" -"Last-Translator: Maciej Tarmas \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index c177780e7e..2f7a020b48 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -21,8 +21,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -134,44 +134,44 @@ msgstr "Zaktualizowano" msgid "Saving..." msgstr "Zapisywanie..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "usunięto" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "cofnij" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "Nie można usunąć użytkownika" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Grupy" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Administrator grupy" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Usuń" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "dodaj grupę" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "Należy podać prawidłową nazwę użytkownika" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "Błąd podczas tworzenia użytkownika" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "Należy podać prawidłowe hasło" diff --git a/l10n/pl/user_ldap.po b/l10n/pl/user_ldap.po index da513b5614..842e71256c 100644 --- a/l10n/pl/user_ldap.po +++ b/l10n/pl/user_ldap.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" -"Last-Translator: Maciej Tarmas \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/pl/user_webdavauth.po b/l10n/pl/user_webdavauth.po index 44e963a5a4..69bfdc793e 100644 --- a/l10n/pl/user_webdavauth.po +++ b/l10n/pl/user_webdavauth.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-16 00:19+0100\n" -"PO-Revision-Date: 2013-01-15 08:54+0000\n" -"Last-Translator: bbartlomiej \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,7 +28,7 @@ msgstr "Uwierzytelnienie WebDAV" msgid "URL: http://" msgstr "URL: http://" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/pl_PL/core.po b/l10n/pl_PL/core.po index d0c11ccb99..8fa853d62a 100644 --- a/l10n/pl_PL/core.po +++ b/l10n/pl_PL/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:00+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" @@ -160,76 +160,76 @@ msgstr "" msgid "Settings" msgstr "Ustawienia" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:126 -msgid "Choose" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" msgstr "" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:162 -msgid "No" +#: js/oc-dialogs.js:185 +msgid "Choose" msgstr "" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:180 -msgid "Ok" +#: js/oc-dialogs.js:222 +msgid "No" msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 @@ -237,8 +237,10 @@ msgstr "" msgid "The object type is not specified." msgstr "" -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 #: js/share.js:589 msgid "Error" msgstr "" @@ -531,23 +533,23 @@ msgstr "" msgid "Database user" msgstr "" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "" diff --git a/l10n/pl_PL/files.po b/l10n/pl_PL/files.po index 4c6737a923..6ce2bbc8b9 100644 --- a/l10n/pl_PL/files.po +++ b/l10n/pl_PL/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-08 02:12+0200\n" -"PO-Revision-Date: 2013-04-08 00:13+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl_PL/files_encryption.po b/l10n/pl_PL/files_encryption.po index d41a8cb3da..40ed23e267 100644 --- a/l10n/pl_PL/files_encryption.po +++ b/l10n/pl_PL/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl_PL/files_external.po b/l10n/pl_PL/files_external.po index abd87d253b..eb3f6672bd 100644 --- a/l10n/pl_PL/files_external.po +++ b/l10n/pl_PL/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" @@ -37,13 +37,13 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:421 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:424 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/pl_PL/files_sharing.po b/l10n/pl_PL/files_sharing.po index 5735894fdf..8756f2529d 100644 --- a/l10n/pl_PL/files_sharing.po +++ b/l10n/pl_PL/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-22 01:14+0200\n" -"PO-Revision-Date: 2012-09-21 23:15+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,24 +25,24 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "" -#: templates/public.php:37 +#: templates/public.php:50 msgid "web services under your control" msgstr "" diff --git a/l10n/pl_PL/files_trashbin.po b/l10n/pl_PL/files_trashbin.po index 03dea5e599..f553379573 100644 --- a/l10n/pl_PL/files_trashbin.po +++ b/l10n/pl_PL/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-08 02:12+0200\n" -"PO-Revision-Date: 2013-04-08 00:13+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl_PL/files_versions.po b/l10n/pl_PL/files_versions.po index 8634a4a3e6..08069cd964 100644 --- a/l10n/pl_PL/files_versions.po +++ b/l10n/pl_PL/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" @@ -40,11 +40,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/pl_PL/lib.po b/l10n/pl_PL/lib.po index 4b31d07415..be31982884 100644 --- a/l10n/pl_PL/lib.po +++ b/l10n/pl_PL/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl_PL/settings.po b/l10n/pl_PL/settings.po index b92c8f819a..310263c8cf 100644 --- a/l10n/pl_PL/settings.po +++ b/l10n/pl_PL/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" @@ -100,6 +100,10 @@ msgstr "" msgid "Please wait...." msgstr "" +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" +msgstr "" + #: js/apps.js:90 msgid "Updating...." msgstr "" @@ -108,10 +112,6 @@ msgstr "" msgid "Error while updating app" msgstr "" -#: js/apps.js:93 -msgid "Error" -msgstr "" - #: js/apps.js:96 msgid "Updated" msgstr "" @@ -120,44 +120,44 @@ msgstr "" msgid "Saving..." msgstr "" -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" diff --git a/l10n/pl_PL/user_ldap.po b/l10n/pl_PL/user_ldap.po index 34b3f1b715..b6381eee80 100644 --- a/l10n/pl_PL/user_ldap.po +++ b/l10n/pl_PL/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-02 00:03+0100\n" -"PO-Revision-Date: 2013-03-01 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" @@ -86,248 +86,248 @@ msgstr "" msgid "Server configuration" msgstr "" -#: templates/settings.php:18 +#: templates/settings.php:31 msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:23 +#: templates/settings.php:36 msgid "Host" msgstr "" -#: templates/settings.php:25 +#: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:26 +#: templates/settings.php:39 msgid "Base DN" msgstr "" -#: templates/settings.php:27 +#: templates/settings.php:40 msgid "One Base DN per line" msgstr "" -#: templates/settings.php:28 +#: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" -#: templates/settings.php:30 +#: templates/settings.php:43 msgid "User DN" msgstr "" -#: templates/settings.php:32 +#: templates/settings.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 "" -#: templates/settings.php:33 +#: templates/settings.php:46 msgid "Password" msgstr "" -#: templates/settings.php:36 +#: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:37 +#: templates/settings.php:50 msgid "User Login Filter" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:55 msgid "User List Filter" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." msgstr "" -#: templates/settings.php:47 +#: templates/settings.php:60 msgid "Group Filter" msgstr "" -#: templates/settings.php:50 +#: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:68 msgid "Connection Settings" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "Configuration Active" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:71 msgid "Port" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:73 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Use TLS" msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" -#: templates/settings.php:63 +#: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Not recommended, use for testing only." msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:67 +#: templates/settings.php:80 msgid "Directory Settings" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "Base User Tree" msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:71 +#: templates/settings.php:84 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:71 templates/settings.php:74 +#: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:74 +#: templates/settings.php:87 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:88 msgid "Group-Member association" msgstr "" -#: templates/settings.php:77 +#: templates/settings.php:90 msgid "Special Attributes" msgstr "" -#: templates/settings.php:79 +#: templates/settings.php:92 msgid "Quota Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "Quota Default" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "in bytes" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:94 msgid "Email Field" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Test Configuration" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Help" msgstr "" diff --git a/l10n/pl_PL/user_webdavauth.po b/l10n/pl_PL/user_webdavauth.po index 2ffe7523c4..d867ec10d3 100644 --- a/l10n/pl_PL/user_webdavauth.po +++ b/l10n/pl_PL/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" @@ -25,7 +25,7 @@ msgstr "" msgid "URL: http://" msgstr "" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/pt_BR/core.po b/l10n/pt_BR/core.po index 1f2e7e074f..b1e1b553e1 100644 --- a/l10n/pt_BR/core.po +++ b/l10n/pt_BR/core.po @@ -19,9 +19,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 06:40+0000\n" -"Last-Translator: sedir \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -172,77 +172,77 @@ msgstr "dezembro" msgid "Settings" msgstr "Configurações" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "segundos atrás" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "1 minuto atrás" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{minutes} minutos atrás" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "1 hora atrás" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{hours} horas atrás" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "hoje" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "ontem" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "{days} dias atrás" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "último mês" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "{months} meses atrás" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "meses atrás" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "último ano" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "anos atrás" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Escolha" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Ok" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Cancelar" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Não" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Escolha" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Sim" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "Ok" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Não" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -545,23 +545,23 @@ msgstr "será usado" msgid "Database user" msgstr "Usuário do banco de dados" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Senha do banco de dados" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Nome do banco de dados" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Espaço de tabela do banco de dados" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Host do banco de dados" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Concluir configuração" diff --git a/l10n/pt_BR/files.po b/l10n/pt_BR/files.po index 2ead61cd4c..d28f645f02 100644 --- a/l10n/pt_BR/files.po +++ b/l10n/pt_BR/files.po @@ -19,9 +19,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:09+0200\n" -"PO-Revision-Date: 2013-04-08 06:40+0000\n" -"Last-Translator: sedir \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/pt_BR/files_encryption.po b/l10n/pt_BR/files_encryption.po index 51cd8db4d8..6318bd58df 100644 --- a/l10n/pt_BR/files_encryption.po +++ b/l10n/pt_BR/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-14 00:05+0100\n" -"PO-Revision-Date: 2013-02-13 23:00+0000\n" -"Last-Translator: rodrigost23 \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/pt_BR/files_external.po b/l10n/pt_BR/files_external.po index e583eff474..8fb231323c 100644 --- a/l10n/pt_BR/files_external.po +++ b/l10n/pt_BR/files_external.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 13:00+0000\n" -"Last-Translator: dudanogueira \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -40,13 +40,13 @@ msgstr "Por favor forneça um app key e secret válido do Dropbox" msgid "Error configuring Google Drive storage" msgstr "Erro ao configurar armazenamento do Google Drive" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Aviso: \"smbclient\" não está instalado. Impossível montar compartilhamentos de CIFS/SMB. Por favor, peça ao seu administrador do sistema para instalá-lo." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/pt_BR/files_sharing.po b/l10n/pt_BR/files_sharing.po index f6e8856cc6..ac7a37a6b8 100644 --- a/l10n/pt_BR/files_sharing.po +++ b/l10n/pt_BR/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-14 00:05+0100\n" -"PO-Revision-Date: 2013-02-13 22:01+0000\n" -"Last-Translator: sedir \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,24 +26,24 @@ msgstr "Senha" msgid "Submit" msgstr "Submeter" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s compartilhou a pasta %s com você" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s compartilhou o arquivo %s com você" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Baixar" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "Nenhuma visualização disponível para" -#: templates/public.php:35 +#: templates/public.php:50 msgid "web services under your control" msgstr "web services sob seu controle" diff --git a/l10n/pt_BR/files_trashbin.po b/l10n/pt_BR/files_trashbin.po index c4add70410..617c6ff262 100644 --- a/l10n/pt_BR/files_trashbin.po +++ b/l10n/pt_BR/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/files_versions.po b/l10n/pt_BR/files_versions.po index 88db88761f..f2f07af012 100644 --- a/l10n/pt_BR/files_versions.po +++ b/l10n/pt_BR/files_versions.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-08 00:25+0100\n" -"PO-Revision-Date: 2013-03-07 12:10+0000\n" -"Last-Translator: dudanogueira \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/pt_BR/lib.po b/l10n/pt_BR/lib.po index 2bc542837e..8f730781c8 100644 --- a/l10n/pt_BR/lib.po +++ b/l10n/pt_BR/lib.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" -"Last-Translator: fboaventura \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/pt_BR/settings.po b/l10n/pt_BR/settings.po index 483d81c08a..ac98a99c4a 100644 --- a/l10n/pt_BR/settings.po +++ b/l10n/pt_BR/settings.po @@ -18,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -131,44 +131,44 @@ msgstr "Atualizado" msgid "Saving..." msgstr "Guardando..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "excluído" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "desfazer" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "Impossível remover usuário" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Grupos" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Grupo Administrativo" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Excluir" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "adicionar grupo" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "Forneça um nome de usuário válido" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "Erro ao criar usuário" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "Forneça uma senha válida" diff --git a/l10n/pt_BR/user_ldap.po b/l10n/pt_BR/user_ldap.po index 8d7cd4367b..bc50282a09 100644 --- a/l10n/pt_BR/user_ldap.po +++ b/l10n/pt_BR/user_ldap.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" -"Last-Translator: dudanogueira \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/pt_BR/user_webdavauth.po b/l10n/pt_BR/user_webdavauth.po index be539b59a8..beb981284a 100644 --- a/l10n/pt_BR/user_webdavauth.po +++ b/l10n/pt_BR/user_webdavauth.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-31 00:27+0100\n" -"PO-Revision-Date: 2013-01-30 16:22+0000\n" -"Last-Translator: rodrigost23 \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,7 +27,7 @@ msgstr "Autenticação WebDAV" msgid "URL: http://" msgstr "URL: http://" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/pt_PT/core.po b/l10n/pt_PT/core.po index 4c86c04f2a..40b04bc4f7 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/core.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" -"Last-Translator: Helder Meneses \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -168,77 +168,77 @@ msgstr "Dezembro" msgid "Settings" msgstr "Definições" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "Minutos atrás" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "Há 1 minuto" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{minutes} minutos atrás" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "Há 1 hora" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "Há {hours} horas atrás" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "hoje" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "ontem" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "{days} dias atrás" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "ultímo mês" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "Há {months} meses atrás" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "meses atrás" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "ano passado" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "anos atrás" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Escolha" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Ok" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Cancelar" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Não" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Escolha" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Sim" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "Ok" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Não" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -541,23 +541,23 @@ msgstr "vai ser usada" msgid "Database user" msgstr "Utilizador da base de dados" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Password da base de dados" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Nome da base de dados" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Tablespace da base de dados" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Anfitrião da base de dados" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Acabar instalação" diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index 8a0017cf6d..0f1a9e5987 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:09+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -136,7 +136,7 @@ msgstr "A enviar 1 ficheiro" #: js/filelist.js:409 js/filelist.js:463 msgid "files uploading" -msgstr "" +msgstr "A enviar os ficheiros" #: js/files.js:52 msgid "'.' is an invalid file name." diff --git a/l10n/pt_PT/files_encryption.po b/l10n/pt_PT/files_encryption.po index 461a5030b7..d6acdfd0e5 100644 --- a/l10n/pt_PT/files_encryption.po +++ b/l10n/pt_PT/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-11 00:03+0100\n" -"PO-Revision-Date: 2013-02-10 14:21+0000\n" -"Last-Translator: Mouxy \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/pt_PT/files_external.po b/l10n/pt_PT/files_external.po index d0394c6efd..5190b300f3 100644 --- a/l10n/pt_PT/files_external.po +++ b/l10n/pt_PT/files_external.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 13:00+0000\n" -"Last-Translator: Helder Meneses \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -40,13 +40,13 @@ msgstr "Por favor forneça uma \"app key\" e \"secret\" do Dropbox válidas." msgid "Error configuring Google Drive storage" msgstr "Erro ao configurar o armazenamento do Google Drive" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Atenção: O cliente \"smbclient\" não está instalado. Não é possível montar as partilhas CIFS/SMB . Peça ao seu administrador para instalar." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/pt_PT/files_sharing.po b/l10n/pt_PT/files_sharing.po index b3df0a72fa..263e69dd58 100644 --- a/l10n/pt_PT/files_sharing.po +++ b/l10n/pt_PT/files_sharing.po @@ -4,13 +4,14 @@ # # Translators: # Duarte Velez Grilo , 2012. +# Helder Meneses , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-01 02:04+0200\n" -"PO-Revision-Date: 2012-09-30 22:25+0000\n" -"Last-Translator: Duarte Velez Grilo \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,30 +21,30 @@ msgstr "" #: templates/authenticate.php:4 msgid "Password" -msgstr "Palavra-Passe" +msgstr "Password" #: templates/authenticate.php:6 msgid "Submit" msgstr "Submeter" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s partilhou a pasta %s consigo" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s partilhou o ficheiro %s consigo" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" -msgstr "Descarregar" +msgstr "Transferir" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "Não há pré-visualização para" -#: templates/public.php:37 +#: templates/public.php:50 msgid "web services under your control" msgstr "serviços web sob o seu controlo" diff --git a/l10n/pt_PT/files_trashbin.po b/l10n/pt_PT/files_trashbin.po index 9ea47473c7..16bda15175 100644 --- a/l10n/pt_PT/files_trashbin.po +++ b/l10n/pt_PT/files_trashbin.po @@ -4,12 +4,13 @@ # # Translators: # Daniel Pinto , 2013. +# Helder Meneses , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -30,7 +31,7 @@ msgstr "Não foi possível restaurar %s" #: js/trash.js:7 js/trash.js:96 msgid "perform restore operation" -msgstr "Restaurar" +msgstr "executar a operação de restauro" #: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 msgid "Error" @@ -70,7 +71,7 @@ msgstr "{count} ficheiros" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" -msgstr "Não ha ficheiros. O lixo está vazio" +msgstr "Não hà ficheiros. O lixo está vazio!" #: templates/index.php:20 templates/index.php:22 msgid "Restore" diff --git a/l10n/pt_PT/files_versions.po b/l10n/pt_PT/files_versions.po index 54018e4552..bf398be73b 100644 --- a/l10n/pt_PT/files_versions.po +++ b/l10n/pt_PT/files_versions.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-06 00:07+0100\n" -"PO-Revision-Date: 2013-03-05 11:40+0000\n" -"Last-Translator: Helder Meneses \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/pt_PT/lib.po b/l10n/pt_PT/lib.po index 83ab77f051..4584e98139 100644 --- a/l10n/pt_PT/lib.po +++ b/l10n/pt_PT/lib.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" -"Last-Translator: Helder Meneses \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/pt_PT/settings.po b/l10n/pt_PT/settings.po index ce7f716bd8..a82084a8f3 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/settings.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -128,44 +128,44 @@ msgstr "Actualizado" msgid "Saving..." msgstr "A guardar..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "apagado" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "desfazer" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "Não foi possível remover o utilizador" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Grupos" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Grupo Administrador" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Apagar" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "Adicionar grupo" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "Um nome de utilizador válido deve ser fornecido" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "Erro a criar utilizador" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "Uma password válida deve ser fornecida" diff --git a/l10n/pt_PT/user_ldap.po b/l10n/pt_PT/user_ldap.po index 7a2318cd44..27ad5c0cee 100644 --- a/l10n/pt_PT/user_ldap.po +++ b/l10n/pt_PT/user_ldap.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" -"Last-Translator: Helder Meneses \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/pt_PT/user_webdavauth.po b/l10n/pt_PT/user_webdavauth.po index 6f6d78b3df..27a6435e85 100644 --- a/l10n/pt_PT/user_webdavauth.po +++ b/l10n/pt_PT/user_webdavauth.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-18 00:03+0100\n" -"PO-Revision-Date: 2013-01-17 00:54+0000\n" -"Last-Translator: Mouxy \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,7 +27,7 @@ msgstr "Autenticação WebDAV" msgid "URL: http://" msgstr "URL: http://" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/ro/core.po b/l10n/ro/core.po index d6102ef27c..ff67fb854e 100644 --- a/l10n/ro/core.po +++ b/l10n/ro/core.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -166,77 +166,77 @@ msgstr "Decembrie" msgid "Settings" msgstr "Configurări" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "secunde în urmă" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "1 minut în urmă" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{minutes} minute in urma" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "Acum o ora" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{hours} ore în urmă" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "astăzi" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "ieri" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "{days} zile in urma" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "ultima lună" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "{months} luni în urmă" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "luni în urmă" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "ultimul an" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "ani în urmă" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Alege" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Ok" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Anulare" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Nu" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Alege" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Da" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "Ok" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Nu" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -539,23 +539,23 @@ msgstr "vor fi folosite" msgid "Database user" msgstr "Utilizatorul bazei de date" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Parola bazei de date" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Numele bazei de date" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Tabela de spațiu a bazei de date" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Bază date" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Finalizează instalarea" diff --git a/l10n/ro/files.po b/l10n/ro/files.po index 329d55aeb0..59df2ce6f8 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/files.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:09+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/files_encryption.po b/l10n/ro/files_encryption.po index ba27a3e08d..0178c34405 100644 --- a/l10n/ro/files_encryption.po +++ b/l10n/ro/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/files_external.po b/l10n/ro/files_external.po index 3a46aaedfb..3dd7b1f334 100644 --- a/l10n/ro/files_external.po +++ b/l10n/ro/files_external.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 13:00+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -39,13 +39,13 @@ msgstr "Prezintă te rog o cheie de Dropbox validă și parola" msgid "Error configuring Google Drive storage" msgstr "Eroare la configurarea mediului de stocare Google Drive" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Atenție: \"smbclient\" nu este instalat. Montarea mediilor CIFS/SMB partajate nu este posibilă. Solicită administratorului sistemului tău să îl instaleaze." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/ro/files_sharing.po b/l10n/ro/files_sharing.po index 7966d650da..54f7f15491 100644 --- a/l10n/ro/files_sharing.po +++ b/l10n/ro/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-27 02:01+0200\n" -"PO-Revision-Date: 2012-09-26 13:27+0000\n" -"Last-Translator: g.ciprian \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,24 +26,24 @@ msgstr "Parolă" msgid "Submit" msgstr "Trimite" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s a partajat directorul %s cu tine" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s a partajat fișierul %s cu tine" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Descarcă" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "Nici o previzualizare disponibilă pentru " -#: templates/public.php:37 +#: templates/public.php:50 msgid "web services under your control" msgstr "servicii web controlate de tine" diff --git a/l10n/ro/files_trashbin.po b/l10n/ro/files_trashbin.po index 35bf6a8679..ba7c983acd 100644 --- a/l10n/ro/files_trashbin.po +++ b/l10n/ro/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/files_versions.po b/l10n/ro/files_versions.po index 9a6c076a43..1a1e9ab27d 100644 --- a/l10n/ro/files_versions.po +++ b/l10n/ro/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -41,11 +41,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/ro/lib.po b/l10n/ro/lib.po index 8d99123b22..34b7915c68 100644 --- a/l10n/ro/lib.po +++ b/l10n/ro/lib.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/settings.po b/l10n/ro/settings.po index 3db3f86beb..bff150ffa8 100644 --- a/l10n/ro/settings.po +++ b/l10n/ro/settings.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -127,44 +127,44 @@ msgstr "" msgid "Saving..." msgstr "Salvez..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "șters" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "Anulează ultima acțiune" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Grupuri" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Grupul Admin " -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Șterge" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" diff --git a/l10n/ro/user_ldap.po b/l10n/ro/user_ldap.po index 57370aee7d..44e5fa0d0b 100644 --- a/l10n/ro/user_ldap.po +++ b/l10n/ro/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/user_webdavauth.po b/l10n/ro/user_webdavauth.po index 1f11c76068..6109a77f94 100644 --- a/l10n/ro/user_webdavauth.po +++ b/l10n/ro/user_webdavauth.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-27 00:04+0100\n" -"PO-Revision-Date: 2013-01-26 00:09+0000\n" -"Last-Translator: Dimon Pockemon <>\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,7 +27,7 @@ msgstr "Autentificare WebDAV" msgid "URL: http://" msgstr "URL: http://" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/ru/core.po b/l10n/ru/core.po index c62ba9f9fc..127eea8e44 100644 --- a/l10n/ru/core.po +++ b/l10n/ru/core.po @@ -19,9 +19,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" -"Last-Translator: Langaru \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"Last-Translator: I Robot \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" @@ -172,77 +172,77 @@ msgstr "Декабрь" msgid "Settings" msgstr "Настройки" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "несколько секунд назад" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "1 минуту назад" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{minutes} минут назад" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "час назад" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{hours} часов назад" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "сегодня" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "вчера" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "{days} дней назад" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "в прошлом месяце" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "{months} месяцев назад" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "несколько месяцев назад" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "в прошлом году" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "несколько лет назад" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Выбрать" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Ок" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Отмена" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Нет" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Выбрать" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Да" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "Ок" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Нет" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -545,23 +545,23 @@ msgstr "будет использовано" msgid "Database user" msgstr "Имя пользователя для базы данных" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Пароль для базы данных" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Название базы данных" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Табличое пространство базы данных" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Хост базы данных" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Завершить установку" diff --git a/l10n/ru/files.po b/l10n/ru/files.po index 1f81049a58..11afccd3a6 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -21,8 +21,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:09+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/files_encryption.po b/l10n/ru/files_encryption.po index 1244183e43..10d0dee2c7 100644 --- a/l10n/ru/files_encryption.po +++ b/l10n/ru/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/files_external.po b/l10n/ru/files_external.po index 26f68be954..51708e8373 100644 --- a/l10n/ru/files_external.po +++ b/l10n/ru/files_external.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 13:00+0000\n" -"Last-Translator: Langaru \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \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" @@ -41,13 +41,13 @@ msgstr "Пожалуйста, предоставьте действующий к msgid "Error configuring Google Drive storage" msgstr "Ошибка при настройке хранилища Google Drive" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Внимание: \"smbclient\" не установлен. Подключение по CIFS/SMB невозможно. Пожалуйста, обратитесь к системному администратору, чтобы установить его." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/ru/files_sharing.po b/l10n/ru/files_sharing.po index 425b0ed259..f63d64a4a0 100644 --- a/l10n/ru/files_sharing.po +++ b/l10n/ru/files_sharing.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-20 02:02+0200\n" -"PO-Revision-Date: 2012-10-19 13:24+0000\n" -"Last-Translator: skoptev \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \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" @@ -29,24 +29,24 @@ msgstr "Пароль" msgid "Submit" msgstr "Отправить" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s открыл доступ к папке %s для Вас" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s открыл доступ к файлу %s для Вас" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Скачать" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "Предпросмотр недоступен для" -#: templates/public.php:35 +#: templates/public.php:50 msgid "web services under your control" msgstr "веб-сервисы под вашим управлением" diff --git a/l10n/ru/files_trashbin.po b/l10n/ru/files_trashbin.po index 7ab8779e1f..ef193b6324 100644 --- a/l10n/ru/files_trashbin.po +++ b/l10n/ru/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/files_versions.po b/l10n/ru/files_versions.po index 8709b06612..304ee7eacc 100644 --- a/l10n/ru/files_versions.po +++ b/l10n/ru/files_versions.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-02 00:03+0100\n" -"PO-Revision-Date: 2013-03-01 05:30+0000\n" -"Last-Translator: Langaru \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \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" diff --git a/l10n/ru/lib.po b/l10n/ru/lib.po index 785b626c87..241423458f 100644 --- a/l10n/ru/lib.po +++ b/l10n/ru/lib.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" -"Last-Translator: Langaru \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \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" diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index bb845c09a2..32b4ecffaf 100644 --- a/l10n/ru/settings.po +++ b/l10n/ru/settings.po @@ -22,8 +22,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -135,44 +135,44 @@ msgstr "Обновлено" msgid "Saving..." msgstr "Сохранение..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "удален" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "отмена" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "Невозможно удалить пользователя" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Группы" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Группа Администраторы" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Удалить" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "добавить группу" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "Предоставте подходящее имя пользователя" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "Ошибка создания пользователя" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "Предоставте подходящий пароль" diff --git a/l10n/ru/user_ldap.po b/l10n/ru/user_ldap.po index c58d7a5f3a..1cdc528b1f 100644 --- a/l10n/ru/user_ldap.po +++ b/l10n/ru/user_ldap.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" -"Last-Translator: Langaru \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \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" diff --git a/l10n/ru/user_webdavauth.po b/l10n/ru/user_webdavauth.po index c66ccc74b9..cb9787729a 100644 --- a/l10n/ru/user_webdavauth.po +++ b/l10n/ru/user_webdavauth.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-12 15:10+0100\n" -"PO-Revision-Date: 2013-02-12 10:43+0000\n" -"Last-Translator: Denis \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \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" diff --git a/l10n/ru_RU/core.po b/l10n/ru_RU/core.po index 9bbd48bd6a..78a7e92ad4 100644 --- a/l10n/ru_RU/core.po +++ b/l10n/ru_RU/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" @@ -163,77 +163,77 @@ msgstr "Декабрь" msgid "Settings" msgstr "Настройки" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "секунд назад" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr " 1 минуту назад" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{минуты} минут назад" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "1 час назад" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{часы} часов назад" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "сегодня" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "вчера" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "{дни} дней назад" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "в прошлом месяце" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "{месяцы} месяцев назад" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "месяц назад" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "в прошлом году" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "лет назад" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Выбрать" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Да" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Отмена" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Нет" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Выбрать" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Да" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "Да" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Нет" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -536,23 +536,23 @@ msgstr "будет использоваться" msgid "Database user" msgstr "Пользователь базы данных" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Пароль базы данных" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Имя базы данных" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Табличная область базы данных" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Сервер базы данных" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Завершение настройки" diff --git a/l10n/ru_RU/files.po b/l10n/ru_RU/files.po index a742a13ade..e0b7ef7d14 100644 --- a/l10n/ru_RU/files.po +++ b/l10n/ru_RU/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:09+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru_RU/files_encryption.po b/l10n/ru_RU/files_encryption.po index cd0001f8da..475cc21624 100644 --- a/l10n/ru_RU/files_encryption.po +++ b/l10n/ru_RU/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru_RU/files_external.po b/l10n/ru_RU/files_external.po index 20a27154a7..f0db491af6 100644 --- a/l10n/ru_RU/files_external.po +++ b/l10n/ru_RU/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 13:00+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" @@ -38,13 +38,13 @@ msgstr "Пожалуйста представьте допустимый клю msgid "Error configuring Google Drive storage" msgstr "Ошибка настройки хранилища Google Drive" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Предупреждение: \"smbclient\" не установлен. Подключение общих папок CIFS/SMB невозможно. Пожалуйста, обратитесь к системному администратору, чтобы установить его." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/ru_RU/files_sharing.po b/l10n/ru_RU/files_sharing.po index 7f31cb6309..b2e253d777 100644 --- a/l10n/ru_RU/files_sharing.po +++ b/l10n/ru_RU/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-12 02:03+0200\n" -"PO-Revision-Date: 2012-10-11 10:54+0000\n" -"Last-Translator: AnnaSch \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,24 +26,24 @@ msgstr "Пароль" msgid "Submit" msgstr "Передать" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s имеет общий с Вами доступ к папке %s " -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s имеет общий с Вами доступ к файлу %s " -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Загрузка" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "Предварительный просмотр недоступен" -#: templates/public.php:35 +#: templates/public.php:50 msgid "web services under your control" msgstr "веб-сервисы под Вашим контролем" diff --git a/l10n/ru_RU/files_trashbin.po b/l10n/ru_RU/files_trashbin.po index f5351c3c64..88f31b8ae7 100644 --- a/l10n/ru_RU/files_trashbin.po +++ b/l10n/ru_RU/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru_RU/files_versions.po b/l10n/ru_RU/files_versions.po index 202ace6ab3..c61d6b50a3 100644 --- a/l10n/ru_RU/files_versions.po +++ b/l10n/ru_RU/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" @@ -41,11 +41,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/ru_RU/lib.po b/l10n/ru_RU/lib.po index 51909e1d81..b230b541d5 100644 --- a/l10n/ru_RU/lib.po +++ b/l10n/ru_RU/lib.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru_RU/settings.po b/l10n/ru_RU/settings.po index cc82d2d3a7..f8ec1a9f65 100644 --- a/l10n/ru_RU/settings.po +++ b/l10n/ru_RU/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" @@ -122,44 +122,44 @@ msgstr "" msgid "Saving..." msgstr "Сохранение" -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "удалено" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "отменить действие" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Группы" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Группа Admin" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Удалить" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" diff --git a/l10n/ru_RU/user_ldap.po b/l10n/ru_RU/user_ldap.po index 8ebddb604b..8d68995348 100644 --- a/l10n/ru_RU/user_ldap.po +++ b/l10n/ru_RU/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru_RU/user_webdavauth.po b/l10n/ru_RU/user_webdavauth.po index 48ae554ac0..c7942c0aac 100644 --- a/l10n/ru_RU/user_webdavauth.po +++ b/l10n/ru_RU/user_webdavauth.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-31 00:27+0100\n" -"PO-Revision-Date: 2013-01-30 10:01+0000\n" -"Last-Translator: AnnaSch \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,7 +28,7 @@ msgstr "WebDAV аутентификация" msgid "URL: http://" msgstr "URL: http://" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/si_LK/core.po b/l10n/si_LK/core.po index f251c59c31..5d59a87c19 100644 --- a/l10n/si_LK/core.po +++ b/l10n/si_LK/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -163,77 +163,77 @@ msgstr "දෙසැම්බර්" msgid "Settings" msgstr "සැකසුම්" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "තත්පරයන්ට පෙර" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "1 මිනිත්තුවකට පෙර" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "අද" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "ඊයේ" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "පෙර මාසයේ" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "මාස කීපයකට පෙර" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "පෙර අවුරුද්දේ" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "අවුරුදු කීපයකට පෙර" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "තෝරන්න" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "හරි" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "එපා" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "නැහැ" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "තෝරන්න" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "ඔව්" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "හරි" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "නැහැ" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -536,23 +536,23 @@ msgstr "භාවිතා වනු ඇත" msgid "Database user" msgstr "දත්තගබඩා භාවිතාකරු" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "දත්තගබඩාවේ මුරපදය" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "දත්තගබඩාවේ නම" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "දත්තගබඩා සේවාදායකයා" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "ස්ථාපනය කිරීම අවසන් කරන්න" diff --git a/l10n/si_LK/files.po b/l10n/si_LK/files.po index 51ff536352..b3eb4cde33 100644 --- a/l10n/si_LK/files.po +++ b/l10n/si_LK/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:09+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/files_encryption.po b/l10n/si_LK/files_encryption.po index 7af077ac2a..7eac34c9ba 100644 --- a/l10n/si_LK/files_encryption.po +++ b/l10n/si_LK/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/files_external.po b/l10n/si_LK/files_external.po index cafe37e2a6..105ab59cab 100644 --- a/l10n/si_LK/files_external.po +++ b/l10n/si_LK/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 13:00+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -38,13 +38,13 @@ msgstr "කරුණාකර වලංගු Dropbox යෙදුම් යත msgid "Error configuring Google Drive storage" msgstr "Google Drive ගබඩාව වින්‍යාස කිරීමේ දෝශයක් ඇත" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/si_LK/files_sharing.po b/l10n/si_LK/files_sharing.po index 6308f9a772..b2714042dd 100644 --- a/l10n/si_LK/files_sharing.po +++ b/l10n/si_LK/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-23 02:02+0200\n" -"PO-Revision-Date: 2012-10-22 05:59+0000\n" -"Last-Translator: Anushke Guneratne \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,24 +26,24 @@ msgstr "මුරපදය" msgid "Submit" msgstr "යොමු කරන්න" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s ඔබව %s ෆෝල්ඩරයට හවුල් කරගත්තේය" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s ඔබ සමඟ %s ගොනුව බෙදාහදාගත්තේය" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "භාගත කරන්න" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "පූර්වදර්ශනයක් නොමැත" -#: templates/public.php:35 +#: templates/public.php:50 msgid "web services under your control" msgstr "ඔබට පාලනය කළ හැකි වෙබ් සේවාවන්" diff --git a/l10n/si_LK/files_trashbin.po b/l10n/si_LK/files_trashbin.po index 7422317416..8d505239eb 100644 --- a/l10n/si_LK/files_trashbin.po +++ b/l10n/si_LK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/files_versions.po b/l10n/si_LK/files_versions.po index 66e6bcb8f6..4c83ca1d0e 100644 --- a/l10n/si_LK/files_versions.po +++ b/l10n/si_LK/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -41,11 +41,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/si_LK/lib.po b/l10n/si_LK/lib.po index db9dcb3fcd..11a0c7fff2 100644 --- a/l10n/si_LK/lib.po +++ b/l10n/si_LK/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/settings.po b/l10n/si_LK/settings.po index 3f13c351de..0812e02275 100644 --- a/l10n/si_LK/settings.po +++ b/l10n/si_LK/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -123,44 +123,44 @@ msgstr "" msgid "Saving..." msgstr "සුරැකෙමින් පවතී..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "නිෂ්ප්‍රභ කරන්න" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "සමූහය" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "කාණ්ඩ පරිපාලක" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "මකා දමනවා" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" diff --git a/l10n/si_LK/user_ldap.po b/l10n/si_LK/user_ldap.po index bec52d2d48..b9faaaba98 100644 --- a/l10n/si_LK/user_ldap.po +++ b/l10n/si_LK/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/user_webdavauth.po b/l10n/si_LK/user_webdavauth.po index a6141d359c..ada80e75d6 100644 --- a/l10n/si_LK/user_webdavauth.po +++ b/l10n/si_LK/user_webdavauth.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -26,7 +26,7 @@ msgstr "" msgid "URL: http://" msgstr "" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/sk/core.po b/l10n/sk/core.po index 7afee22acf..bc430f23ee 100644 --- a/l10n/sk/core.po +++ b/l10n/sk/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-22 00:03+0100\n" -"PO-Revision-Date: 2013-03-21 23:03+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" @@ -160,76 +160,76 @@ msgstr "" msgid "Settings" msgstr "" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:126 -msgid "Choose" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" msgstr "" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:162 -msgid "No" +#: js/oc-dialogs.js:185 +msgid "Choose" msgstr "" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:180 -msgid "Ok" +#: js/oc-dialogs.js:222 +msgid "No" msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 @@ -237,9 +237,11 @@ msgstr "" msgid "The object type is not specified." msgstr "" -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 -#: js/share.js:578 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 msgid "Error" msgstr "" @@ -259,7 +261,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:125 js/share.js:606 +#: js/share.js:125 js/share.js:617 msgid "Error while sharing" msgstr "" @@ -319,59 +321,59 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:240 +#: js/share.js:251 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:276 +#: js/share.js:287 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:297 +#: js/share.js:308 msgid "Unshare" msgstr "" -#: js/share.js:309 +#: js/share.js:320 msgid "can edit" msgstr "" -#: js/share.js:311 +#: js/share.js:322 msgid "access control" msgstr "" -#: js/share.js:314 +#: js/share.js:325 msgid "create" msgstr "" -#: js/share.js:317 +#: js/share.js:328 msgid "update" msgstr "" -#: js/share.js:320 +#: js/share.js:331 msgid "delete" msgstr "" -#: js/share.js:323 +#: js/share.js:334 msgid "share" msgstr "" -#: js/share.js:357 js/share.js:553 +#: js/share.js:368 js/share.js:564 msgid "Password protected" msgstr "" -#: js/share.js:566 +#: js/share.js:577 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:578 +#: js/share.js:589 msgid "Error setting expiration date" msgstr "" -#: js/share.js:593 +#: js/share.js:604 msgid "Sending ..." msgstr "" -#: js/share.js:604 +#: js/share.js:615 msgid "Email sent" msgstr "" @@ -531,23 +533,23 @@ msgstr "" msgid "Database user" msgstr "" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "" diff --git a/l10n/sk/files.po b/l10n/sk/files.po index 312a9144bf..85c7273021 100644 --- a/l10n/sk/files.po +++ b/l10n/sk/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-08 02:12+0200\n" -"PO-Revision-Date: 2013-04-08 00:13+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk/files_encryption.po b/l10n/sk/files_encryption.po index eb687048ca..dfa8be5d6e 100644 --- a/l10n/sk/files_encryption.po +++ b/l10n/sk/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk/files_external.po b/l10n/sk/files_external.po index 685594af3e..efcc842294 100644 --- a/l10n/sk/files_external.po +++ b/l10n/sk/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" @@ -37,13 +37,13 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:421 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:424 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/sk/files_sharing.po b/l10n/sk/files_sharing.po index 942e60b049..609ac22383 100644 --- a/l10n/sk/files_sharing.po +++ b/l10n/sk/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-09 00:12+0100\n" -"PO-Revision-Date: 2012-08-12 22:35+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,24 +25,24 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "" -#: templates/public.php:35 +#: templates/public.php:50 msgid "web services under your control" msgstr "" diff --git a/l10n/sk/files_trashbin.po b/l10n/sk/files_trashbin.po index 9e904b8761..b616563274 100644 --- a/l10n/sk/files_trashbin.po +++ b/l10n/sk/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-08 02:12+0200\n" -"PO-Revision-Date: 2013-04-08 00:13+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk/files_versions.po b/l10n/sk/files_versions.po index c273fd68fb..3d146dfb02 100644 --- a/l10n/sk/files_versions.po +++ b/l10n/sk/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" @@ -40,11 +40,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/sk/lib.po b/l10n/sk/lib.po index 68541eae87..45bcc4a959 100644 --- a/l10n/sk/lib.po +++ b/l10n/sk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-27 14:35+0100\n" -"PO-Revision-Date: 2013-02-27 13:36+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" @@ -41,19 +41,19 @@ msgstr "" msgid "Admin" msgstr "" -#: files.php:202 +#: files.php:209 msgid "ZIP download is turned off." msgstr "" -#: files.php:203 +#: files.php:210 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:204 files.php:231 +#: files.php:211 files.php:244 msgid "Back to Files" msgstr "" -#: files.php:228 +#: files.php:241 msgid "Selected files too large to generate zip file." msgstr "" @@ -117,72 +117,72 @@ msgstr "" msgid "%s set the database host." msgstr "" -#: setup.php:128 setup.php:320 setup.php:365 +#: setup.php:132 setup.php:324 setup.php:369 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:129 setup.php:152 setup.php:229 +#: setup.php:133 setup.php:156 setup.php:233 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup.php:151 setup.php:453 setup.php:520 +#: setup.php:155 setup.php:457 setup.php:524 msgid "Oracle username and/or password not valid" msgstr "" -#: setup.php:228 +#: setup.php:232 msgid "MySQL username and/or password not valid" msgstr "" -#: setup.php:282 setup.php:386 setup.php:395 setup.php:413 setup.php:423 -#: setup.php:432 setup.php:461 setup.php:527 setup.php:553 setup.php:560 -#: setup.php:571 setup.php:578 setup.php:587 setup.php:595 setup.php:604 -#: setup.php:610 +#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 +#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 +#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 +#: setup.php:614 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup.php:283 setup.php:387 setup.php:396 setup.php:414 setup.php:424 -#: setup.php:433 setup.php:462 setup.php:528 setup.php:554 setup.php:561 -#: setup.php:572 setup.php:588 setup.php:596 setup.php:605 +#: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 +#: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 +#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:299 +#: setup.php:303 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup.php:300 +#: setup.php:304 msgid "Drop this user from MySQL" msgstr "" -#: setup.php:305 +#: setup.php:309 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup.php:306 +#: setup.php:310 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:579 setup.php:611 +#: setup.php:583 setup.php:615 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:631 +#: setup.php:635 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:849 +#: setup.php:853 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:850 +#: setup.php:854 #, php-format msgid "Please double check the installation guides." msgstr "" diff --git a/l10n/sk/settings.po b/l10n/sk/settings.po index 0c10073e8f..5eeac0348e 100644 --- a/l10n/sk/settings.po +++ b/l10n/sk/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" @@ -100,6 +100,10 @@ msgstr "" msgid "Please wait...." msgstr "" +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" +msgstr "" + #: js/apps.js:90 msgid "Updating...." msgstr "" @@ -108,10 +112,6 @@ msgstr "" msgid "Error while updating app" msgstr "" -#: js/apps.js:93 -msgid "Error" -msgstr "" - #: js/apps.js:96 msgid "Updated" msgstr "" @@ -120,44 +120,44 @@ msgstr "" msgid "Saving..." msgstr "" -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" diff --git a/l10n/sk/user_ldap.po b/l10n/sk/user_ldap.po index a22107c718..a5f757920a 100644 --- a/l10n/sk/user_ldap.po +++ b/l10n/sk/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-02 00:03+0100\n" -"PO-Revision-Date: 2013-03-01 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" @@ -86,248 +86,248 @@ msgstr "" msgid "Server configuration" msgstr "" -#: templates/settings.php:18 +#: templates/settings.php:31 msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:23 +#: templates/settings.php:36 msgid "Host" msgstr "" -#: templates/settings.php:25 +#: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:26 +#: templates/settings.php:39 msgid "Base DN" msgstr "" -#: templates/settings.php:27 +#: templates/settings.php:40 msgid "One Base DN per line" msgstr "" -#: templates/settings.php:28 +#: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" -#: templates/settings.php:30 +#: templates/settings.php:43 msgid "User DN" msgstr "" -#: templates/settings.php:32 +#: templates/settings.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 "" -#: templates/settings.php:33 +#: templates/settings.php:46 msgid "Password" msgstr "" -#: templates/settings.php:36 +#: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:37 +#: templates/settings.php:50 msgid "User Login Filter" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:55 msgid "User List Filter" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." msgstr "" -#: templates/settings.php:47 +#: templates/settings.php:60 msgid "Group Filter" msgstr "" -#: templates/settings.php:50 +#: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:68 msgid "Connection Settings" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "Configuration Active" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:71 msgid "Port" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:73 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Use TLS" msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" -#: templates/settings.php:63 +#: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Not recommended, use for testing only." msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:67 +#: templates/settings.php:80 msgid "Directory Settings" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "Base User Tree" msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:71 +#: templates/settings.php:84 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:71 templates/settings.php:74 +#: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:74 +#: templates/settings.php:87 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:88 msgid "Group-Member association" msgstr "" -#: templates/settings.php:77 +#: templates/settings.php:90 msgid "Special Attributes" msgstr "" -#: templates/settings.php:79 +#: templates/settings.php:92 msgid "Quota Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "Quota Default" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "in bytes" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:94 msgid "Email Field" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Test Configuration" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Help" msgstr "" diff --git a/l10n/sk/user_webdavauth.po b/l10n/sk/user_webdavauth.po index eb6e13c58c..3b57127980 100644 --- a/l10n/sk/user_webdavauth.po +++ b/l10n/sk/user_webdavauth.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-09 00:12+0100\n" -"PO-Revision-Date: 2012-11-09 09:06+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/sk_SK/core.po b/l10n/sk_SK/core.po index 4977691c43..00ea6d6633 100644 --- a/l10n/sk_SK/core.po +++ b/l10n/sk_SK/core.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" -"Last-Translator: mhh \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -167,77 +167,77 @@ msgstr "December" msgid "Settings" msgstr "Nastavenia" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "pred sekundami" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "pred minútou" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "pred {minutes} minútami" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "Pred 1 hodinou." -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "Pred {hours} hodinami." -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "dnes" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "včera" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "pred {days} dňami" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "minulý mesiac" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "Pred {months} mesiacmi." -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "pred mesiacmi" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "minulý rok" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "pred rokmi" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Výber" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Ok" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Zrušiť" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Nie" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Výber" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Áno" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "Ok" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Nie" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -540,23 +540,23 @@ msgstr "bude použité" msgid "Database user" msgstr "Hostiteľ databázy" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Heslo databázy" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Meno databázy" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Tabuľkový priestor databázy" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Server databázy" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Dokončiť inštaláciu" diff --git a/l10n/sk_SK/files.po b/l10n/sk_SK/files.po index a02bd8e284..4f956583ed 100644 --- a/l10n/sk_SK/files.po +++ b/l10n/sk_SK/files.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-12 02:09+0200\n" -"PO-Revision-Date: 2013-04-11 12:51+0000\n" -"Last-Translator: martin \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/sk_SK/files_encryption.po b/l10n/sk_SK/files_encryption.po index 232ee99f2f..9ce3732a07 100644 --- a/l10n/sk_SK/files_encryption.po +++ b/l10n/sk_SK/files_encryption.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-11 15:39+0100\n" -"PO-Revision-Date: 2013-02-11 13:10+0000\n" -"Last-Translator: mhh \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/sk_SK/files_external.po b/l10n/sk_SK/files_external.po index 457ddf4a03..a6f07d27d0 100644 --- a/l10n/sk_SK/files_external.po +++ b/l10n/sk_SK/files_external.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 13:00+0000\n" -"Last-Translator: mhh \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -40,13 +40,13 @@ msgstr "Zadajte platný kľúč aplikácie a heslo Dropbox" msgid "Error configuring Google Drive storage" msgstr "Chyba pri konfigurácii úložiska Google drive" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Upozornenie: \"smbclient\" nie je nainštalovaný. Nie je možné pripojenie oddielov CIFS/SMB. Požiadajte administrátora systému, nech ho nainštaluje." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/sk_SK/files_sharing.po b/l10n/sk_SK/files_sharing.po index b964369a8b..07ea96d641 100644 --- a/l10n/sk_SK/files_sharing.po +++ b/l10n/sk_SK/files_sharing.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-02 02:02+0200\n" -"PO-Revision-Date: 2012-10-01 08:36+0000\n" -"Last-Translator: martinb \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,24 +27,24 @@ msgstr "Heslo" msgid "Submit" msgstr "Odoslať" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s zdieľa s vami priečinok %s" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s zdieľa s vami súbor %s" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Stiahnuť" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "Žiaden náhľad k dispozícii pre" -#: templates/public.php:37 +#: templates/public.php:50 msgid "web services under your control" msgstr "webové služby pod Vašou kontrolou" diff --git a/l10n/sk_SK/files_trashbin.po b/l10n/sk_SK/files_trashbin.po index 8611677a17..29989ed5b3 100644 --- a/l10n/sk_SK/files_trashbin.po +++ b/l10n/sk_SK/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/files_versions.po b/l10n/sk_SK/files_versions.po index 0face77318..51261b891f 100644 --- a/l10n/sk_SK/files_versions.po +++ b/l10n/sk_SK/files_versions.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-01 00:05+0100\n" -"PO-Revision-Date: 2013-02-28 15:20+0000\n" -"Last-Translator: mhh \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -43,11 +43,11 @@ msgstr "chyba" msgid "File %s could not be reverted to version %s" msgstr "Súbor %s nemohol byť obnovený na verziu %s" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "Nie sú dostupné žiadne staršie verzie" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "Nevybrali ste cestu" diff --git a/l10n/sk_SK/lib.po b/l10n/sk_SK/lib.po index 516153711f..d1b6873454 100644 --- a/l10n/sk_SK/lib.po +++ b/l10n/sk_SK/lib.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" -"Last-Translator: mhh \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/sk_SK/settings.po b/l10n/sk_SK/settings.po index 7d1cd89b18..fe292fb38b 100644 --- a/l10n/sk_SK/settings.po +++ b/l10n/sk_SK/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -126,44 +126,44 @@ msgstr "Aktualizované" msgid "Saving..." msgstr "Ukladám..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "zmazané" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "vrátiť" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "Nemožno odobrať používateľa" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Skupiny" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Správca skupiny" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Odstrániť" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "pridať skupinu" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "Musíte zadať platné používateľské meno" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "Chyba pri vytváraní používateľa" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "Musíte zadať platné heslo" diff --git a/l10n/sk_SK/user_ldap.po b/l10n/sk_SK/user_ldap.po index 5c221f7f07..9724c53524 100644 --- a/l10n/sk_SK/user_ldap.po +++ b/l10n/sk_SK/user_ldap.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" -"Last-Translator: mhh \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/sk_SK/user_webdavauth.po b/l10n/sk_SK/user_webdavauth.po index b3a30b89ca..a0dcc47ceb 100644 --- a/l10n/sk_SK/user_webdavauth.po +++ b/l10n/sk_SK/user_webdavauth.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-31 00:27+0100\n" -"PO-Revision-Date: 2013-01-30 08:31+0000\n" -"Last-Translator: mhh \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,7 +27,7 @@ msgstr "WebDAV overenie" msgid "URL: http://" msgstr "URL: http://" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/sl/core.po b/l10n/sl/core.po index 6a4197b8c3..80c8dccfbd 100644 --- a/l10n/sl/core.po +++ b/l10n/sl/core.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" -"Last-Translator: mateju <>\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"Last-Translator: I Robot \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" @@ -166,77 +166,77 @@ msgstr "december" msgid "Settings" msgstr "Nastavitve" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "pred nekaj sekundami" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "pred minuto" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "pred {minutes} minutami" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "pred 1 uro" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "pred {hours} urami" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "danes" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "včeraj" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "pred {days} dnevi" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "zadnji mesec" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "pred {months} meseci" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "mesecev nazaj" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "lansko leto" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "let nazaj" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Izbor" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "V redu" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Prekliči" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Ne" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Izbor" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Da" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "V redu" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Ne" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -539,23 +539,23 @@ msgstr "bo uporabljen" msgid "Database user" msgstr "Uporabnik podatkovne zbirke" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Geslo podatkovne zbirke" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Ime podatkovne zbirke" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Razpredelnica podatkovne zbirke" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Gostitelj podatkovne zbirke" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Končaj namestitev" diff --git a/l10n/sl/files.po b/l10n/sl/files.po index 17385d0ac9..252f7b513e 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/files.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-12 02:09+0200\n" -"PO-Revision-Date: 2013-04-11 18:00+0000\n" -"Last-Translator: mateju <>\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \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" diff --git a/l10n/sl/files_encryption.po b/l10n/sl/files_encryption.po index 05ce9505eb..94bd86897e 100644 --- a/l10n/sl/files_encryption.po +++ b/l10n/sl/files_encryption.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-13 00:05+0100\n" -"PO-Revision-Date: 2013-03-12 14:30+0000\n" -"Last-Translator: mateju <>\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \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" diff --git a/l10n/sl/files_external.po b/l10n/sl/files_external.po index 581315d1d2..87d9dc110e 100644 --- a/l10n/sl/files_external.po +++ b/l10n/sl/files_external.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 13:00+0000\n" -"Last-Translator: mateju <>\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \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" @@ -40,13 +40,13 @@ msgstr "Vpisati je treba veljaven ključ programa in kodo za Dropbox" msgid "Error configuring Google Drive storage" msgstr "Napaka nastavljanja shrambe Google Drive" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Opozorilo: paket \"smbclient\" ni nameščen. Priklapljanje pogonov CIFS/SMB ne bo mogoče." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/sl/files_sharing.po b/l10n/sl/files_sharing.po index fe6f3a246d..bfe1165217 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-06 00:04+0200\n" -"PO-Revision-Date: 2013-04-05 17:50+0000\n" -"Last-Translator: mateju <>\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \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" diff --git a/l10n/sl/files_trashbin.po b/l10n/sl/files_trashbin.po index e84784368b..77048dd750 100644 --- a/l10n/sl/files_trashbin.po +++ b/l10n/sl/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files_versions.po b/l10n/sl/files_versions.po index 5810bb0297..5a32b4db17 100644 --- a/l10n/sl/files_versions.po +++ b/l10n/sl/files_versions.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-13 00:05+0100\n" -"PO-Revision-Date: 2013-03-12 14:30+0000\n" -"Last-Translator: mateju <>\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \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" diff --git a/l10n/sl/lib.po b/l10n/sl/lib.po index ab2c687755..9938dc9c02 100644 --- a/l10n/sl/lib.po +++ b/l10n/sl/lib.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-06 00:04+0200\n" -"PO-Revision-Date: 2013-04-05 17:40+0000\n" -"Last-Translator: mateju <>\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \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" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index fef896bdd8..f8062dc331 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/settings.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" -"Last-Translator: mateju <>\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \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" @@ -126,44 +126,44 @@ msgstr "Posodobljeno" msgid "Saving..." msgstr "Poteka shranjevanje ..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "izbrisano" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "razveljavi" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "Uporabnika ni mogoče odstraniti" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Skupine" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Skrbnik skupine" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Izbriši" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "dodaj skupino" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "Navedeno mora biti veljavno uporabniško ime" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "Napaka ustvarjanja uporabnika" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "Navedeno mora biti veljavno geslo" diff --git a/l10n/sl/user_ldap.po b/l10n/sl/user_ldap.po index aaaefb8647..b35519eed4 100644 --- a/l10n/sl/user_ldap.po +++ b/l10n/sl/user_ldap.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" -"Last-Translator: mateju <>\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \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" diff --git a/l10n/sl/user_webdavauth.po b/l10n/sl/user_webdavauth.po index 829fe4d8a1..57c4340128 100644 --- a/l10n/sl/user_webdavauth.po +++ b/l10n/sl/user_webdavauth.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-10 00:05+0100\n" -"PO-Revision-Date: 2013-03-09 19:30+0000\n" -"Last-Translator: mateju <>\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \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" diff --git a/l10n/sq/core.po b/l10n/sq/core.po index 66f2ea88ad..27820eb8b1 100644 --- a/l10n/sq/core.po +++ b/l10n/sq/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 13:20+0000\n" -"Last-Translator: Odeen \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -161,77 +161,77 @@ msgstr "Dhjetor" msgid "Settings" msgstr "Parametrat" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "sekonda më parë" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "1 minutë më parë" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{minutes} minuta më parë" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "1 orë më parë" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{hours} orë më parë" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "sot" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "dje" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "{days} ditë më parë" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "muajin e shkuar" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "{months} muaj më parë" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "muaj më parë" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "vitin e shkuar" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "vite më parë" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Zgjidh" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Në rregull" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Anulo" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Jo" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Zgjidh" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Po" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "Në rregull" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Jo" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -534,23 +534,23 @@ msgstr "do të përdoret" msgid "Database user" msgstr "Përdoruesi i database-it" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Kodi i database-it" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Emri i database-it" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Tablespace-i i database-it" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Pozicioni (host) i database-it" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Mbaro setup-in" diff --git a/l10n/sq/files.po b/l10n/sq/files.po index abcbe9a312..887642ef41 100644 --- a/l10n/sq/files.po +++ b/l10n/sq/files.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-11 02:08+0200\n" -"PO-Revision-Date: 2013-04-10 09:20+0000\n" -"Last-Translator: Odeen \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/sq/files_encryption.po b/l10n/sq/files_encryption.po index 4cb262b3e8..e077f5e19b 100644 --- a/l10n/sq/files_encryption.po +++ b/l10n/sq/files_encryption.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/sq/files_external.po b/l10n/sq/files_external.po index 5a989cbebc..494a58ba3b 100644 --- a/l10n/sq/files_external.po +++ b/l10n/sq/files_external.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2012-08-12 22:34+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/sq/files_sharing.po b/l10n/sq/files_sharing.po index ec38c14f36..69b90c903d 100644 --- a/l10n/sq/files_sharing.po +++ b/l10n/sq/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-04 00:05+0200\n" -"PO-Revision-Date: 2013-04-03 14:00+0000\n" -"Last-Translator: Odeen \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/sq/files_trashbin.po b/l10n/sq/files_trashbin.po index b576868130..faad2478b9 100644 --- a/l10n/sq/files_trashbin.po +++ b/l10n/sq/files_trashbin.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-11 02:08+0200\n" -"PO-Revision-Date: 2013-04-10 09:00+0000\n" -"Last-Translator: Odeen \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/sq/files_versions.po b/l10n/sq/files_versions.po index a5a97e9bdb..82daa820ba 100644 --- a/l10n/sq/files_versions.po +++ b/l10n/sq/files_versions.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2012-08-12 22:37+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/sq/lib.po b/l10n/sq/lib.po index 2ea2562cf9..0461910a06 100644 --- a/l10n/sq/lib.po +++ b/l10n/sq/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 13:20+0000\n" -"Last-Translator: Odeen \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/sq/settings.po b/l10n/sq/settings.po index 9fe3e67ef4..c4e2ddab22 100644 --- a/l10n/sq/settings.po +++ b/l10n/sq/settings.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-13 02:12+0200\n" -"PO-Revision-Date: 2013-04-12 16:20+0000\n" -"Last-Translator: Odeen \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/sq/user_ldap.po b/l10n/sq/user_ldap.po index d0436434a5..e947284572 100644 --- a/l10n/sq/user_ldap.po +++ b/l10n/sq/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-03 00:03+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/sq/user_webdavauth.po b/l10n/sq/user_webdavauth.po index 1324665d52..b3bb1e1625 100644 --- a/l10n/sq/user_webdavauth.po +++ b/l10n/sq/user_webdavauth.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2012-11-09 09:06+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/sr/core.po b/l10n/sr/core.po index 1d0f0b5193..46dda51aa2 100644 --- a/l10n/sr/core.po +++ b/l10n/sr/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -163,77 +163,77 @@ msgstr "Децембар" msgid "Settings" msgstr "Подешавања" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "пре неколико секунди" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "пре 1 минут" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "пре {minutes} минута" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "Пре једног сата" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "Пре {hours} сата (сати)" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "данас" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "јуче" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "пре {days} дана" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "прошлог месеца" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "Пре {months} месеца (месеци)" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "месеци раније" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "прошле године" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "година раније" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Одабери" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "У реду" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Откажи" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Не" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Одабери" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Да" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "У реду" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Не" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -536,23 +536,23 @@ msgstr "ће бити коришћен" msgid "Database user" msgstr "Корисник базе" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Лозинка базе" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Име базе" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Радни простор базе података" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Домаћин базе" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Заврши подешавање" diff --git a/l10n/sr/files.po b/l10n/sr/files.po index 779a126355..0eff71bb2c 100644 --- a/l10n/sr/files.po +++ b/l10n/sr/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:09+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/files_encryption.po b/l10n/sr/files_encryption.po index 4f38bb711f..a27a28465f 100644 --- a/l10n/sr/files_encryption.po +++ b/l10n/sr/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/files_external.po b/l10n/sr/files_external.po index f9dec54fe8..800176734a 100644 --- a/l10n/sr/files_external.po +++ b/l10n/sr/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -37,13 +37,13 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:421 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:424 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/sr/files_sharing.po b/l10n/sr/files_sharing.po index d2e787a42c..9181ca9a56 100644 --- a/l10n/sr/files_sharing.po +++ b/l10n/sr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 17:30+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -25,24 +25,24 @@ msgstr "Лозинка" msgid "Submit" msgstr "Пошаљи" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Преузми" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "" -#: templates/public.php:35 +#: templates/public.php:50 msgid "web services under your control" msgstr "" diff --git a/l10n/sr/files_trashbin.po b/l10n/sr/files_trashbin.po index d187778db8..2a417b2ea6 100644 --- a/l10n/sr/files_trashbin.po +++ b/l10n/sr/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/files_versions.po b/l10n/sr/files_versions.po index 402e0c7165..ec43d448da 100644 --- a/l10n/sr/files_versions.po +++ b/l10n/sr/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -41,11 +41,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/sr/lib.po b/l10n/sr/lib.po index bda81308e9..733b5938e2 100644 --- a/l10n/sr/lib.po +++ b/l10n/sr/lib.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/settings.po b/l10n/sr/settings.po index c6dcf5bad7..e49c51e90e 100644 --- a/l10n/sr/settings.po +++ b/l10n/sr/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -122,44 +122,44 @@ msgstr "" msgid "Saving..." msgstr "Чување у току..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "опозови" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Групе" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Управник групе" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Обриши" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" diff --git a/l10n/sr/user_ldap.po b/l10n/sr/user_ldap.po index cf42fd6573..71831e3ed8 100644 --- a/l10n/sr/user_ldap.po +++ b/l10n/sr/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/user_webdavauth.po b/l10n/sr/user_webdavauth.po index 764d45ef40..e16ddc8070 100644 --- a/l10n/sr/user_webdavauth.po +++ b/l10n/sr/user_webdavauth.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 22:10+0000\n" -"Last-Translator: Rancher \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,7 +26,7 @@ msgstr "WebDAV провера идентитета" msgid "URL: http://" msgstr "Адреса: http://" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/sr@latin/core.po b/l10n/sr@latin/core.po index 44ec0fad2a..c1307364cb 100644 --- a/l10n/sr@latin/core.po +++ b/l10n/sr@latin/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-02 00:03+0200\n" -"PO-Revision-Date: 2013-03-31 22:12+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -161,76 +161,76 @@ msgstr "Decembar" msgid "Settings" msgstr "Podešavanja" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:126 -msgid "Choose" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" msgstr "" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Otkaži" -#: js/oc-dialogs.js:162 -msgid "No" +#: js/oc-dialogs.js:185 +msgid "Choose" msgstr "" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:180 -msgid "Ok" +#: js/oc-dialogs.js:222 +msgid "No" msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 @@ -238,8 +238,10 @@ msgstr "" msgid "The object type is not specified." msgstr "" -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 #: js/share.js:589 msgid "Error" msgstr "" @@ -532,23 +534,23 @@ msgstr "će biti korišćen" msgid "Database user" msgstr "Korisnik baze" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Lozinka baze" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Ime baze" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Domaćin baze" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Završi podešavanje" diff --git a/l10n/sr@latin/files.po b/l10n/sr@latin/files.po index d28e72bf26..43356ea3f8 100644 --- a/l10n/sr@latin/files.po +++ b/l10n/sr@latin/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-08 02:12+0200\n" -"PO-Revision-Date: 2013-04-08 00:13+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/files_encryption.po b/l10n/sr@latin/files_encryption.po index a34c90f6c0..4ed26d5541 100644 --- a/l10n/sr@latin/files_encryption.po +++ b/l10n/sr@latin/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/files_external.po b/l10n/sr@latin/files_external.po index ccf11b6140..74194db3c8 100644 --- a/l10n/sr@latin/files_external.po +++ b/l10n/sr@latin/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -37,13 +37,13 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:421 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:424 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/sr@latin/files_sharing.po b/l10n/sr@latin/files_sharing.po index cd27899cfc..fd4664a6ee 100644 --- a/l10n/sr@latin/files_sharing.po +++ b/l10n/sr@latin/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-22 01:14+0200\n" -"PO-Revision-Date: 2012-09-21 23:15+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,24 +25,24 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "" -#: templates/public.php:37 +#: templates/public.php:50 msgid "web services under your control" msgstr "" diff --git a/l10n/sr@latin/files_trashbin.po b/l10n/sr@latin/files_trashbin.po index 51104cc42d..a2456c9bf8 100644 --- a/l10n/sr@latin/files_trashbin.po +++ b/l10n/sr@latin/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-08 02:12+0200\n" -"PO-Revision-Date: 2013-04-08 00:13+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/files_versions.po b/l10n/sr@latin/files_versions.po index 53af96aaac..a73c400c08 100644 --- a/l10n/sr@latin/files_versions.po +++ b/l10n/sr@latin/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -40,11 +40,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/sr@latin/lib.po b/l10n/sr@latin/lib.po index 5af0bde8e2..0c0e851bf5 100644 --- a/l10n/sr@latin/lib.po +++ b/l10n/sr@latin/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-02 00:03+0200\n" -"PO-Revision-Date: 2013-03-31 22:13+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/settings.po b/l10n/sr@latin/settings.po index d7de36047b..6304ccc06c 100644 --- a/l10n/sr@latin/settings.po +++ b/l10n/sr@latin/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -101,6 +101,10 @@ msgstr "" msgid "Please wait...." msgstr "" +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" +msgstr "" + #: js/apps.js:90 msgid "Updating...." msgstr "" @@ -109,10 +113,6 @@ msgstr "" msgid "Error while updating app" msgstr "" -#: js/apps.js:93 -msgid "Error" -msgstr "" - #: js/apps.js:96 msgid "Updated" msgstr "" @@ -121,44 +121,44 @@ msgstr "" msgid "Saving..." msgstr "" -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Grupe" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Obriši" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" diff --git a/l10n/sr@latin/user_ldap.po b/l10n/sr@latin/user_ldap.po index 05f0229b2e..b3a83e4828 100644 --- a/l10n/sr@latin/user_ldap.po +++ b/l10n/sr@latin/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-02 00:03+0100\n" -"PO-Revision-Date: 2013-03-01 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -86,248 +86,248 @@ msgstr "" msgid "Server configuration" msgstr "" -#: templates/settings.php:18 +#: templates/settings.php:31 msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:23 +#: templates/settings.php:36 msgid "Host" msgstr "" -#: templates/settings.php:25 +#: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:26 +#: templates/settings.php:39 msgid "Base DN" msgstr "" -#: templates/settings.php:27 +#: templates/settings.php:40 msgid "One Base DN per line" msgstr "" -#: templates/settings.php:28 +#: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" -#: templates/settings.php:30 +#: templates/settings.php:43 msgid "User DN" msgstr "" -#: templates/settings.php:32 +#: templates/settings.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 "" -#: templates/settings.php:33 +#: templates/settings.php:46 msgid "Password" msgstr "" -#: templates/settings.php:36 +#: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:37 +#: templates/settings.php:50 msgid "User Login Filter" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:55 msgid "User List Filter" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." msgstr "" -#: templates/settings.php:47 +#: templates/settings.php:60 msgid "Group Filter" msgstr "" -#: templates/settings.php:50 +#: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:68 msgid "Connection Settings" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "Configuration Active" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:71 msgid "Port" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:73 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Use TLS" msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" -#: templates/settings.php:63 +#: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Not recommended, use for testing only." msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:67 +#: templates/settings.php:80 msgid "Directory Settings" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "Base User Tree" msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:71 +#: templates/settings.php:84 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:71 templates/settings.php:74 +#: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:74 +#: templates/settings.php:87 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:88 msgid "Group-Member association" msgstr "" -#: templates/settings.php:77 +#: templates/settings.php:90 msgid "Special Attributes" msgstr "" -#: templates/settings.php:79 +#: templates/settings.php:92 msgid "Quota Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "Quota Default" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "in bytes" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:94 msgid "Email Field" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Test Configuration" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Help" msgstr "Pomoć" diff --git a/l10n/sr@latin/user_webdavauth.po b/l10n/sr@latin/user_webdavauth.po index 246116723c..ce7bf86e0b 100644 --- a/l10n/sr@latin/user_webdavauth.po +++ b/l10n/sr@latin/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -25,7 +25,7 @@ msgstr "" msgid "URL: http://" msgstr "" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/sv/core.po b/l10n/sv/core.po index cc1e60450c..f06b83da0a 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/core.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" -"Last-Translator: Magnus Höglund \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -167,77 +167,77 @@ msgstr "December" msgid "Settings" msgstr "Inställningar" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "sekunder sedan" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "1 minut sedan" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{minutes} minuter sedan" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "1 timme sedan" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{hours} timmar sedan" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "i dag" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "i går" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "{days} dagar sedan" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "förra månaden" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "{months} månader sedan" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "månader sedan" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "förra året" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "år sedan" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Välj" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Ok" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Avbryt" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Nej" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Välj" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Ja" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "Ok" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Nej" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -540,23 +540,23 @@ msgstr "kommer att användas" msgid "Database user" msgstr "Databasanvändare" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Lösenord till databasen" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Databasnamn" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Databas tabellutrymme" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Databasserver" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Avsluta installation" diff --git a/l10n/sv/files.po b/l10n/sv/files.po index 4ba1e27328..46f06f3a61 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/files.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:09+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files_encryption.po b/l10n/sv/files_encryption.po index b401db609d..4f03c0ca4e 100644 --- a/l10n/sv/files_encryption.po +++ b/l10n/sv/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files_external.po b/l10n/sv/files_external.po index e5cb8e70b6..2c3ed5c2cf 100644 --- a/l10n/sv/files_external.po +++ b/l10n/sv/files_external.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 13:00+0000\n" -"Last-Translator: Lokal_Profil \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -39,13 +39,13 @@ msgstr "Ange en giltig Dropbox nyckel och hemlighet." msgid "Error configuring Google Drive storage" msgstr "Fel vid konfigurering av Google Drive" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Varning: \"smb-klienten\" är inte installerad. Montering av CIFS/SMB delningar är inte möjligt. Kontakta din systemadministratör för att få den installerad." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/sv/files_sharing.po b/l10n/sv/files_sharing.po index 8b3fffa739..83540b196b 100644 --- a/l10n/sv/files_sharing.po +++ b/l10n/sv/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-24 02:01+0200\n" -"PO-Revision-Date: 2012-09-23 11:37+0000\n" -"Last-Translator: Magnus Höglund \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,24 +26,24 @@ msgstr "Lösenord" msgid "Submit" msgstr "Skicka" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s delade mappen %s med dig" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s delade filen %s med dig" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Ladda ner" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "Ingen förhandsgranskning tillgänglig för" -#: templates/public.php:37 +#: templates/public.php:50 msgid "web services under your control" msgstr "webbtjänster under din kontroll" diff --git a/l10n/sv/files_trashbin.po b/l10n/sv/files_trashbin.po index 4215aa66ab..6e33046423 100644 --- a/l10n/sv/files_trashbin.po +++ b/l10n/sv/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files_versions.po b/l10n/sv/files_versions.po index 7570670aef..088b1f902d 100644 --- a/l10n/sv/files_versions.po +++ b/l10n/sv/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-02 00:03+0200\n" -"PO-Revision-Date: 2013-04-01 08:30+0000\n" -"Last-Translator: Magnus Höglund \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/sv/lib.po b/l10n/sv/lib.po index da947e167c..5b3a208940 100644 --- a/l10n/sv/lib.po +++ b/l10n/sv/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index e5846829b2..599768c9e4 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" -"Last-Translator: Magnus Höglund \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -129,44 +129,44 @@ msgstr "Uppdaterad" msgid "Saving..." msgstr "Sparar..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "raderad" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "ångra" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "Kan inte ta bort användare" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Grupper" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Gruppadministratör" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Radera" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "lägg till grupp" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "Ett giltigt användarnamn måste anges" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "Fel vid skapande av användare" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "Ett giltigt lösenord måste anges" diff --git a/l10n/sv/user_ldap.po b/l10n/sv/user_ldap.po index cec721691d..7473df8242 100644 --- a/l10n/sv/user_ldap.po +++ b/l10n/sv/user_ldap.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-02 00:03+0200\n" -"PO-Revision-Date: 2013-04-01 08:20+0000\n" -"Last-Translator: Magnus Höglund \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/sv/user_webdavauth.po b/l10n/sv/user_webdavauth.po index 98475a8bd9..bf35caa2cf 100644 --- a/l10n/sv/user_webdavauth.po +++ b/l10n/sv/user_webdavauth.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-23 00:05+0100\n" -"PO-Revision-Date: 2013-01-21 15:25+0000\n" -"Last-Translator: Magnus Höglund \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,7 +26,7 @@ msgstr "WebDAV Autentisering" msgid "URL: http://" msgstr "URL: http://" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/sw_KE/core.po b/l10n/sw_KE/core.po index f5cc1f2d3e..e548cb04e3 100644 --- a/l10n/sw_KE/core.po +++ b/l10n/sw_KE/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-22 00:03+0100\n" -"PO-Revision-Date: 2013-03-21 23:03+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" @@ -160,76 +160,76 @@ msgstr "" msgid "Settings" msgstr "" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:126 -msgid "Choose" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" msgstr "" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:162 -msgid "No" +#: js/oc-dialogs.js:185 +msgid "Choose" msgstr "" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:180 -msgid "Ok" +#: js/oc-dialogs.js:222 +msgid "No" msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 @@ -237,9 +237,11 @@ msgstr "" msgid "The object type is not specified." msgstr "" -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 -#: js/share.js:578 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 msgid "Error" msgstr "" @@ -259,7 +261,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:125 js/share.js:606 +#: js/share.js:125 js/share.js:617 msgid "Error while sharing" msgstr "" @@ -319,59 +321,59 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:240 +#: js/share.js:251 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:276 +#: js/share.js:287 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:297 +#: js/share.js:308 msgid "Unshare" msgstr "" -#: js/share.js:309 +#: js/share.js:320 msgid "can edit" msgstr "" -#: js/share.js:311 +#: js/share.js:322 msgid "access control" msgstr "" -#: js/share.js:314 +#: js/share.js:325 msgid "create" msgstr "" -#: js/share.js:317 +#: js/share.js:328 msgid "update" msgstr "" -#: js/share.js:320 +#: js/share.js:331 msgid "delete" msgstr "" -#: js/share.js:323 +#: js/share.js:334 msgid "share" msgstr "" -#: js/share.js:357 js/share.js:553 +#: js/share.js:368 js/share.js:564 msgid "Password protected" msgstr "" -#: js/share.js:566 +#: js/share.js:577 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:578 +#: js/share.js:589 msgid "Error setting expiration date" msgstr "" -#: js/share.js:593 +#: js/share.js:604 msgid "Sending ..." msgstr "" -#: js/share.js:604 +#: js/share.js:615 msgid "Email sent" msgstr "" @@ -531,23 +533,23 @@ msgstr "" msgid "Database user" msgstr "" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "" diff --git a/l10n/sw_KE/files.po b/l10n/sw_KE/files.po index 65f750efc7..b58c07e5cb 100644 --- a/l10n/sw_KE/files.po +++ b/l10n/sw_KE/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-08 02:12+0200\n" -"PO-Revision-Date: 2013-04-08 00:13+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sw_KE/files_encryption.po b/l10n/sw_KE/files_encryption.po index 210f1a0455..62ef25444c 100644 --- a/l10n/sw_KE/files_encryption.po +++ b/l10n/sw_KE/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sw_KE/files_external.po b/l10n/sw_KE/files_external.po index 2054bbb707..1edf9425c6 100644 --- a/l10n/sw_KE/files_external.po +++ b/l10n/sw_KE/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" @@ -37,13 +37,13 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:421 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:424 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/sw_KE/files_sharing.po b/l10n/sw_KE/files_sharing.po index adbbc6c0f0..65a3fc50bd 100644 --- a/l10n/sw_KE/files_sharing.po +++ b/l10n/sw_KE/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2012-08-12 22:35+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,24 +25,24 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "" -#: templates/public.php:35 +#: templates/public.php:50 msgid "web services under your control" msgstr "" diff --git a/l10n/sw_KE/files_trashbin.po b/l10n/sw_KE/files_trashbin.po index 2b45347348..a07e5dce97 100644 --- a/l10n/sw_KE/files_trashbin.po +++ b/l10n/sw_KE/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-08 02:12+0200\n" -"PO-Revision-Date: 2013-04-08 00:13+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sw_KE/files_versions.po b/l10n/sw_KE/files_versions.po index e8849bf702..cef9f7b327 100644 --- a/l10n/sw_KE/files_versions.po +++ b/l10n/sw_KE/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" @@ -40,11 +40,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/sw_KE/lib.po b/l10n/sw_KE/lib.po index 8dbccab4ab..cdaf7c7f07 100644 --- a/l10n/sw_KE/lib.po +++ b/l10n/sw_KE/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-27 14:35+0100\n" -"PO-Revision-Date: 2013-02-27 13:36+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" @@ -41,19 +41,19 @@ msgstr "" msgid "Admin" msgstr "" -#: files.php:202 +#: files.php:209 msgid "ZIP download is turned off." msgstr "" -#: files.php:203 +#: files.php:210 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:204 files.php:231 +#: files.php:211 files.php:244 msgid "Back to Files" msgstr "" -#: files.php:228 +#: files.php:241 msgid "Selected files too large to generate zip file." msgstr "" @@ -117,72 +117,72 @@ msgstr "" msgid "%s set the database host." msgstr "" -#: setup.php:128 setup.php:320 setup.php:365 +#: setup.php:132 setup.php:324 setup.php:369 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:129 setup.php:152 setup.php:229 +#: setup.php:133 setup.php:156 setup.php:233 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup.php:151 setup.php:453 setup.php:520 +#: setup.php:155 setup.php:457 setup.php:524 msgid "Oracle username and/or password not valid" msgstr "" -#: setup.php:228 +#: setup.php:232 msgid "MySQL username and/or password not valid" msgstr "" -#: setup.php:282 setup.php:386 setup.php:395 setup.php:413 setup.php:423 -#: setup.php:432 setup.php:461 setup.php:527 setup.php:553 setup.php:560 -#: setup.php:571 setup.php:578 setup.php:587 setup.php:595 setup.php:604 -#: setup.php:610 +#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 +#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 +#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 +#: setup.php:614 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup.php:283 setup.php:387 setup.php:396 setup.php:414 setup.php:424 -#: setup.php:433 setup.php:462 setup.php:528 setup.php:554 setup.php:561 -#: setup.php:572 setup.php:588 setup.php:596 setup.php:605 +#: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 +#: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 +#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:299 +#: setup.php:303 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup.php:300 +#: setup.php:304 msgid "Drop this user from MySQL" msgstr "" -#: setup.php:305 +#: setup.php:309 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup.php:306 +#: setup.php:310 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:579 setup.php:611 +#: setup.php:583 setup.php:615 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:631 +#: setup.php:635 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:849 +#: setup.php:853 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:850 +#: setup.php:854 #, php-format msgid "Please double check the installation guides." msgstr "" diff --git a/l10n/sw_KE/settings.po b/l10n/sw_KE/settings.po index a4e6f450aa..c074b9bf1a 100644 --- a/l10n/sw_KE/settings.po +++ b/l10n/sw_KE/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" @@ -100,6 +100,10 @@ msgstr "" msgid "Please wait...." msgstr "" +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" +msgstr "" + #: js/apps.js:90 msgid "Updating...." msgstr "" @@ -108,10 +112,6 @@ msgstr "" msgid "Error while updating app" msgstr "" -#: js/apps.js:93 -msgid "Error" -msgstr "" - #: js/apps.js:96 msgid "Updated" msgstr "" @@ -120,44 +120,44 @@ msgstr "" msgid "Saving..." msgstr "" -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" diff --git a/l10n/sw_KE/user_ldap.po b/l10n/sw_KE/user_ldap.po index 4715c3b41d..4aaba2fca2 100644 --- a/l10n/sw_KE/user_ldap.po +++ b/l10n/sw_KE/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-02 00:03+0100\n" -"PO-Revision-Date: 2013-03-01 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" @@ -86,248 +86,248 @@ msgstr "" msgid "Server configuration" msgstr "" -#: templates/settings.php:18 +#: templates/settings.php:31 msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:23 +#: templates/settings.php:36 msgid "Host" msgstr "" -#: templates/settings.php:25 +#: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:26 +#: templates/settings.php:39 msgid "Base DN" msgstr "" -#: templates/settings.php:27 +#: templates/settings.php:40 msgid "One Base DN per line" msgstr "" -#: templates/settings.php:28 +#: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" -#: templates/settings.php:30 +#: templates/settings.php:43 msgid "User DN" msgstr "" -#: templates/settings.php:32 +#: templates/settings.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 "" -#: templates/settings.php:33 +#: templates/settings.php:46 msgid "Password" msgstr "" -#: templates/settings.php:36 +#: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:37 +#: templates/settings.php:50 msgid "User Login Filter" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:55 msgid "User List Filter" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." msgstr "" -#: templates/settings.php:47 +#: templates/settings.php:60 msgid "Group Filter" msgstr "" -#: templates/settings.php:50 +#: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:68 msgid "Connection Settings" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "Configuration Active" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:71 msgid "Port" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:73 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Use TLS" msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" -#: templates/settings.php:63 +#: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Not recommended, use for testing only." msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:67 +#: templates/settings.php:80 msgid "Directory Settings" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "Base User Tree" msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:71 +#: templates/settings.php:84 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:71 templates/settings.php:74 +#: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:74 +#: templates/settings.php:87 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:88 msgid "Group-Member association" msgstr "" -#: templates/settings.php:77 +#: templates/settings.php:90 msgid "Special Attributes" msgstr "" -#: templates/settings.php:79 +#: templates/settings.php:92 msgid "Quota Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "Quota Default" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "in bytes" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:94 msgid "Email Field" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Test Configuration" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Help" msgstr "" diff --git a/l10n/sw_KE/user_webdavauth.po b/l10n/sw_KE/user_webdavauth.po index 1e07c21030..953de1d9f7 100644 --- a/l10n/sw_KE/user_webdavauth.po +++ b/l10n/sw_KE/user_webdavauth.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2012-11-09 09:06+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/ta_LK/core.po b/l10n/ta_LK/core.po index 545101af6a..55a61f9b59 100644 --- a/l10n/ta_LK/core.po +++ b/l10n/ta_LK/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -162,77 +162,77 @@ msgstr "மார்கழி" msgid "Settings" msgstr "அமைப்புகள்" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "செக்கன்களுக்கு முன்" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "1 நிமிடத்திற்கு முன் " -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{நிமிடங்கள்} நிமிடங்களுக்கு முன் " -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "1 மணித்தியாலத்திற்கு முன்" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{மணித்தியாலங்கள்} மணித்தியாலங்களிற்கு முன்" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "இன்று" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "நேற்று" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "{நாட்கள்} நாட்களுக்கு முன்" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "கடந்த மாதம்" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "{மாதங்கள்} மாதங்களிற்கு முன்" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "மாதங்களுக்கு முன்" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "கடந்த வருடம்" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "வருடங்களுக்கு முன்" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "தெரிவுசெய்க " +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "சரி" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "இரத்து செய்க" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "இல்லை" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "தெரிவுசெய்க " -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "ஆம்" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "சரி" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "இல்லை" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -535,23 +535,23 @@ msgstr "பயன்படுத்தப்படும்" msgid "Database user" msgstr "தரவுத்தள பயனாளர்" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "தரவுத்தள கடவுச்சொல்" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "தரவுத்தள பெயர்" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "தரவுத்தள அட்டவணை" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "தரவுத்தள ஓம்புனர்" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "அமைப்பை முடிக்க" diff --git a/l10n/ta_LK/files.po b/l10n/ta_LK/files.po index 615b1ae5ce..5098c48575 100644 --- a/l10n/ta_LK/files.po +++ b/l10n/ta_LK/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:09+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/files_encryption.po b/l10n/ta_LK/files_encryption.po index fbd878dfe5..3bb249d6a9 100644 --- a/l10n/ta_LK/files_encryption.po +++ b/l10n/ta_LK/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/files_external.po b/l10n/ta_LK/files_external.po index 200c2bbb18..99c6381107 100644 --- a/l10n/ta_LK/files_external.po +++ b/l10n/ta_LK/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 13:00+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -38,13 +38,13 @@ msgstr "தயவுசெய்து ஒரு செல்லுபடிய msgid "Error configuring Google Drive storage" msgstr "Google இயக்க சேமிப்பகத்தை தகமைப்பதில் வழு" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/ta_LK/files_sharing.po b/l10n/ta_LK/files_sharing.po index cdb761631d..59ced6d1e7 100644 --- a/l10n/ta_LK/files_sharing.po +++ b/l10n/ta_LK/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-20 00:01+0100\n" -"PO-Revision-Date: 2012-11-19 09:00+0000\n" -"Last-Translator: suganthi \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,24 +26,24 @@ msgstr "கடவுச்சொல்" msgid "Submit" msgstr "சமர்ப்பிக்குக" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s கோப்புறையானது %s உடன் பகிரப்பட்டது" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s கோப்பானது %s உடன் பகிரப்பட்டது" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "பதிவிறக்குக" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "அதற்கு முன்னோக்கு ஒன்றும் இல்லை" -#: templates/public.php:35 +#: templates/public.php:50 msgid "web services under your control" msgstr "வலைய சேவைகள் உங்களுடைய கட்டுப்பாட்டின் கீழ் உள்ளது" diff --git a/l10n/ta_LK/files_trashbin.po b/l10n/ta_LK/files_trashbin.po index 0e5ba275f2..11fca381d5 100644 --- a/l10n/ta_LK/files_trashbin.po +++ b/l10n/ta_LK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/files_versions.po b/l10n/ta_LK/files_versions.po index abba80ba96..7006e4048c 100644 --- a/l10n/ta_LK/files_versions.po +++ b/l10n/ta_LK/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -41,11 +41,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/ta_LK/lib.po b/l10n/ta_LK/lib.po index 0a55ae9ad6..cdd1610d33 100644 --- a/l10n/ta_LK/lib.po +++ b/l10n/ta_LK/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/settings.po b/l10n/ta_LK/settings.po index 23da61ca18..b67cf68c46 100644 --- a/l10n/ta_LK/settings.po +++ b/l10n/ta_LK/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -121,44 +121,44 @@ msgstr "" msgid "Saving..." msgstr "இயலுமைப்படுத்துக" -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "முன் செயல் நீக்கம் " -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "குழுக்கள்" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "குழு நிர்வாகி" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "அழிக்க" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" diff --git a/l10n/ta_LK/user_ldap.po b/l10n/ta_LK/user_ldap.po index ed69b01b56..38edbdb01c 100644 --- a/l10n/ta_LK/user_ldap.po +++ b/l10n/ta_LK/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/user_webdavauth.po b/l10n/ta_LK/user_webdavauth.po index 59edf0b378..855cd95e8d 100644 --- a/l10n/ta_LK/user_webdavauth.po +++ b/l10n/ta_LK/user_webdavauth.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -26,7 +26,7 @@ msgstr "" msgid "URL: http://" msgstr "" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/te/core.po b/l10n/te/core.po index ec30ff1086..417137fc05 100644 --- a/l10n/te/core.po +++ b/l10n/te/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" -"Last-Translator: వీవెన్ \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -161,77 +161,77 @@ msgstr "డిసెంబర్" msgid "Settings" msgstr "అమరికలు" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "క్షణాల క్రితం" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "1 నిమిషం క్రితం" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{minutes} నిమిషాల క్రితం" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "1 గంట క్రితం" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{hours} గంటల క్రితం" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "ఈరోజు" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "నిన్న" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "{days} రోజుల క్రితం" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "పోయిన నెల" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "{months} నెలల క్రితం" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "నెలల క్రితం" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "పోయిన సంవత్సరం" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "సంవత్సరాల క్రితం" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "సరే" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "రద్దుచేయి" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "కాదు" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "అవును" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "సరే" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "కాదు" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -534,23 +534,23 @@ msgstr "" msgid "Database user" msgstr "" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "" diff --git a/l10n/te/files.po b/l10n/te/files.po index 5a869684be..4f3c5fed3d 100644 --- a/l10n/te/files.po +++ b/l10n/te/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:09+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/files_encryption.po b/l10n/te/files_encryption.po index 4490c006c8..27ac36937f 100644 --- a/l10n/te/files_encryption.po +++ b/l10n/te/files_encryption.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/te/files_external.po b/l10n/te/files_external.po index 443334d153..87acb28ef9 100644 --- a/l10n/te/files_external.po +++ b/l10n/te/files_external.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2012-08-12 22:34+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -37,13 +37,13 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/te/files_sharing.po b/l10n/te/files_sharing.po index fbc5e47d93..73b662b618 100644 --- a/l10n/te/files_sharing.po +++ b/l10n/te/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2012-08-12 22:35+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/te/files_trashbin.po b/l10n/te/files_trashbin.po index db028a5f73..7e768f37fd 100644 --- a/l10n/te/files_trashbin.po +++ b/l10n/te/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/files_versions.po b/l10n/te/files_versions.po index 5f1b874d45..0cd31615b5 100644 --- a/l10n/te/files_versions.po +++ b/l10n/te/files_versions.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2012-08-12 22:37+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/te/lib.po b/l10n/te/lib.po index dc5288920b..e1190a2059 100644 --- a/l10n/te/lib.po +++ b/l10n/te/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/te/settings.po b/l10n/te/settings.po index 932912ae69..b2685193b7 100644 --- a/l10n/te/settings.po +++ b/l10n/te/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -121,44 +121,44 @@ msgstr "" msgid "Saving..." msgstr "" -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "తొలగించు" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" diff --git a/l10n/te/user_ldap.po b/l10n/te/user_ldap.po index 0688209cb1..2516171f5f 100644 --- a/l10n/te/user_ldap.po +++ b/l10n/te/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/te/user_webdavauth.po b/l10n/te/user_webdavauth.po index 9719a07978..038f4caab9 100644 --- a/l10n/te/user_webdavauth.po +++ b/l10n/te/user_webdavauth.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2012-11-09 09:06+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 3e46392ef0..55f9fb37e9 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-15 02:10+0200\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index f754c8bd8d..44c5115e9f 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-15 02:09+0200\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index ebfd7e5e2e..fe492121d6 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-15 02:09+0200\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 69055bd18e..5a2772ef4c 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-15 02:10+0200\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 08b36f4b3a..4375f2c902 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-15 02:10+0200\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index 14a6c5ad95..fab03d3027 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-15 02:10+0200\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index bea3f2884f..b720108dae 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-15 02:10+0200\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index b4549431ec..85e30cdc48 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-15 02:10+0200\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index a433f3acbc..04cd009886 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-15 02:10+0200\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 1e78f874e4..54fab0b1c0 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-15 02:10+0200\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index 25991dd328..c55257e01c 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-15 02:10+0200\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/th_TH/core.po b/l10n/th_TH/core.po index ff90a06425..a2644ea12f 100644 --- a/l10n/th_TH/core.po +++ b/l10n/th_TH/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -162,77 +162,77 @@ msgstr "ธันวาคม" msgid "Settings" msgstr "ตั้งค่า" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "วินาที ก่อนหน้านี้" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "1 นาทีก่อนหน้านี้" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{minutes} นาทีก่อนหน้านี้" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "1 ชั่วโมงก่อนหน้านี้" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{hours} ชั่วโมงก่อนหน้านี้" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "วันนี้" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "เมื่อวานนี้" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "{day} วันก่อนหน้านี้" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "เดือนที่แล้ว" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "{months} เดือนก่อนหน้านี้" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "เดือน ที่ผ่านมา" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "ปีที่แล้ว" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "ปี ที่ผ่านมา" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "เลือก" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "ตกลง" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "ยกเลิก" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "ไม่ตกลง" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "เลือก" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "ตกลง" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "ตกลง" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "ไม่ตกลง" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -535,23 +535,23 @@ msgstr "จะถูกใช้" msgid "Database user" msgstr "ชื่อผู้ใช้งานฐานข้อมูล" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "รหัสผ่านฐานข้อมูล" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "ชื่อฐานข้อมูล" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "พื้นที่ตารางในฐานข้อมูล" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Database host" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "ติดตั้งเรียบร้อยแล้ว" diff --git a/l10n/th_TH/files.po b/l10n/th_TH/files.po index e88ab59f41..89f195428d 100644 --- a/l10n/th_TH/files.po +++ b/l10n/th_TH/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:09+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/files_encryption.po b/l10n/th_TH/files_encryption.po index 0f055b572f..83ddf27b1a 100644 --- a/l10n/th_TH/files_encryption.po +++ b/l10n/th_TH/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/files_external.po b/l10n/th_TH/files_external.po index 6b7ff0b4d4..fc56f1a61f 100644 --- a/l10n/th_TH/files_external.po +++ b/l10n/th_TH/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 13:00+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -38,13 +38,13 @@ msgstr "กรุณากรอกรหัส app key ของ Dropbox แล msgid "Error configuring Google Drive storage" msgstr "เกิดข้อผิดพลาดในการกำหนดค่าการจัดเก็บข้อมูลในพื้นที่ของ Google Drive" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "คำเตือน: \"smbclient\" ยังไม่ได้ถูกติดตั้ง. การชี้ CIFS/SMB เพื่อแชร์ข้อมูลไม่สามารถกระทำได้ กรุณาสอบถามข้อมูลเพิ่มเติมจากผู้ดูแลระบบเพื่อติดตั้ง." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/th_TH/files_sharing.po b/l10n/th_TH/files_sharing.po index ca52d4c444..60d528993b 100644 --- a/l10n/th_TH/files_sharing.po +++ b/l10n/th_TH/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-23 02:01+0200\n" -"PO-Revision-Date: 2012-09-22 11:10+0000\n" -"Last-Translator: AriesAnywhere Anywhere \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,24 +26,24 @@ msgstr "รหัสผ่าน" msgid "Submit" msgstr "ส่ง" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s ได้แชร์โฟลเดอร์ %s ให้กับคุณ" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s ได้แชร์ไฟล์ %s ให้กับคุณ" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "ดาวน์โหลด" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "ไม่สามารถดูตัวอย่างได้สำหรับ" -#: templates/public.php:37 +#: templates/public.php:50 msgid "web services under your control" msgstr "เว็บเซอร์วิสที่คุณควบคุมการใช้งานได้" diff --git a/l10n/th_TH/files_trashbin.po b/l10n/th_TH/files_trashbin.po index fdca6cdab3..3f3d84363f 100644 --- a/l10n/th_TH/files_trashbin.po +++ b/l10n/th_TH/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/files_versions.po b/l10n/th_TH/files_versions.po index 1abe7bfdb5..f1cc8cb847 100644 --- a/l10n/th_TH/files_versions.po +++ b/l10n/th_TH/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -41,11 +41,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/th_TH/lib.po b/l10n/th_TH/lib.po index b467ff8d62..1c9f395a0c 100644 --- a/l10n/th_TH/lib.po +++ b/l10n/th_TH/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/settings.po b/l10n/th_TH/settings.po index 7d8053ea08..9f174d2d49 100644 --- a/l10n/th_TH/settings.po +++ b/l10n/th_TH/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -123,44 +123,44 @@ msgstr "อัพเดทแล้ว" msgid "Saving..." msgstr "กำลังบันทึุกข้อมูล..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "ลบแล้ว" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "เลิกทำ" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "กลุ่ม" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "ผู้ดูแลกลุ่ม" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "ลบ" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" diff --git a/l10n/th_TH/user_ldap.po b/l10n/th_TH/user_ldap.po index f4b4608ec5..9fa0376fdd 100644 --- a/l10n/th_TH/user_ldap.po +++ b/l10n/th_TH/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/user_webdavauth.po b/l10n/th_TH/user_webdavauth.po index 3493831b2c..7f71ac8bb7 100644 --- a/l10n/th_TH/user_webdavauth.po +++ b/l10n/th_TH/user_webdavauth.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-23 00:05+0100\n" -"PO-Revision-Date: 2013-01-22 00:54+0000\n" -"Last-Translator: AriesAnywhere Anywhere \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,7 +26,7 @@ msgstr "WebDAV Authentication" msgid "URL: http://" msgstr "URL: http://" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/tr/core.po b/l10n/tr/core.po index 4d50d6acf2..ff355f9109 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" -"Last-Translator: otefenli \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"Last-Translator: I Robot \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" @@ -167,77 +167,77 @@ msgstr "Aralık" msgid "Settings" msgstr "Ayarlar" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "saniye önce" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "1 dakika önce" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{minutes} dakika önce" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "1 saat önce" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{hours} saat önce" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "bugün" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "dün" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "{days} gün önce" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "geçen ay" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "{months} ay önce" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "ay önce" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "geçen yıl" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "yıl önce" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "seç" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Tamam" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "İptal" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Hayır" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "seç" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Evet" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "Tamam" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Hayır" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -540,23 +540,23 @@ msgstr "kullanılacak" msgid "Database user" msgstr "Veritabanı kullanıcı adı" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Veritabanı parolası" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Veritabanı adı" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Veritabanı tablo alanı" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Veritabanı sunucusu" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Kurulumu tamamla" diff --git a/l10n/tr/files.po b/l10n/tr/files.po index 739b2b604d..9f10cf606c 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:09+0200\n" -"PO-Revision-Date: 2013-04-08 13:30+0000\n" -"Last-Translator: ismail yenigül \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \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" diff --git a/l10n/tr/files_encryption.po b/l10n/tr/files_encryption.po index 52609fb3a4..b3b4061663 100644 --- a/l10n/tr/files_encryption.po +++ b/l10n/tr/files_encryption.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-19 00:05+0100\n" -"PO-Revision-Date: 2013-02-18 20:10+0000\n" -"Last-Translator: atakan96 \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \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" "Content-Transfer-Encoding: 8bit\n" "Language: tr\n" -"Plural-Forms: nplurals=1; plural=0;\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" #: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" diff --git a/l10n/tr/files_external.po b/l10n/tr/files_external.po index 83ae30ab69..a7551418be 100644 --- a/l10n/tr/files_external.po +++ b/l10n/tr/files_external.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-05 00:21+0200\n" -"PO-Revision-Date: 2013-04-04 10:00+0000\n" -"Last-Translator: Caner Başaran \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \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" @@ -40,13 +40,13 @@ msgstr "Lütfen Dropbox app key ve secret temin ediniz" msgid "Error configuring Google Drive storage" msgstr "Google Drive depo yapılandırma hatası" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/tr/files_sharing.po b/l10n/tr/files_sharing.po index 5cef16c926..014db5a4d5 100644 --- a/l10n/tr/files_sharing.po +++ b/l10n/tr/files_sharing.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-05 00:04+0100\n" -"PO-Revision-Date: 2012-12-04 11:33+0000\n" -"Last-Translator: alpere \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \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" "Content-Transfer-Encoding: 8bit\n" "Language: tr\n" -"Plural-Forms: nplurals=1; plural=0;\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" #: templates/authenticate.php:4 msgid "Password" @@ -26,24 +26,24 @@ msgstr "Şifre" msgid "Submit" msgstr "Gönder" -#: templates/public.php:17 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s sizinle paylaşılan %s klasör" -#: templates/public.php:19 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s sizinle paylaşılan %s klasör" -#: templates/public.php:22 templates/public.php:38 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "İndir" -#: templates/public.php:37 +#: templates/public.php:40 msgid "No preview available for" msgstr "Kullanılabilir önizleme yok" -#: templates/public.php:43 +#: templates/public.php:50 msgid "web services under your control" msgstr "Bilgileriniz güvenli ve şifreli" diff --git a/l10n/tr/files_trashbin.po b/l10n/tr/files_trashbin.po index 53600dc03d..a16869ebad 100644 --- a/l10n/tr/files_trashbin.po +++ b/l10n/tr/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/files_versions.po b/l10n/tr/files_versions.po index 59ad4923c4..80519b54e3 100644 --- a/l10n/tr/files_versions.po +++ b/l10n/tr/files_versions.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-25 10:20+0000\n" -"Last-Translator: otefenli \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \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" diff --git a/l10n/tr/lib.po b/l10n/tr/lib.po index 1bd6591c2e..f744fc9eb9 100644 --- a/l10n/tr/lib.po +++ b/l10n/tr/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index 9affb093ec..bca687cb5c 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" -"Last-Translator: Fatih Aşıcı \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \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" @@ -129,44 +129,44 @@ msgstr "Güncellendi" msgid "Saving..." msgstr "Kaydediliyor..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "silindi" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "geri al" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "Kullanıcı kaldırılamıyor" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Gruplar" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Yönetici Grubu " -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Sil" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "grup ekle" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "Geçerli bir kullanıcı adı mutlaka sağlanmalı" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "Kullanıcı oluşturulurken hata" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "Geçerli bir parola mutlaka sağlanmalı" diff --git a/l10n/tr/user_ldap.po b/l10n/tr/user_ldap.po index 1cfb5d5aca..a01974a08c 100644 --- a/l10n/tr/user_ldap.po +++ b/l10n/tr/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/user_webdavauth.po b/l10n/tr/user_webdavauth.po index f5f060e198..d746306eba 100644 --- a/l10n/tr/user_webdavauth.po +++ b/l10n/tr/user_webdavauth.po @@ -10,15 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-19 00:05+0100\n" -"PO-Revision-Date: 2013-02-18 20:10+0000\n" -"Last-Translator: atakan96 \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \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" "Content-Transfer-Encoding: 8bit\n" "Language: tr\n" -"Plural-Forms: nplurals=1; plural=0;\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" #: templates/settings.php:3 msgid "WebDAV Authentication" diff --git a/l10n/uk/core.po b/l10n/uk/core.po index 6058358be3..7029715667 100644 --- a/l10n/uk/core.po +++ b/l10n/uk/core.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -166,77 +166,77 @@ msgstr "Грудень" msgid "Settings" msgstr "Налаштування" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "секунди тому" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "1 хвилину тому" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{minutes} хвилин тому" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "1 годину тому" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{hours} години тому" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "сьогодні" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "вчора" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "{days} днів тому" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "минулого місяця" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "{months} місяців тому" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "місяці тому" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "минулого року" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "роки тому" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Обрати" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Ok" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Відмінити" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Ні" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Обрати" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Так" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "Ok" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Ні" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -482,11 +482,11 @@ msgstr "Попередження про небезпеку" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" -msgstr "" +msgstr "Ваша версія PHP вразлива для атак NULL Byte (CVE-2006-7243)" #: templates/installation.php:26 msgid "Please update your PHP installation to use ownCloud securely." -msgstr "" +msgstr "Будь ласка, оновіть інсталяцію PHP для безпечного використання ownCloud." #: templates/installation.php:32 msgid "" @@ -539,23 +539,23 @@ msgstr "буде використано" msgid "Database user" msgstr "Користувач бази даних" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Пароль для бази даних" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Назва бази даних" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Таблиця бази даних" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Хост бази даних" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Завершити налаштування" diff --git a/l10n/uk/files.po b/l10n/uk/files.po index fb93b18e8a..bb94b31982 100644 --- a/l10n/uk/files.po +++ b/l10n/uk/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:09+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -132,7 +132,7 @@ msgstr "1 файл завантажується" #: js/filelist.js:409 js/filelist.js:463 msgid "files uploading" -msgstr "" +msgstr "файли завантажуються" #: js/files.js:52 msgid "'.' is an invalid file name." diff --git a/l10n/uk/files_encryption.po b/l10n/uk/files_encryption.po index f0341a7e32..89a68a1fb4 100644 --- a/l10n/uk/files_encryption.po +++ b/l10n/uk/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-19 00:05+0100\n" -"PO-Revision-Date: 2013-02-18 16:40+0000\n" -"Last-Translator: volodya327 \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/uk/files_external.po b/l10n/uk/files_external.po index a8da037d32..cf8a838af0 100644 --- a/l10n/uk/files_external.po +++ b/l10n/uk/files_external.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 13:00+0000\n" -"Last-Translator: volodya327 \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -40,13 +40,13 @@ msgstr "Будь ласка, надайте дійсний ключ та пар msgid "Error configuring Google Drive storage" msgstr "Помилка при налаштуванні сховища Google Drive" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Попередження: Клієнт \"smbclient\" не встановлено. Під'єднанатися до CIFS/SMB тек неможливо. Попрохайте системного адміністратора встановити його." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/uk/files_sharing.po b/l10n/uk/files_sharing.po index a087b63203..849069fb73 100644 --- a/l10n/uk/files_sharing.po +++ b/l10n/uk/files_sharing.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-22 00:01+0100\n" -"PO-Revision-Date: 2012-11-21 13:21+0000\n" -"Last-Translator: skoptev \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,24 +27,24 @@ msgstr "Пароль" msgid "Submit" msgstr "Submit" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s опублікував каталог %s для Вас" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s опублікував файл %s для Вас" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Завантажити" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "Попередній перегляд недоступний для" -#: templates/public.php:35 +#: templates/public.php:50 msgid "web services under your control" msgstr "підконтрольні Вам веб-сервіси" diff --git a/l10n/uk/files_trashbin.po b/l10n/uk/files_trashbin.po index 8219dfe45a..586f719a33 100644 --- a/l10n/uk/files_trashbin.po +++ b/l10n/uk/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/files_versions.po b/l10n/uk/files_versions.po index 57d0fd1f10..149735a38e 100644 --- a/l10n/uk/files_versions.po +++ b/l10n/uk/files_versions.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-06 00:07+0100\n" -"PO-Revision-Date: 2013-03-05 12:40+0000\n" -"Last-Translator: volodya327 \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/uk/lib.po b/l10n/uk/lib.po index f6a6018b77..72255a6985 100644 --- a/l10n/uk/lib.po +++ b/l10n/uk/lib.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" -"Last-Translator: volodya327 \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po index 88056cf548..d2414ba589 100644 --- a/l10n/uk/settings.po +++ b/l10n/uk/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -124,44 +124,44 @@ msgstr "Оновлено" msgid "Saving..." msgstr "Зберігаю..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "видалені" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "відмінити" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "Неможливо видалити користувача" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Групи" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Адміністратор групи" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Видалити" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "додати групу" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "Потрібно задати вірне ім'я користувача" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "Помилка при створенні користувача" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "Потрібно задати вірний пароль" diff --git a/l10n/uk/user_ldap.po b/l10n/uk/user_ldap.po index ef03d4d64b..16bb5c6e06 100644 --- a/l10n/uk/user_ldap.po +++ b/l10n/uk/user_ldap.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" -"Last-Translator: volodya327 \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/uk/user_webdavauth.po b/l10n/uk/user_webdavauth.po index 59983e5020..95d0199df1 100644 --- a/l10n/uk/user_webdavauth.po +++ b/l10n/uk/user_webdavauth.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-19 00:05+0100\n" -"PO-Revision-Date: 2013-02-18 16:40+0000\n" -"Last-Translator: volodya327 \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/ur_PK/core.po b/l10n/ur_PK/core.po index df2a26e8af..a8adb13732 100644 --- a/l10n/ur_PK/core.po +++ b/l10n/ur_PK/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:30+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -161,77 +161,77 @@ msgstr "دسمبر" msgid "Settings" msgstr "سیٹینگز" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "منتخب کریں" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "اوکے" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "منسوخ کریں" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "نہیں" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "منتخب کریں" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "ہاں" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "اوکے" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "نہیں" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -534,23 +534,23 @@ msgstr "استعمال ہو گا" msgid "Database user" msgstr "ڈیٹابیس یوزر" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "ڈیٹابیس پاسورڈ" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "ڈیٹابیس کا نام" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "ڈیٹابیس ٹیبل سپیس" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "ڈیٹابیس ہوسٹ" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "سیٹ اپ ختم کریں" diff --git a/l10n/ur_PK/files.po b/l10n/ur_PK/files.po index 437154841e..8e63ad73ee 100644 --- a/l10n/ur_PK/files.po +++ b/l10n/ur_PK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:09+0200\n" -"PO-Revision-Date: 2013-04-08 02:30+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/files_encryption.po b/l10n/ur_PK/files_encryption.po index d945e7ba70..6e1fdab3de 100644 --- a/l10n/ur_PK/files_encryption.po +++ b/l10n/ur_PK/files_encryption.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-26 00:04+0100\n" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/ur_PK/files_external.po b/l10n/ur_PK/files_external.po index e9bdbedc11..4f5bbffec5 100644 --- a/l10n/ur_PK/files_external.po +++ b/l10n/ur_PK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -37,13 +37,13 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:421 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:424 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/ur_PK/files_sharing.po b/l10n/ur_PK/files_sharing.po index bf96aabc45..cf84d773fa 100644 --- a/l10n/ur_PK/files_sharing.po +++ b/l10n/ur_PK/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-27 00:08+0100\n" -"PO-Revision-Date: 2012-08-12 22:35+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -35,14 +35,14 @@ msgstr "" msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:19 templates/public.php:37 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "" -#: templates/public.php:34 +#: templates/public.php:40 msgid "No preview available for" msgstr "" -#: templates/public.php:43 +#: templates/public.php:50 msgid "web services under your control" msgstr "آپ کے اختیار میں ویب سروسیز" diff --git a/l10n/ur_PK/files_trashbin.po b/l10n/ur_PK/files_trashbin.po index 08c1f2bd3e..6360325307 100644 --- a/l10n/ur_PK/files_trashbin.po +++ b/l10n/ur_PK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:30+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/files_versions.po b/l10n/ur_PK/files_versions.po index f2a9b38da5..4cf1d8a107 100644 --- a/l10n/ur_PK/files_versions.po +++ b/l10n/ur_PK/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -40,11 +40,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/ur_PK/lib.po b/l10n/ur_PK/lib.po index 128d7972a7..7e41ed94b6 100644 --- a/l10n/ur_PK/lib.po +++ b/l10n/ur_PK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/settings.po b/l10n/ur_PK/settings.po index fc20d3d728..350e4d1f2b 100644 --- a/l10n/ur_PK/settings.po +++ b/l10n/ur_PK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:30+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -120,44 +120,44 @@ msgstr "" msgid "Saving..." msgstr "" -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" diff --git a/l10n/ur_PK/user_ldap.po b/l10n/ur_PK/user_ldap.po index 67a700b605..9d1a468e4d 100644 --- a/l10n/ur_PK/user_ldap.po +++ b/l10n/ur_PK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-02 00:03+0100\n" -"PO-Revision-Date: 2013-03-01 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -86,248 +86,248 @@ msgstr "" msgid "Server configuration" msgstr "" -#: templates/settings.php:18 +#: templates/settings.php:31 msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:23 +#: templates/settings.php:36 msgid "Host" msgstr "" -#: templates/settings.php:25 +#: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:26 +#: templates/settings.php:39 msgid "Base DN" msgstr "" -#: templates/settings.php:27 +#: templates/settings.php:40 msgid "One Base DN per line" msgstr "" -#: templates/settings.php:28 +#: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" -#: templates/settings.php:30 +#: templates/settings.php:43 msgid "User DN" msgstr "" -#: templates/settings.php:32 +#: templates/settings.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 "" -#: templates/settings.php:33 +#: templates/settings.php:46 msgid "Password" msgstr "پاسورڈ" -#: templates/settings.php:36 +#: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:37 +#: templates/settings.php:50 msgid "User Login Filter" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:55 msgid "User List Filter" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." msgstr "" -#: templates/settings.php:47 +#: templates/settings.php:60 msgid "Group Filter" msgstr "" -#: templates/settings.php:50 +#: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:68 msgid "Connection Settings" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "Configuration Active" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:71 msgid "Port" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:73 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Use TLS" msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" -#: templates/settings.php:63 +#: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Not recommended, use for testing only." msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:67 +#: templates/settings.php:80 msgid "Directory Settings" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "Base User Tree" msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:71 +#: templates/settings.php:84 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:71 templates/settings.php:74 +#: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:74 +#: templates/settings.php:87 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:88 msgid "Group-Member association" msgstr "" -#: templates/settings.php:77 +#: templates/settings.php:90 msgid "Special Attributes" msgstr "" -#: templates/settings.php:79 +#: templates/settings.php:92 msgid "Quota Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "Quota Default" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "in bytes" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:94 msgid "Email Field" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Test Configuration" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Help" msgstr "مدد" diff --git a/l10n/ur_PK/user_webdavauth.po b/l10n/ur_PK/user_webdavauth.po index 31e16092c8..fafd0150a6 100644 --- a/l10n/ur_PK/user_webdavauth.po +++ b/l10n/ur_PK/user_webdavauth.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-26 00:04+0100\n" -"PO-Revision-Date: 2012-11-09 09:06+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/vi/core.po b/l10n/vi/core.po index 7c716b72bd..0cb405774b 100644 --- a/l10n/vi/core.po +++ b/l10n/vi/core.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -166,77 +166,77 @@ msgstr "Tháng 12" msgid "Settings" msgstr "Cài đặt" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "vài giây trước" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "1 phút trước" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{minutes} phút trước" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "1 giờ trước" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{hours} giờ trước" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "hôm nay" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "hôm qua" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "{days} ngày trước" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "tháng trước" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "{months} tháng trước" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "tháng trước" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "năm trước" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "năm trước" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Chọn" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Đồng ý" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Hủy" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Không" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Chọn" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Có" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "Đồng ý" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Không" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -539,23 +539,23 @@ msgstr "được sử dụng" msgid "Database user" msgstr "Người dùng cơ sở dữ liệu" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Mật khẩu cơ sở dữ liệu" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Tên cơ sở dữ liệu" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Cơ sở dữ liệu tablespace" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Database host" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Cài đặt hoàn tất" diff --git a/l10n/vi/files.po b/l10n/vi/files.po index 6661db587b..6343a227df 100644 --- a/l10n/vi/files.po +++ b/l10n/vi/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:09+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/files_encryption.po b/l10n/vi/files_encryption.po index af199ade99..967123b7f5 100644 --- a/l10n/vi/files_encryption.po +++ b/l10n/vi/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/files_external.po b/l10n/vi/files_external.po index b26197d819..1040172df2 100644 --- a/l10n/vi/files_external.po +++ b/l10n/vi/files_external.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 13:00+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -40,13 +40,13 @@ msgstr "Xin vui lòng cung cấp một ứng dụng Dropbox hợp lệ và mã b msgid "Error configuring Google Drive storage" msgstr "Lỗi cấu hình lưu trữ Google Drive" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Cảnh báo: \"smbclient\" chưa được cài đặt. Mount CIFS/SMB shares là không thể thực hiện được. Hãy hỏi người quản trị hệ thống để cài đặt nó." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/vi/files_sharing.po b/l10n/vi/files_sharing.po index 792d5fe671..ff474f2b34 100644 --- a/l10n/vi/files_sharing.po +++ b/l10n/vi/files_sharing.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-21 00:01+0100\n" -"PO-Revision-Date: 2012-11-20 04:39+0000\n" -"Last-Translator: Sơn Nguyễn \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,24 +27,24 @@ msgstr "Mật khẩu" msgid "Submit" msgstr "Xác nhận" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s đã chia sẻ thư mục %s với bạn" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s đã chia sẻ tập tin %s với bạn" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Tải về" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "Không có xem trước cho" -#: templates/public.php:35 +#: templates/public.php:50 msgid "web services under your control" msgstr "dịch vụ web dưới sự kiểm soát của bạn" diff --git a/l10n/vi/files_trashbin.po b/l10n/vi/files_trashbin.po index 3a57c2b1c0..446a3fa7ff 100644 --- a/l10n/vi/files_trashbin.po +++ b/l10n/vi/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/files_versions.po b/l10n/vi/files_versions.po index df14039e11..71e7d41d00 100644 --- a/l10n/vi/files_versions.po +++ b/l10n/vi/files_versions.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -43,11 +43,11 @@ msgstr "Thất bại" msgid "File %s could not be reverted to version %s" msgstr "File %s không thể khôi phục về phiên bản %s" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "Không có phiên bản cũ nào" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "Không chỉ ra đường dẫn rõ ràng" diff --git a/l10n/vi/lib.po b/l10n/vi/lib.po index cf168b55ae..857d1e2072 100644 --- a/l10n/vi/lib.po +++ b/l10n/vi/lib.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/settings.po b/l10n/vi/settings.po index 5fe54cdb36..5bb3e7db74 100644 --- a/l10n/vi/settings.po +++ b/l10n/vi/settings.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -127,44 +127,44 @@ msgstr "Đã cập nhật" msgid "Saving..." msgstr "Đang tiến hành lưu ..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "đã xóa" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "lùi lại" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Nhóm" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Nhóm quản trị" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Xóa" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" diff --git a/l10n/vi/user_ldap.po b/l10n/vi/user_ldap.po index b74bd68ddc..a1cbe868b3 100644 --- a/l10n/vi/user_ldap.po +++ b/l10n/vi/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/user_webdavauth.po b/l10n/vi/user_webdavauth.po index 57c796e00d..9d0eaeeec6 100644 --- a/l10n/vi/user_webdavauth.po +++ b/l10n/vi/user_webdavauth.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 18:30+0000\n" -"Last-Translator: saosangm \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/zh_CN.GB2312/core.po b/l10n/zh_CN.GB2312/core.po index c9afe154bc..fea478dc80 100644 --- a/l10n/zh_CN.GB2312/core.po +++ b/l10n/zh_CN.GB2312/core.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" -"Last-Translator: kopisee \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -163,77 +163,77 @@ msgstr "十二月" msgid "Settings" msgstr "设置" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "秒前" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "1 分钟前" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{minutes} 分钟前" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "1小时前" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{hours}小时前" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "今天" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "昨天" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "{days} 天前" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "上个月" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "{months}月前" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "月前" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "去年" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "年前" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "选择" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "好的" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "取消" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "否" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "选择" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "是" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "好的" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "否" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -536,23 +536,23 @@ msgstr "将会使用" msgid "Database user" msgstr "数据库用户" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "数据库密码" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "数据库用户名" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "数据库表格空间" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "数据库主机" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "完成安装" diff --git a/l10n/zh_CN.GB2312/files.po b/l10n/zh_CN.GB2312/files.po index e3c99fef5d..cf4bcdf218 100644 --- a/l10n/zh_CN.GB2312/files.po +++ b/l10n/zh_CN.GB2312/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:09+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/files_encryption.po b/l10n/zh_CN.GB2312/files_encryption.po index 262bed13b5..76fc783547 100644 --- a/l10n/zh_CN.GB2312/files_encryption.po +++ b/l10n/zh_CN.GB2312/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/files_external.po b/l10n/zh_CN.GB2312/files_external.po index 59e2502421..7d18a87a7a 100644 --- a/l10n/zh_CN.GB2312/files_external.po +++ b/l10n/zh_CN.GB2312/files_external.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-08 02:12+0200\n" -"PO-Revision-Date: 2013-04-06 21:20+0000\n" -"Last-Translator: kopisee \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/zh_CN.GB2312/files_sharing.po b/l10n/zh_CN.GB2312/files_sharing.po index a25727470d..41d1ad16b3 100644 --- a/l10n/zh_CN.GB2312/files_sharing.po +++ b/l10n/zh_CN.GB2312/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-12 02:03+0200\n" -"PO-Revision-Date: 2012-10-11 23:45+0000\n" -"Last-Translator: marguerite su \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,24 +26,24 @@ msgstr "密码" msgid "Submit" msgstr "提交" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s 与您分享了文件夹 %s" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s 与您分享了文件 %s" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "下载" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "没有预览可用于" -#: templates/public.php:35 +#: templates/public.php:50 msgid "web services under your control" msgstr "您控制的网络服务" diff --git a/l10n/zh_CN.GB2312/files_trashbin.po b/l10n/zh_CN.GB2312/files_trashbin.po index ae46e1b0c3..e06718232a 100644 --- a/l10n/zh_CN.GB2312/files_trashbin.po +++ b/l10n/zh_CN.GB2312/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/files_versions.po b/l10n/zh_CN.GB2312/files_versions.po index d91537b916..3d9d46cf1b 100644 --- a/l10n/zh_CN.GB2312/files_versions.po +++ b/l10n/zh_CN.GB2312/files_versions.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-08 02:12+0200\n" -"PO-Revision-Date: 2013-04-06 21:00+0000\n" -"Last-Translator: kopisee \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/zh_CN.GB2312/lib.po b/l10n/zh_CN.GB2312/lib.po index 65f7a8c6ce..cfcb1e3765 100644 --- a/l10n/zh_CN.GB2312/lib.po +++ b/l10n/zh_CN.GB2312/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-08 02:12+0200\n" -"PO-Revision-Date: 2013-04-06 22:30+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/settings.po b/l10n/zh_CN.GB2312/settings.po index d84e4e8942..d43cd0d75d 100644 --- a/l10n/zh_CN.GB2312/settings.po +++ b/l10n/zh_CN.GB2312/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" -"Last-Translator: kopisee \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -123,44 +123,44 @@ msgstr "已升级" msgid "Saving..." msgstr "保存中..." -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "删除" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "撤销" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "无法移除用户" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "组" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "群组管理员" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "删除" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "添加群组" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "请填写有效用户名" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "新增用户时出现错误" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "请填写有效密码" diff --git a/l10n/zh_CN.GB2312/user_ldap.po b/l10n/zh_CN.GB2312/user_ldap.po index e3448eda1c..00b1e4b2c7 100644 --- a/l10n/zh_CN.GB2312/user_ldap.po +++ b/l10n/zh_CN.GB2312/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/user_webdavauth.po b/l10n/zh_CN.GB2312/user_webdavauth.po index e9984fbe00..8c6808debd 100644 --- a/l10n/zh_CN.GB2312/user_webdavauth.po +++ b/l10n/zh_CN.GB2312/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -25,7 +25,7 @@ msgstr "" msgid "URL: http://" msgstr "" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/zh_CN/core.po b/l10n/zh_CN/core.po index 706b244ae5..0bee1ece20 100644 --- a/l10n/zh_CN/core.po +++ b/l10n/zh_CN/core.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" -"Last-Translator: leonfeng \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"Last-Translator: I Robot \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" @@ -167,77 +167,77 @@ msgstr "十二月" msgid "Settings" msgstr "设置" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "秒前" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "一分钟前" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{minutes} 分钟前" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "1小时前" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{hours} 小时前" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "今天" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "昨天" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "{days} 天前" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "上月" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "{months} 月前" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "月前" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "去年" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "年前" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "选择(&C)..." +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "好" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "取消" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "否" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "选择(&C)..." -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "是" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "好" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "否" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -540,23 +540,23 @@ msgstr "将被使用" msgid "Database user" msgstr "数据库用户" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "数据库密码" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "数据库名" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "数据库表空间" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "数据库主机" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "安装完成" diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index 01d9218330..24121e4bac 100644 --- a/l10n/zh_CN/files.po +++ b/l10n/zh_CN/files.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:09+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/files_encryption.po b/l10n/zh_CN/files_encryption.po index 1807d6a5f3..bebc5c7fd2 100644 --- a/l10n/zh_CN/files_encryption.po +++ b/l10n/zh_CN/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-15 00:05+0100\n" -"PO-Revision-Date: 2013-03-14 08:40+0000\n" -"Last-Translator: ccb \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \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" diff --git a/l10n/zh_CN/files_external.po b/l10n/zh_CN/files_external.po index f942b18475..9f24f4e301 100644 --- a/l10n/zh_CN/files_external.po +++ b/l10n/zh_CN/files_external.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 13:00+0000\n" -"Last-Translator: marguerite su \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \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" @@ -40,13 +40,13 @@ msgstr "请提供有效的Dropbox应用key和secret" msgid "Error configuring Google Drive storage" msgstr "配置Google Drive存储时出错" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "警告:“smbclient” 尚未安装。CIFS/SMB 分享挂载无法实现。请咨询系统管理员进行安装。" -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/zh_CN/files_sharing.po b/l10n/zh_CN/files_sharing.po index 149353d110..d7b991be4a 100644 --- a/l10n/zh_CN/files_sharing.po +++ b/l10n/zh_CN/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-28 02:02+0200\n" -"PO-Revision-Date: 2012-09-27 14:41+0000\n" -"Last-Translator: waterone \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \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" @@ -26,24 +26,24 @@ msgstr "密码" msgid "Submit" msgstr "提交" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s与您共享了%s文件夹" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s与您共享了%s文件" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "下载" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "没有预览" -#: templates/public.php:37 +#: templates/public.php:50 msgid "web services under your control" msgstr "您控制的web服务" diff --git a/l10n/zh_CN/files_trashbin.po b/l10n/zh_CN/files_trashbin.po index 8a6a3581af..1358aeb205 100644 --- a/l10n/zh_CN/files_trashbin.po +++ b/l10n/zh_CN/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/files_versions.po b/l10n/zh_CN/files_versions.po index ada0de78ab..bbcc7504a7 100644 --- a/l10n/zh_CN/files_versions.po +++ b/l10n/zh_CN/files_versions.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-02 00:03+0100\n" -"PO-Revision-Date: 2013-03-01 09:00+0000\n" -"Last-Translator: bzdk \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \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" diff --git a/l10n/zh_CN/lib.po b/l10n/zh_CN/lib.po index 18d284576a..f293f42d19 100644 --- a/l10n/zh_CN/lib.po +++ b/l10n/zh_CN/lib.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" -"Last-Translator: marguerite su \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \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" diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po index 9e74b66591..8802053d5c 100644 --- a/l10n/zh_CN/settings.po +++ b/l10n/zh_CN/settings.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -128,44 +128,44 @@ msgstr "已更新" msgid "Saving..." msgstr "正在保存" -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "已经删除" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "撤销" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "无法移除用户" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "组" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "组管理员" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "删除" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "添加组" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "必须提供合法的用户名" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "创建用户出错" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "必须提供合法的密码" diff --git a/l10n/zh_CN/user_ldap.po b/l10n/zh_CN/user_ldap.po index baa62ccec8..75ce640640 100644 --- a/l10n/zh_CN/user_ldap.po +++ b/l10n/zh_CN/user_ldap.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" -"Last-Translator: marguerite su \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \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" diff --git a/l10n/zh_CN/user_webdavauth.po b/l10n/zh_CN/user_webdavauth.po index a642c9b21d..78d193c789 100644 --- a/l10n/zh_CN/user_webdavauth.po +++ b/l10n/zh_CN/user_webdavauth.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-23 00:05+0100\n" -"PO-Revision-Date: 2013-01-21 23:23+0000\n" -"Last-Translator: Xuetian Weng \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \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" @@ -29,7 +29,7 @@ msgstr "WebDAV 认证" msgid "URL: http://" msgstr "URL:http://" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/zh_HK/core.po b/l10n/zh_HK/core.po index 8050a6cf0e..20ecbff0aa 100644 --- a/l10n/zh_HK/core.po +++ b/l10n/zh_HK/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -162,77 +162,77 @@ msgstr "十二月" msgid "Settings" msgstr "設定" -#: js/js.js:707 +#: js/js.js:718 msgid "seconds ago" msgstr "" -#: js/js.js:708 +#: js/js.js:719 msgid "1 minute ago" msgstr "" -#: js/js.js:709 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:710 +#: js/js.js:721 msgid "1 hour ago" msgstr "" -#: js/js.js:711 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "" -#: js/js.js:712 +#: js/js.js:723 msgid "today" msgstr "今日" -#: js/js.js:713 +#: js/js.js:724 msgid "yesterday" msgstr "昨日" -#: js/js.js:714 +#: js/js.js:725 msgid "{days} days ago" msgstr "" -#: js/js.js:715 +#: js/js.js:726 msgid "last month" msgstr "前一月" -#: js/js.js:716 +#: js/js.js:727 msgid "{months} months ago" msgstr "" -#: js/js.js:717 +#: js/js.js:728 msgid "months ago" msgstr "個月之前" -#: js/js.js:718 +#: js/js.js:729 msgid "last year" msgstr "" -#: js/js.js:719 +#: js/js.js:730 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "OK" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "取消" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "No" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Yes" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "OK" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "No" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -535,23 +535,23 @@ msgstr "將被使用" msgid "Database user" msgstr "資料庫帳戶" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "資料庫密碼" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "資料庫名稱" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "" diff --git a/l10n/zh_HK/files.po b/l10n/zh_HK/files.po index 1b5ca2bccc..87bfb87828 100644 --- a/l10n/zh_HK/files.po +++ b/l10n/zh_HK/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:09+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/files_encryption.po b/l10n/zh_HK/files_encryption.po index c1002a17a4..7353c0a722 100644 --- a/l10n/zh_HK/files_encryption.po +++ b/l10n/zh_HK/files_encryption.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-15 00:05+0100\n" -"PO-Revision-Date: 2013-03-14 09:10+0000\n" -"Last-Translator: dtsang29 \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/zh_HK/files_external.po b/l10n/zh_HK/files_external.po index f5a0dad842..e911c33540 100644 --- a/l10n/zh_HK/files_external.po +++ b/l10n/zh_HK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-14 00:05+0100\n" -"PO-Revision-Date: 2013-03-13 02:10+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -37,13 +37,13 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/zh_HK/files_sharing.po b/l10n/zh_HK/files_sharing.po index 792810587f..7897ca5dc2 100644 --- a/l10n/zh_HK/files_sharing.po +++ b/l10n/zh_HK/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-14 00:05+0100\n" -"PO-Revision-Date: 2012-08-12 22:35+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -35,14 +35,14 @@ msgstr "" msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:19 templates/public.php:37 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "下載" -#: templates/public.php:34 +#: templates/public.php:40 msgid "No preview available for" msgstr "" -#: templates/public.php:43 +#: templates/public.php:50 msgid "web services under your control" msgstr "" diff --git a/l10n/zh_HK/files_trashbin.po b/l10n/zh_HK/files_trashbin.po index 451321361d..aa3beee2e5 100644 --- a/l10n/zh_HK/files_trashbin.po +++ b/l10n/zh_HK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/files_versions.po b/l10n/zh_HK/files_versions.po index 9d6dd7c46e..c93a812b1e 100644 --- a/l10n/zh_HK/files_versions.po +++ b/l10n/zh_HK/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-15 00:05+0100\n" -"PO-Revision-Date: 2013-03-14 09:10+0000\n" -"Last-Translator: dtsang29 \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/zh_HK/lib.po b/l10n/zh_HK/lib.po index 0cb6877d5a..b52486be8a 100644 --- a/l10n/zh_HK/lib.po +++ b/l10n/zh_HK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/settings.po b/l10n/zh_HK/settings.po index 8b84873135..07a86e1527 100644 --- a/l10n/zh_HK/settings.po +++ b/l10n/zh_HK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:20+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -120,44 +120,44 @@ msgstr "" msgid "Saving..." msgstr "" -#: js/users.js:31 +#: js/users.js:43 msgid "deleted" msgstr "" -#: js/users.js:31 +#: js/users.js:43 msgid "undo" msgstr "" -#: js/users.js:63 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:76 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "群組" -#: js/users.js:79 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "刪除" -#: js/users.js:243 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:407 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:408 js/users.js:414 js/users.js:429 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:413 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" diff --git a/l10n/zh_HK/user_ldap.po b/l10n/zh_HK/user_ldap.po index dfcf588c57..ae499e4098 100644 --- a/l10n/zh_HK/user_ldap.po +++ b/l10n/zh_HK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-15 00:05+0100\n" -"PO-Revision-Date: 2013-03-14 02:50+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/user_webdavauth.po b/l10n/zh_HK/user_webdavauth.po index 5a2c43c09c..35347a3f0d 100644 --- a/l10n/zh_HK/user_webdavauth.po +++ b/l10n/zh_HK/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -25,7 +25,7 @@ msgstr "" msgid "URL: http://" msgstr "" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/zh_TW/core.po b/l10n/zh_TW/core.po index 4572c6498d..671369c693 100644 --- a/l10n/zh_TW/core.po +++ b/l10n/zh_TW/core.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-15 02:10+0200\n" -"PO-Revision-Date: 2013-04-14 13:40+0000\n" -"Last-Translator: pellaeon \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index 40b8f90c02..de181406e2 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/files.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-15 02:09+0200\n" -"PO-Revision-Date: 2013-04-14 13:40+0000\n" -"Last-Translator: pellaeon \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/zh_TW/files_encryption.po b/l10n/zh_TW/files_encryption.po index 09a9812a65..308523e005 100644 --- a/l10n/zh_TW/files_encryption.po +++ b/l10n/zh_TW/files_encryption.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-20 00:02+0100\n" -"PO-Revision-Date: 2013-03-19 03:40+0000\n" -"Last-Translator: Hydriz \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/zh_TW/files_external.po b/l10n/zh_TW/files_external.po index 500db5751d..4d01f33d12 100644 --- a/l10n/zh_TW/files_external.po +++ b/l10n/zh_TW/files_external.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-30 00:04+0100\n" -"PO-Revision-Date: 2013-03-29 13:00+0000\n" -"Last-Translator: Hydriz \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -39,13 +39,13 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/zh_TW/files_sharing.po b/l10n/zh_TW/files_sharing.po index 7f76a26ec7..04a1a49652 100644 --- a/l10n/zh_TW/files_sharing.po +++ b/l10n/zh_TW/files_sharing.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-15 02:10+0200\n" -"PO-Revision-Date: 2013-04-14 13:30+0000\n" -"Last-Translator: pellaeon \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/zh_TW/files_trashbin.po b/l10n/zh_TW/files_trashbin.po index 2e28f7947c..478343be7d 100644 --- a/l10n/zh_TW/files_trashbin.po +++ b/l10n/zh_TW/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-09 02:10+0200\n" -"PO-Revision-Date: 2013-04-08 02:21+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/files_versions.po b/l10n/zh_TW/files_versions.po index 21a6ddbdf6..04ed7abf13 100644 --- a/l10n/zh_TW/files_versions.po +++ b/l10n/zh_TW/files_versions.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-20 00:02+0100\n" -"PO-Revision-Date: 2013-03-19 03:30+0000\n" -"Last-Translator: Hydriz \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/zh_TW/lib.po b/l10n/zh_TW/lib.po index 5059ed80d0..a17785e4f5 100644 --- a/l10n/zh_TW/lib.po +++ b/l10n/zh_TW/lib.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-01 00:02+0200\n" -"PO-Revision-Date: 2013-03-31 22:01+0000\n" -"Last-Translator: Hydriz \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/zh_TW/settings.po b/l10n/zh_TW/settings.po index e52516abc1..28cf8f8f6f 100644 --- a/l10n/zh_TW/settings.po +++ b/l10n/zh_TW/settings.po @@ -18,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-15 02:10+0200\n" -"PO-Revision-Date: 2013-04-14 13:20+0000\n" -"Last-Translator: pellaeon \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/zh_TW/user_ldap.po b/l10n/zh_TW/user_ldap.po index e5f5c2a0e9..3e5dc03d7a 100644 --- a/l10n/zh_TW/user_ldap.po +++ b/l10n/zh_TW/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/user_webdavauth.po b/l10n/zh_TW/user_webdavauth.po index 1cf8346071..607dc386a8 100644 --- a/l10n/zh_TW/user_webdavauth.po +++ b/l10n/zh_TW/user_webdavauth.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-23 12:10+0000\n" -"Last-Translator: Hydriz \n" +"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/lib/l10n/ja_JP.php b/lib/l10n/ja_JP.php index 529eec3ac5..5906c7f7a1 100644 --- a/lib/l10n/ja_JP.php +++ b/lib/l10n/ja_JP.php @@ -37,7 +37,7 @@ "MS SQL username and/or password not valid: %s" => "MS SQL サーバーのユーザー名/パスワードが正しくありません: %s", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "WebDAVインタフェースが動作していないと考えられるため、あなたのWEBサーバはまだファイルの同期を許可するように適切な設定がされていません。", "Please double check the installation guides." => "インストールガイドをよく確認してください。", -"seconds ago" => "秒前", +"seconds ago" => "数秒前", "1 minute ago" => "1分前", "%d minutes ago" => "%d 分前", "1 hour ago" => "1 時間前", diff --git a/settings/l10n/ja_JP.php b/settings/l10n/ja_JP.php index af3cdc9aeb..132b4ee437 100644 --- a/settings/l10n/ja_JP.php +++ b/settings/l10n/ja_JP.php @@ -68,7 +68,7 @@ "More" => "詳細", "Less" => "閉じる", "Version" => "バージョン", -"Developed by the ownCloud community, the source code is licensed under the AGPL." => "ownCloud communityにより開発されています、ソースコードライセンスは、AGPL ライセンスにより提供されています。", +"Developed by the ownCloud community, the source code is licensed under the AGPL." => "ownCloud コミュニティにより開発されています。 ソースコードは、AGPL ライセンスの下で提供されています。", "Add your App" => "アプリを追加", "More Apps" => "さらにアプリを表示", "Select an App" => "アプリを選択してください", @@ -82,8 +82,8 @@ "Bugtracker" => "バグトラッカー", "Commercial Support" => "コマーシャルサポート", "You have used %s of the available %s" => "現在、%s / %s を利用しています", -"Get the apps to sync your files" => "あなたのファイルを同期するためのアプリを取得", -"Show First Run Wizard again" => "初回実行ウィザードを再度表示する", +"Get the apps to sync your files" => "ファイルを同期するためのアプリを取得", +"Show First Run Wizard again" => "初回ウィザードを再表示する", "Password" => "パスワード", "Your password was changed" => "パスワードを変更しました", "Unable to change your password" => "パスワードを変更することができません", From 3ab97312b8ee1f0487ced163e9b9a7474306d8db Mon Sep 17 00:00:00 2001 From: kondou Date: Tue, 16 Apr 2013 09:54:34 +0200 Subject: [PATCH 24/40] Hint to default data directory not to before submitted data directory. Thanks to bartv2 for the heads up. --- core/templates/installation.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/templates/installation.php b/core/templates/installation.php index 7951004230..4219f042a5 100644 --- a/core/templates/installation.php +++ b/core/templates/installation.php @@ -63,7 +63,7 @@
" value="" />
From 032c54273c2f88a4c35697b11d82524d585f3c84 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Mon, 15 Apr 2013 10:34:38 +0200 Subject: [PATCH 25/40] write a info message to the log if a file gets removed from the trash bin automatically --- apps/files_trashbin/lib/trash.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/files_trashbin/lib/trash.php b/apps/files_trashbin/lib/trash.php index 9efb041bb9..13823ecbba 100644 --- a/apps/files_trashbin/lib/trash.php +++ b/apps/files_trashbin/lib/trash.php @@ -375,6 +375,7 @@ class Trashbin { $filename = $r['id']; if ( $r['timestamp'] < $limit ) { $size += self::delete($filename, $timestamp); + \OC_Log::write('files_trashbin', 'remove "'.$filename.'" fom trash bin because it is older than '.$retention_obligation, \OC_log::INFO); } } $availableSpace = $availableSpace + $size; @@ -387,6 +388,7 @@ class Trashbin { $i = 0; while ( $i < $length && $availableSpace < 0 ) { $tmp = self::delete($result[$i]['id'], $result[$i]['timestamp']); + \OC_Log::write('files_trashbin', 'remove "'.$result[$i]['id'].'" ('.$tmp.'B) to meet the limit of trash bin size (50% of available quota)', \OC_log::INFO); $availableSpace += $tmp; $size += $tmp; $i++; From 01d203c7734dc8ec6b755698877c12f23da69da5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Mon, 15 Apr 2013 11:42:50 +0200 Subject: [PATCH 26/40] add explenation of the expire function to the apps description --- apps/files_trashbin/appinfo/info.xml | 15 ++++++++++++++- apps/files_versions/appinfo/info.xml | 20 +++++++++++++++++++- 2 files changed, 33 insertions(+), 2 deletions(-) diff --git a/apps/files_trashbin/appinfo/info.xml b/apps/files_trashbin/appinfo/info.xml index 7f807da579..e9cbdafc1c 100644 --- a/apps/files_trashbin/appinfo/info.xml +++ b/apps/files_trashbin/appinfo/info.xml @@ -2,7 +2,20 @@ files_trashbin Deleted files - Keep a copy of deleted files so that they can be restored if needed + + ownCloud keeps a copy of your deleted files in case you need them again. + To make sure that the user doesn't run out of memory the deleted files app + manages the size of the deleted files for the user. By default deleted files + stay in the trash bin for 180 days. ownCloud checks the age of the files + every time a new files gets moved to the deleted files and remove all files + older than 180 days. The user can adjust this value in the config.php by + setting the "trashbin_retention_obligation" value. + + Beside that the delted files app take care to never use more that 50% of + your currently available free space. If your deleted files exceed this limit + ownCloud deletes the oldest versions until it meets the memory usage limit + again. + AGPL Bjoern Schiessle true diff --git a/apps/files_versions/appinfo/info.xml b/apps/files_versions/appinfo/info.xml index 44878da5e4..661d64aa97 100644 --- a/apps/files_versions/appinfo/info.xml +++ b/apps/files_versions/appinfo/info.xml @@ -6,7 +6,25 @@ Frank Karlitschek 4.93 true - Versioning of files + + ownCloud supports simple version control for files. The versioning app + expires old versions automatically to make sure that + the user doesn't run out of space. Following pattern is used to delete + old versions: + For the first 10 seconds ownCloud keeps one version every 2 seconds; + For the first hour ownCloud keeps one version every minute; + For the first 24 hours ownCloud keeps one version every hour; + For the first 30 days ownCloud keeps one version every day; + After the first 30 days ownCloud keeps one version every week. + + The versions are adjusted along this pattern every time a new version gets + created. + + Beside that the version app takes care to never use more that 50% of the users + currently available free space. If the stored versions exceed this limit + ownCloud deletes the oldest versions until it meets the memory usage limit + again. + From 606b672a3d8fbd7af02c773a64680c0fc32bea7a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Tue, 16 Apr 2013 13:07:55 +0200 Subject: [PATCH 27/40] always connect file cache updater hooks first --- apps/files/appinfo/app.php | 7 +++++++ lib/files/filesystem.php | 5 ----- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/apps/files/appinfo/app.php b/apps/files/appinfo/app.php index 6535a9b7ba..703b1c7cb6 100644 --- a/apps/files/appinfo/app.php +++ b/apps/files/appinfo/app.php @@ -12,3 +12,10 @@ OCP\App::addNavigationEntry( array( "id" => "files_index", "name" => $l->t("Files") )); OC_Search::registerProvider('OC_Search_Provider_File'); + +// cache hooks must be connected before all other apps. +// since 'files' is always loaded first the hooks need to be connected here +\OC_Hook::connect('OC_Filesystem', 'post_write', '\OC\Files\Cache\Updater', 'writeHook'); +\OC_Hook::connect('OC_Filesystem', 'post_touch', '\OC\Files\Cache\Updater', 'touchHook'); +\OC_Hook::connect('OC_Filesystem', 'post_delete', '\OC\Files\Cache\Updater', 'deleteHook'); +\OC_Hook::connect('OC_Filesystem', 'post_rename', '\OC\Files\Cache\Updater', 'renameHook'); \ No newline at end of file diff --git a/lib/files/filesystem.php b/lib/files/filesystem.php index c8e62956f1..c0e9d215fb 100644 --- a/lib/files/filesystem.php +++ b/lib/files/filesystem.php @@ -665,9 +665,4 @@ class Filesystem { } } -\OC_Hook::connect('OC_Filesystem', 'post_write', '\OC\Files\Cache\Updater', 'writeHook'); -\OC_Hook::connect('OC_Filesystem', 'post_touch', '\OC\Files\Cache\Updater', 'touchHook'); -\OC_Hook::connect('OC_Filesystem', 'post_delete', '\OC\Files\Cache\Updater', 'deleteHook'); -\OC_Hook::connect('OC_Filesystem', 'post_rename', '\OC\Files\Cache\Updater', 'renameHook'); - \OC_Util::setupFS(); From 6ee2b4c7408f2496a13ac02f34618097c1fb0505 Mon Sep 17 00:00:00 2001 From: kondou Date: Tue, 16 Apr 2013 19:16:48 +0200 Subject: [PATCH 28/40] No personal prefixes for variables. --- cron.php | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/cron.php b/cron.php index 086f96f366..7c875843c7 100644 --- a/cron.php +++ b/cron.php @@ -21,7 +21,7 @@ */ // Unfortunately we need this class for shutdown function -class my_temporary_cron_class { +class TemporaryCronClass { public static $sent = false; public static $lockfile = ""; public static $keeplock = false; @@ -30,12 +30,12 @@ class my_temporary_cron_class { // We use this function to handle (unexpected) shutdowns function handleUnexpectedShutdown() { // Delete lockfile - if( !my_temporary_cron_class::$keeplock && file_exists( my_temporary_cron_class::$lockfile )) { - unlink( my_temporary_cron_class::$lockfile ); + if( !TemporaryCronClass::$keeplock && file_exists( TemporaryCronClass::$lockfile )) { + unlink( TemporaryCronClass::$lockfile ); } // Say goodbye if the app did not shutdown properly - if( !my_temporary_cron_class::$sent ) { + if( !TemporaryCronClass::$sent ) { if( OC::$CLI ) { echo 'Unexpected error!'.PHP_EOL; } @@ -64,7 +64,7 @@ OC_Helper::cleanTmpNoClean(); // Exit if background jobs are disabled! $appmode = OC_BackgroundJob::getExecutionType(); if( $appmode == 'none' ) { - my_temporary_cron_class::$sent = true; + TemporaryCronClass::$sent = true; if( OC::$CLI ) { echo 'Background Jobs are disabled!'.PHP_EOL; } @@ -76,7 +76,7 @@ if( $appmode == 'none' ) { if( OC::$CLI ) { // Create lock file first - my_temporary_cron_class::$lockfile = OC_Config::getValue( "datadirectory", OC::$SERVERROOT.'/data' ).'/cron.lock'; + TemporaryCronClass::$lockfile = OC_Config::getValue( "datadirectory", OC::$SERVERROOT.'/data' ).'/cron.lock'; // We call ownCloud from the CLI (aka cron) if( $appmode != 'cron' ) { @@ -85,15 +85,15 @@ if( OC::$CLI ) { } // check if backgroundjobs is still running - if( file_exists( my_temporary_cron_class::$lockfile )) { - my_temporary_cron_class::$keeplock = true; - my_temporary_cron_class::$sent = true; + if( file_exists( TemporaryCronClass::$lockfile )) { + TemporaryCronClass::$keeplock = true; + TemporaryCronClass::$sent = true; echo "Another instance of cron.php is still running!"; exit( 1 ); } // Create a lock file - touch( my_temporary_cron_class::$lockfile ); + touch( TemporaryCronClass::$lockfile ); // Work OC_BackgroundJob_Worker::doAllSteps(); @@ -112,5 +112,5 @@ else{ } // done! -my_temporary_cron_class::$sent = true; +TemporaryCronClass::$sent = true; exit(); From 6d812ada059525772893d3eb5be9c080635c7120 Mon Sep 17 00:00:00 2001 From: David Reagan Date: Tue, 16 Apr 2013 13:03:41 -0700 Subject: [PATCH 29/40] Modified how the #lostpassword or #email fields save email addresses on the Personal settings page. It now saves one second after the last keyup event, instead of after a blur event. --- settings/js/personal.js | 36 ++++++++++++++++++++++++------------ 1 file changed, 24 insertions(+), 12 deletions(-) diff --git a/settings/js/personal.js b/settings/js/personal.js index d0a471e56b..9c960a180a 100644 --- a/settings/js/personal.js +++ b/settings/js/personal.js @@ -4,6 +4,24 @@ * See the COPYING-README file. */ +/** + * Post the email address change to the server. + */ +function changeEmailAddress(){ + emailInfo = $('#lostpassword #email'); + console.log("Timout done."); + if (emailInfo.val() === emailInfo.defaultValue){ + return; + } + //event.preventDefault(); + emailInfo.defaultValue = emailInfo.val(); + OC.msg.startSaving('#lostpassword .msg'); + var post = $( "#lostpassword" ).serialize(); + $.post( 'ajax/lostpassword.php', post, function(data){ + OC.msg.finishedSaving('#lostpassword .msg', data); + }); +} + $(document).ready(function(){ $("#passwordbutton").click( function(){ if ($('#pass1').val() != '' && $('#pass2').val() != '') { @@ -62,18 +80,12 @@ $(document).ready(function(){ }); - $('#lostpassword #email').blur(function(event){ - if ($(this).val() == this.defaultValue){ - return; - } - event.preventDefault(); - this.defaultValue = $(this).val(); - OC.msg.startSaving('#lostpassword .msg'); - var post = $( "#lostpassword" ).serialize(); - $.post( 'ajax/lostpassword.php', post, function(data){ - OC.msg.finishedSaving('#lostpassword .msg', data); - }); - }); + $('#lostpassword #email').keyup(function(){ + if(typeof timeout !== 'undefined'){ + clearTimeout(timeout); + } + timeout = setTimeout('changeEmailAddress()',1000); + }); $("#languageinput").chosen(); From 0dd6f16e0b57da5239992ceacd90a9c9d01bc9e8 Mon Sep 17 00:00:00 2001 From: David Reagan Date: Tue, 16 Apr 2013 13:22:04 -0700 Subject: [PATCH 30/40] Removed extra id from jquery selectors. Remove console.log call. Removed commented code. --- settings/js/personal.js | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/settings/js/personal.js b/settings/js/personal.js index 9c960a180a..7c879bcafe 100644 --- a/settings/js/personal.js +++ b/settings/js/personal.js @@ -8,12 +8,10 @@ * Post the email address change to the server. */ function changeEmailAddress(){ - emailInfo = $('#lostpassword #email'); - console.log("Timout done."); + emailInfo = $('#email'); if (emailInfo.val() === emailInfo.defaultValue){ return; } - //event.preventDefault(); emailInfo.defaultValue = emailInfo.val(); OC.msg.startSaving('#lostpassword .msg'); var post = $( "#lostpassword" ).serialize(); @@ -80,7 +78,7 @@ $(document).ready(function(){ }); - $('#lostpassword #email').keyup(function(){ + $('#email').keyup(function(){ if(typeof timeout !== 'undefined'){ clearTimeout(timeout); } From 37868818ffdb2e37de99bf342eeb1b3665fbb611 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Wed, 17 Apr 2013 02:29:17 +0200 Subject: [PATCH 31/40] [tx-robot] updated from transifex --- apps/files/l10n/cy_GB.php | 4 + apps/files/l10n/sr.php | 22 +- apps/files_external/l10n/cy_GB.php | 3 + apps/files_sharing/l10n/cy_GB.php | 4 + apps/files_trashbin/l10n/cy_GB.php | 3 + apps/files_trashbin/l10n/sr.php | 1 + apps/user_ldap/l10n/cy_GB.php | 4 + apps/user_ldap/l10n/el.php | 22 + core/l10n/cy_GB.php | 117 +++++ l10n/af_ZA/core.po | 4 +- l10n/af_ZA/files.po | 4 +- l10n/af_ZA/files_encryption.po | 4 +- l10n/af_ZA/files_external.po | 4 +- l10n/af_ZA/files_sharing.po | 4 +- l10n/af_ZA/files_trashbin.po | 4 +- l10n/af_ZA/files_versions.po | 4 +- l10n/af_ZA/lib.po | 4 +- l10n/af_ZA/settings.po | 6 +- l10n/af_ZA/user_ldap.po | 4 +- l10n/af_ZA/user_webdavauth.po | 4 +- l10n/ar/core.po | 4 +- l10n/ar/files.po | 4 +- l10n/ar/files_encryption.po | 4 +- l10n/ar/files_external.po | 4 +- l10n/ar/files_sharing.po | 4 +- l10n/ar/files_trashbin.po | 4 +- l10n/ar/files_versions.po | 4 +- l10n/ar/lib.po | 4 +- l10n/ar/settings.po | 6 +- l10n/ar/user_ldap.po | 4 +- l10n/ar/user_webdavauth.po | 4 +- l10n/be/core.po | 4 +- l10n/be/files.po | 4 +- l10n/be/files_encryption.po | 4 +- l10n/be/files_external.po | 4 +- l10n/be/files_sharing.po | 4 +- l10n/be/files_trashbin.po | 4 +- l10n/be/files_versions.po | 4 +- l10n/be/lib.po | 4 +- l10n/be/settings.po | 6 +- l10n/be/user_ldap.po | 4 +- l10n/be/user_webdavauth.po | 4 +- l10n/bg_BG/core.po | 4 +- l10n/bg_BG/files.po | 4 +- l10n/bg_BG/files_encryption.po | 4 +- l10n/bg_BG/files_external.po | 4 +- l10n/bg_BG/files_sharing.po | 4 +- l10n/bg_BG/files_trashbin.po | 4 +- l10n/bg_BG/files_versions.po | 4 +- l10n/bg_BG/lib.po | 4 +- l10n/bg_BG/settings.po | 6 +- l10n/bg_BG/user_ldap.po | 4 +- l10n/bg_BG/user_webdavauth.po | 4 +- l10n/bn_BD/core.po | 4 +- l10n/bn_BD/files.po | 4 +- l10n/bn_BD/files_encryption.po | 4 +- l10n/bn_BD/files_external.po | 4 +- l10n/bn_BD/files_sharing.po | 4 +- l10n/bn_BD/files_trashbin.po | 4 +- l10n/bn_BD/files_versions.po | 4 +- l10n/bn_BD/lib.po | 4 +- l10n/bn_BD/settings.po | 6 +- l10n/bn_BD/user_ldap.po | 4 +- l10n/bn_BD/user_webdavauth.po | 4 +- l10n/ca/core.po | 4 +- l10n/ca/files.po | 4 +- l10n/ca/files_encryption.po | 4 +- l10n/ca/files_external.po | 4 +- l10n/ca/files_sharing.po | 4 +- l10n/ca/files_trashbin.po | 4 +- l10n/ca/files_versions.po | 4 +- l10n/ca/lib.po | 4 +- l10n/ca/settings.po | 6 +- l10n/ca/user_ldap.po | 4 +- l10n/ca/user_webdavauth.po | 4 +- l10n/cs_CZ/core.po | 4 +- l10n/cs_CZ/files.po | 4 +- l10n/cs_CZ/files_encryption.po | 4 +- l10n/cs_CZ/files_external.po | 4 +- l10n/cs_CZ/files_sharing.po | 4 +- l10n/cs_CZ/files_trashbin.po | 4 +- l10n/cs_CZ/files_versions.po | 4 +- l10n/cs_CZ/lib.po | 4 +- l10n/cs_CZ/settings.po | 6 +- l10n/cs_CZ/user_ldap.po | 4 +- l10n/cs_CZ/user_webdavauth.po | 4 +- l10n/cy_GB/core.po | 606 ++++++++++++++++++++++++++ l10n/cy_GB/files.po | 314 +++++++++++++ l10n/cy_GB/files_encryption.po | 38 ++ l10n/cy_GB/files_external.po | 116 +++++ l10n/cy_GB/files_sharing.po | 48 ++ l10n/cy_GB/files_trashbin.po | 84 ++++ l10n/cy_GB/files_versions.po | 57 +++ l10n/cy_GB/lib.po | 258 +++++++++++ l10n/cy_GB/settings.po | 500 +++++++++++++++++++++ l10n/cy_GB/user_ldap.po | 333 ++++++++++++++ l10n/cy_GB/user_webdavauth.po | 33 ++ l10n/da/core.po | 4 +- l10n/da/files.po | 4 +- l10n/da/files_encryption.po | 4 +- l10n/da/files_external.po | 4 +- l10n/da/files_sharing.po | 4 +- l10n/da/files_trashbin.po | 4 +- l10n/da/files_versions.po | 4 +- l10n/da/lib.po | 4 +- l10n/da/settings.po | 6 +- l10n/da/user_ldap.po | 4 +- l10n/da/user_webdavauth.po | 4 +- l10n/de/core.po | 4 +- l10n/de/files.po | 4 +- l10n/de/files_encryption.po | 4 +- l10n/de/files_external.po | 4 +- l10n/de/files_sharing.po | 4 +- l10n/de/files_trashbin.po | 4 +- l10n/de/files_versions.po | 4 +- l10n/de/lib.po | 4 +- l10n/de/settings.po | 6 +- l10n/de/user_ldap.po | 4 +- l10n/de/user_webdavauth.po | 4 +- l10n/de_DE/core.po | 4 +- l10n/de_DE/files.po | 4 +- l10n/de_DE/files_encryption.po | 4 +- l10n/de_DE/files_external.po | 4 +- l10n/de_DE/files_sharing.po | 4 +- l10n/de_DE/files_trashbin.po | 4 +- l10n/de_DE/files_versions.po | 4 +- l10n/de_DE/lib.po | 4 +- l10n/de_DE/settings.po | 6 +- l10n/de_DE/user_ldap.po | 4 +- l10n/de_DE/user_webdavauth.po | 4 +- l10n/el/core.po | 4 +- l10n/el/files.po | 4 +- l10n/el/files_encryption.po | 4 +- l10n/el/files_external.po | 4 +- l10n/el/files_sharing.po | 4 +- l10n/el/files_trashbin.po | 4 +- l10n/el/files_versions.po | 4 +- l10n/el/lib.po | 4 +- l10n/el/settings.po | 6 +- l10n/el/user_ldap.po | 49 ++- l10n/el/user_webdavauth.po | 4 +- l10n/eo/core.po | 4 +- l10n/eo/files.po | 4 +- l10n/eo/files_encryption.po | 4 +- l10n/eo/files_external.po | 4 +- l10n/eo/files_sharing.po | 4 +- l10n/eo/files_trashbin.po | 4 +- l10n/eo/files_versions.po | 4 +- l10n/eo/lib.po | 4 +- l10n/eo/settings.po | 6 +- l10n/eo/user_ldap.po | 4 +- l10n/eo/user_webdavauth.po | 4 +- l10n/es/core.po | 4 +- l10n/es/files.po | 4 +- l10n/es/files_encryption.po | 4 +- l10n/es/files_external.po | 4 +- l10n/es/files_sharing.po | 4 +- l10n/es/files_trashbin.po | 4 +- l10n/es/files_versions.po | 4 +- l10n/es/lib.po | 4 +- l10n/es/settings.po | 6 +- l10n/es/user_ldap.po | 4 +- l10n/es/user_webdavauth.po | 4 +- l10n/es_AR/core.po | 4 +- l10n/es_AR/files.po | 4 +- l10n/es_AR/files_encryption.po | 4 +- l10n/es_AR/files_external.po | 4 +- l10n/es_AR/files_sharing.po | 4 +- l10n/es_AR/files_trashbin.po | 4 +- l10n/es_AR/files_versions.po | 4 +- l10n/es_AR/lib.po | 4 +- l10n/es_AR/settings.po | 6 +- l10n/es_AR/user_ldap.po | 4 +- l10n/es_AR/user_webdavauth.po | 4 +- l10n/et_EE/core.po | 4 +- l10n/et_EE/files.po | 4 +- l10n/et_EE/files_encryption.po | 4 +- l10n/et_EE/files_external.po | 4 +- l10n/et_EE/files_sharing.po | 4 +- l10n/et_EE/files_trashbin.po | 4 +- l10n/et_EE/files_versions.po | 4 +- l10n/et_EE/lib.po | 4 +- l10n/et_EE/settings.po | 6 +- l10n/et_EE/user_ldap.po | 4 +- l10n/et_EE/user_webdavauth.po | 4 +- l10n/eu/core.po | 4 +- l10n/eu/files.po | 4 +- l10n/eu/files_encryption.po | 4 +- l10n/eu/files_external.po | 4 +- l10n/eu/files_sharing.po | 4 +- l10n/eu/files_trashbin.po | 4 +- l10n/eu/files_versions.po | 4 +- l10n/eu/lib.po | 4 +- l10n/eu/settings.po | 6 +- l10n/eu/user_ldap.po | 4 +- l10n/eu/user_webdavauth.po | 4 +- l10n/fa/core.po | 4 +- l10n/fa/files.po | 4 +- l10n/fa/files_encryption.po | 4 +- l10n/fa/files_external.po | 4 +- l10n/fa/files_sharing.po | 4 +- l10n/fa/files_trashbin.po | 4 +- l10n/fa/files_versions.po | 4 +- l10n/fa/lib.po | 4 +- l10n/fa/settings.po | 6 +- l10n/fa/user_ldap.po | 4 +- l10n/fa/user_webdavauth.po | 4 +- l10n/fi/core.po | 4 +- l10n/fi/files.po | 4 +- l10n/fi/lib.po | 4 +- l10n/fi_FI/core.po | 4 +- l10n/fi_FI/files.po | 4 +- l10n/fi_FI/files_encryption.po | 4 +- l10n/fi_FI/files_external.po | 4 +- l10n/fi_FI/files_sharing.po | 4 +- l10n/fi_FI/files_trashbin.po | 4 +- l10n/fi_FI/files_versions.po | 4 +- l10n/fi_FI/lib.po | 4 +- l10n/fi_FI/settings.po | 6 +- l10n/fi_FI/user_ldap.po | 4 +- l10n/fi_FI/user_webdavauth.po | 4 +- l10n/fr/core.po | 4 +- l10n/fr/files.po | 4 +- l10n/fr/files_encryption.po | 4 +- l10n/fr/files_external.po | 4 +- l10n/fr/files_sharing.po | 4 +- l10n/fr/files_trashbin.po | 4 +- l10n/fr/files_versions.po | 4 +- l10n/fr/lib.po | 4 +- l10n/fr/settings.po | 6 +- l10n/fr/user_ldap.po | 4 +- l10n/fr/user_webdavauth.po | 4 +- l10n/gl/core.po | 4 +- l10n/gl/files.po | 4 +- l10n/gl/files_encryption.po | 4 +- l10n/gl/files_external.po | 4 +- l10n/gl/files_sharing.po | 4 +- l10n/gl/files_trashbin.po | 4 +- l10n/gl/files_versions.po | 4 +- l10n/gl/lib.po | 4 +- l10n/gl/settings.po | 6 +- l10n/gl/user_ldap.po | 4 +- l10n/gl/user_webdavauth.po | 4 +- l10n/he/core.po | 4 +- l10n/he/files.po | 4 +- l10n/he/files_encryption.po | 4 +- l10n/he/files_external.po | 4 +- l10n/he/files_sharing.po | 4 +- l10n/he/files_trashbin.po | 4 +- l10n/he/files_versions.po | 4 +- l10n/he/lib.po | 4 +- l10n/he/settings.po | 6 +- l10n/he/user_ldap.po | 4 +- l10n/he/user_webdavauth.po | 4 +- l10n/hi/core.po | 4 +- l10n/hi/files.po | 4 +- l10n/hi/files_encryption.po | 4 +- l10n/hi/files_external.po | 4 +- l10n/hi/files_sharing.po | 4 +- l10n/hi/files_trashbin.po | 4 +- l10n/hi/files_versions.po | 4 +- l10n/hi/lib.po | 4 +- l10n/hi/settings.po | 6 +- l10n/hi/user_ldap.po | 4 +- l10n/hi/user_webdavauth.po | 4 +- l10n/hr/core.po | 4 +- l10n/hr/files.po | 4 +- l10n/hr/files_encryption.po | 4 +- l10n/hr/files_external.po | 4 +- l10n/hr/files_sharing.po | 4 +- l10n/hr/files_trashbin.po | 4 +- l10n/hr/files_versions.po | 4 +- l10n/hr/lib.po | 4 +- l10n/hr/settings.po | 6 +- l10n/hr/user_ldap.po | 4 +- l10n/hr/user_webdavauth.po | 4 +- l10n/hu_HU/core.po | 4 +- l10n/hu_HU/files.po | 4 +- l10n/hu_HU/files_encryption.po | 4 +- l10n/hu_HU/files_external.po | 4 +- l10n/hu_HU/files_sharing.po | 4 +- l10n/hu_HU/files_trashbin.po | 4 +- l10n/hu_HU/files_versions.po | 4 +- l10n/hu_HU/lib.po | 4 +- l10n/hu_HU/settings.po | 6 +- l10n/hu_HU/user_ldap.po | 4 +- l10n/hu_HU/user_webdavauth.po | 4 +- l10n/hy/files.po | 4 +- l10n/hy/files_external.po | 4 +- l10n/hy/files_trashbin.po | 4 +- l10n/hy/settings.po | 6 +- l10n/ia/core.po | 4 +- l10n/ia/files.po | 4 +- l10n/ia/files_encryption.po | 4 +- l10n/ia/files_external.po | 4 +- l10n/ia/files_sharing.po | 4 +- l10n/ia/files_trashbin.po | 4 +- l10n/ia/files_versions.po | 4 +- l10n/ia/lib.po | 4 +- l10n/ia/settings.po | 6 +- l10n/ia/user_ldap.po | 4 +- l10n/ia/user_webdavauth.po | 4 +- l10n/id/core.po | 4 +- l10n/id/files.po | 4 +- l10n/id/files_encryption.po | 4 +- l10n/id/files_external.po | 4 +- l10n/id/files_sharing.po | 4 +- l10n/id/files_trashbin.po | 4 +- l10n/id/files_versions.po | 4 +- l10n/id/lib.po | 4 +- l10n/id/settings.po | 6 +- l10n/id/user_ldap.po | 4 +- l10n/id/user_webdavauth.po | 4 +- l10n/is/core.po | 4 +- l10n/is/files.po | 4 +- l10n/is/files_encryption.po | 4 +- l10n/is/files_external.po | 4 +- l10n/is/files_sharing.po | 4 +- l10n/is/files_trashbin.po | 4 +- l10n/is/files_versions.po | 4 +- l10n/is/lib.po | 4 +- l10n/is/settings.po | 6 +- l10n/is/user_ldap.po | 4 +- l10n/is/user_webdavauth.po | 4 +- l10n/it/core.po | 4 +- l10n/it/files.po | 4 +- l10n/it/files_encryption.po | 4 +- l10n/it/files_external.po | 4 +- l10n/it/files_sharing.po | 4 +- l10n/it/files_trashbin.po | 4 +- l10n/it/files_versions.po | 4 +- l10n/it/lib.po | 4 +- l10n/it/settings.po | 6 +- l10n/it/user_ldap.po | 4 +- l10n/it/user_webdavauth.po | 4 +- l10n/ja_JP/core.po | 4 +- l10n/ja_JP/files.po | 4 +- l10n/ja_JP/files_encryption.po | 4 +- l10n/ja_JP/files_external.po | 4 +- l10n/ja_JP/files_sharing.po | 4 +- l10n/ja_JP/files_trashbin.po | 4 +- l10n/ja_JP/files_versions.po | 4 +- l10n/ja_JP/lib.po | 4 +- l10n/ja_JP/settings.po | 6 +- l10n/ja_JP/user_ldap.po | 4 +- l10n/ja_JP/user_webdavauth.po | 4 +- l10n/ka/core.po | 4 +- l10n/ka/files.po | 4 +- l10n/ka/files_encryption.po | 4 +- l10n/ka/files_external.po | 4 +- l10n/ka/files_sharing.po | 4 +- l10n/ka/files_trashbin.po | 4 +- l10n/ka/files_versions.po | 4 +- l10n/ka/lib.po | 4 +- l10n/ka/settings.po | 6 +- l10n/ka/user_ldap.po | 4 +- l10n/ka/user_webdavauth.po | 4 +- l10n/ka_GE/core.po | 4 +- l10n/ka_GE/files.po | 4 +- l10n/ka_GE/files_encryption.po | 4 +- l10n/ka_GE/files_external.po | 4 +- l10n/ka_GE/files_sharing.po | 4 +- l10n/ka_GE/files_trashbin.po | 4 +- l10n/ka_GE/files_versions.po | 4 +- l10n/ka_GE/lib.po | 4 +- l10n/ka_GE/settings.po | 6 +- l10n/ka_GE/user_ldap.po | 4 +- l10n/ka_GE/user_webdavauth.po | 4 +- l10n/kn/core.po | 4 +- l10n/kn/files.po | 4 +- l10n/kn/files_encryption.po | 4 +- l10n/kn/files_external.po | 4 +- l10n/kn/files_sharing.po | 4 +- l10n/kn/files_trashbin.po | 4 +- l10n/kn/files_versions.po | 4 +- l10n/kn/lib.po | 4 +- l10n/kn/settings.po | 6 +- l10n/kn/user_ldap.po | 4 +- l10n/kn/user_webdavauth.po | 4 +- l10n/ko/core.po | 4 +- l10n/ko/files.po | 4 +- l10n/ko/files_encryption.po | 4 +- l10n/ko/files_external.po | 4 +- l10n/ko/files_sharing.po | 4 +- l10n/ko/files_trashbin.po | 4 +- l10n/ko/files_versions.po | 4 +- l10n/ko/lib.po | 4 +- l10n/ko/settings.po | 6 +- l10n/ko/user_ldap.po | 4 +- l10n/ko/user_webdavauth.po | 4 +- l10n/ku_IQ/core.po | 4 +- l10n/ku_IQ/files.po | 4 +- l10n/ku_IQ/files_encryption.po | 4 +- l10n/ku_IQ/files_external.po | 4 +- l10n/ku_IQ/files_sharing.po | 4 +- l10n/ku_IQ/files_trashbin.po | 4 +- l10n/ku_IQ/files_versions.po | 4 +- l10n/ku_IQ/lib.po | 4 +- l10n/ku_IQ/settings.po | 6 +- l10n/ku_IQ/user_ldap.po | 4 +- l10n/ku_IQ/user_webdavauth.po | 4 +- l10n/lb/core.po | 4 +- l10n/lb/files.po | 4 +- l10n/lb/files_encryption.po | 4 +- l10n/lb/files_external.po | 4 +- l10n/lb/files_sharing.po | 4 +- l10n/lb/files_trashbin.po | 4 +- l10n/lb/files_versions.po | 4 +- l10n/lb/lib.po | 4 +- l10n/lb/settings.po | 6 +- l10n/lb/user_ldap.po | 4 +- l10n/lb/user_webdavauth.po | 4 +- l10n/lt_LT/core.po | 4 +- l10n/lt_LT/files.po | 4 +- l10n/lt_LT/files_encryption.po | 4 +- l10n/lt_LT/files_external.po | 4 +- l10n/lt_LT/files_sharing.po | 4 +- l10n/lt_LT/files_trashbin.po | 4 +- l10n/lt_LT/files_versions.po | 4 +- l10n/lt_LT/lib.po | 4 +- l10n/lt_LT/settings.po | 6 +- l10n/lt_LT/user_ldap.po | 4 +- l10n/lt_LT/user_webdavauth.po | 4 +- l10n/lv/core.po | 4 +- l10n/lv/files.po | 4 +- l10n/lv/files_encryption.po | 4 +- l10n/lv/files_external.po | 4 +- l10n/lv/files_sharing.po | 4 +- l10n/lv/files_trashbin.po | 4 +- l10n/lv/files_versions.po | 4 +- l10n/lv/lib.po | 4 +- l10n/lv/settings.po | 6 +- l10n/lv/user_ldap.po | 4 +- l10n/lv/user_webdavauth.po | 4 +- l10n/mk/core.po | 4 +- l10n/mk/files.po | 4 +- l10n/mk/files_encryption.po | 4 +- l10n/mk/files_external.po | 4 +- l10n/mk/files_sharing.po | 4 +- l10n/mk/files_trashbin.po | 4 +- l10n/mk/files_versions.po | 4 +- l10n/mk/lib.po | 4 +- l10n/mk/settings.po | 6 +- l10n/mk/user_ldap.po | 4 +- l10n/mk/user_webdavauth.po | 4 +- l10n/ms_MY/core.po | 4 +- l10n/ms_MY/files.po | 4 +- l10n/ms_MY/files_encryption.po | 4 +- l10n/ms_MY/files_external.po | 4 +- l10n/ms_MY/files_sharing.po | 4 +- l10n/ms_MY/files_trashbin.po | 4 +- l10n/ms_MY/files_versions.po | 4 +- l10n/ms_MY/lib.po | 4 +- l10n/ms_MY/settings.po | 6 +- l10n/ms_MY/user_ldap.po | 4 +- l10n/ms_MY/user_webdavauth.po | 4 +- l10n/my_MM/core.po | 4 +- l10n/my_MM/files.po | 4 +- l10n/my_MM/files_encryption.po | 4 +- l10n/my_MM/files_external.po | 4 +- l10n/my_MM/files_sharing.po | 4 +- l10n/my_MM/files_trashbin.po | 4 +- l10n/my_MM/files_versions.po | 4 +- l10n/my_MM/lib.po | 4 +- l10n/my_MM/settings.po | 6 +- l10n/my_MM/user_ldap.po | 4 +- l10n/my_MM/user_webdavauth.po | 4 +- l10n/nb_NO/core.po | 4 +- l10n/nb_NO/files.po | 4 +- l10n/nb_NO/files_encryption.po | 4 +- l10n/nb_NO/files_external.po | 4 +- l10n/nb_NO/files_sharing.po | 4 +- l10n/nb_NO/files_trashbin.po | 4 +- l10n/nb_NO/files_versions.po | 4 +- l10n/nb_NO/lib.po | 4 +- l10n/nb_NO/settings.po | 6 +- l10n/nb_NO/user_ldap.po | 4 +- l10n/nb_NO/user_webdavauth.po | 4 +- l10n/ne/core.po | 4 +- l10n/ne/files.po | 4 +- l10n/ne/files_encryption.po | 4 +- l10n/ne/files_external.po | 4 +- l10n/ne/files_sharing.po | 4 +- l10n/ne/files_trashbin.po | 4 +- l10n/ne/files_versions.po | 4 +- l10n/ne/lib.po | 4 +- l10n/ne/settings.po | 6 +- l10n/ne/user_ldap.po | 4 +- l10n/ne/user_webdavauth.po | 4 +- l10n/nl/core.po | 4 +- l10n/nl/files.po | 4 +- l10n/nl/files_encryption.po | 4 +- l10n/nl/files_external.po | 4 +- l10n/nl/files_sharing.po | 4 +- l10n/nl/files_trashbin.po | 4 +- l10n/nl/files_versions.po | 4 +- l10n/nl/lib.po | 4 +- l10n/nl/settings.po | 6 +- l10n/nl/user_ldap.po | 4 +- l10n/nl/user_webdavauth.po | 4 +- l10n/nn_NO/core.po | 4 +- l10n/nn_NO/files.po | 4 +- l10n/nn_NO/files_encryption.po | 4 +- l10n/nn_NO/files_external.po | 4 +- l10n/nn_NO/files_sharing.po | 4 +- l10n/nn_NO/files_trashbin.po | 4 +- l10n/nn_NO/files_versions.po | 4 +- l10n/nn_NO/lib.po | 4 +- l10n/nn_NO/settings.po | 6 +- l10n/nn_NO/user_ldap.po | 4 +- l10n/nn_NO/user_webdavauth.po | 4 +- l10n/oc/core.po | 4 +- l10n/oc/files.po | 4 +- l10n/oc/files_encryption.po | 4 +- l10n/oc/files_external.po | 4 +- l10n/oc/files_sharing.po | 4 +- l10n/oc/files_trashbin.po | 4 +- l10n/oc/files_versions.po | 4 +- l10n/oc/lib.po | 4 +- l10n/oc/settings.po | 6 +- l10n/oc/user_ldap.po | 4 +- l10n/oc/user_webdavauth.po | 4 +- l10n/pl/core.po | 4 +- l10n/pl/files.po | 4 +- l10n/pl/files_encryption.po | 4 +- l10n/pl/files_external.po | 4 +- l10n/pl/files_sharing.po | 4 +- l10n/pl/files_trashbin.po | 4 +- l10n/pl/files_versions.po | 4 +- l10n/pl/lib.po | 4 +- l10n/pl/settings.po | 6 +- l10n/pl/user_ldap.po | 4 +- l10n/pl/user_webdavauth.po | 4 +- l10n/pl_PL/core.po | 4 +- l10n/pl_PL/files.po | 4 +- l10n/pl_PL/files_encryption.po | 4 +- l10n/pl_PL/files_external.po | 4 +- l10n/pl_PL/files_sharing.po | 4 +- l10n/pl_PL/files_trashbin.po | 4 +- l10n/pl_PL/files_versions.po | 4 +- l10n/pl_PL/lib.po | 4 +- l10n/pl_PL/settings.po | 6 +- l10n/pl_PL/user_ldap.po | 4 +- l10n/pl_PL/user_webdavauth.po | 4 +- l10n/pt_BR/core.po | 4 +- l10n/pt_BR/files.po | 4 +- l10n/pt_BR/files_encryption.po | 4 +- l10n/pt_BR/files_external.po | 4 +- l10n/pt_BR/files_sharing.po | 4 +- l10n/pt_BR/files_trashbin.po | 4 +- l10n/pt_BR/files_versions.po | 4 +- l10n/pt_BR/lib.po | 4 +- l10n/pt_BR/settings.po | 6 +- l10n/pt_BR/user_ldap.po | 4 +- l10n/pt_BR/user_webdavauth.po | 4 +- l10n/pt_PT/core.po | 4 +- l10n/pt_PT/files.po | 4 +- l10n/pt_PT/files_encryption.po | 4 +- l10n/pt_PT/files_external.po | 4 +- l10n/pt_PT/files_sharing.po | 4 +- l10n/pt_PT/files_trashbin.po | 4 +- l10n/pt_PT/files_versions.po | 4 +- l10n/pt_PT/lib.po | 4 +- l10n/pt_PT/settings.po | 6 +- l10n/pt_PT/user_ldap.po | 4 +- l10n/pt_PT/user_webdavauth.po | 4 +- l10n/ro/core.po | 4 +- l10n/ro/files.po | 4 +- l10n/ro/files_encryption.po | 4 +- l10n/ro/files_external.po | 4 +- l10n/ro/files_sharing.po | 4 +- l10n/ro/files_trashbin.po | 4 +- l10n/ro/files_versions.po | 4 +- l10n/ro/lib.po | 4 +- l10n/ro/settings.po | 6 +- l10n/ro/user_ldap.po | 4 +- l10n/ro/user_webdavauth.po | 4 +- l10n/ru/core.po | 4 +- l10n/ru/files.po | 4 +- l10n/ru/files_encryption.po | 4 +- l10n/ru/files_external.po | 4 +- l10n/ru/files_sharing.po | 4 +- l10n/ru/files_trashbin.po | 4 +- l10n/ru/files_versions.po | 4 +- l10n/ru/lib.po | 4 +- l10n/ru/settings.po | 6 +- l10n/ru/user_ldap.po | 4 +- l10n/ru/user_webdavauth.po | 4 +- l10n/ru_RU/core.po | 4 +- l10n/ru_RU/files.po | 4 +- l10n/ru_RU/files_encryption.po | 4 +- l10n/ru_RU/files_external.po | 4 +- l10n/ru_RU/files_sharing.po | 4 +- l10n/ru_RU/files_trashbin.po | 4 +- l10n/ru_RU/files_versions.po | 4 +- l10n/ru_RU/lib.po | 4 +- l10n/ru_RU/settings.po | 6 +- l10n/ru_RU/user_ldap.po | 4 +- l10n/ru_RU/user_webdavauth.po | 4 +- l10n/si_LK/core.po | 4 +- l10n/si_LK/files.po | 4 +- l10n/si_LK/files_encryption.po | 4 +- l10n/si_LK/files_external.po | 4 +- l10n/si_LK/files_sharing.po | 4 +- l10n/si_LK/files_trashbin.po | 4 +- l10n/si_LK/files_versions.po | 4 +- l10n/si_LK/lib.po | 4 +- l10n/si_LK/settings.po | 6 +- l10n/si_LK/user_ldap.po | 4 +- l10n/si_LK/user_webdavauth.po | 4 +- l10n/sk/core.po | 4 +- l10n/sk/files.po | 4 +- l10n/sk/files_encryption.po | 4 +- l10n/sk/files_external.po | 4 +- l10n/sk/files_sharing.po | 4 +- l10n/sk/files_trashbin.po | 4 +- l10n/sk/files_versions.po | 4 +- l10n/sk/lib.po | 4 +- l10n/sk/settings.po | 6 +- l10n/sk/user_ldap.po | 4 +- l10n/sk/user_webdavauth.po | 4 +- l10n/sk_SK/core.po | 4 +- l10n/sk_SK/files.po | 4 +- l10n/sk_SK/files_encryption.po | 4 +- l10n/sk_SK/files_external.po | 4 +- l10n/sk_SK/files_sharing.po | 4 +- l10n/sk_SK/files_trashbin.po | 4 +- l10n/sk_SK/files_versions.po | 4 +- l10n/sk_SK/lib.po | 4 +- l10n/sk_SK/settings.po | 6 +- l10n/sk_SK/user_ldap.po | 4 +- l10n/sk_SK/user_webdavauth.po | 4 +- l10n/sl/core.po | 4 +- l10n/sl/files.po | 4 +- l10n/sl/files_encryption.po | 4 +- l10n/sl/files_external.po | 4 +- l10n/sl/files_sharing.po | 4 +- l10n/sl/files_trashbin.po | 4 +- l10n/sl/files_versions.po | 4 +- l10n/sl/lib.po | 4 +- l10n/sl/settings.po | 6 +- l10n/sl/user_ldap.po | 4 +- l10n/sl/user_webdavauth.po | 4 +- l10n/sq/core.po | 4 +- l10n/sq/files.po | 4 +- l10n/sq/files_encryption.po | 4 +- l10n/sq/files_external.po | 4 +- l10n/sq/files_sharing.po | 4 +- l10n/sq/files_trashbin.po | 4 +- l10n/sq/files_versions.po | 4 +- l10n/sq/lib.po | 4 +- l10n/sq/settings.po | 6 +- l10n/sq/user_ldap.po | 4 +- l10n/sq/user_webdavauth.po | 4 +- l10n/sr/core.po | 4 +- l10n/sr/files.po | 45 +- l10n/sr/files_encryption.po | 4 +- l10n/sr/files_external.po | 4 +- l10n/sr/files_sharing.po | 4 +- l10n/sr/files_trashbin.po | 6 +- l10n/sr/files_versions.po | 4 +- l10n/sr/lib.po | 8 +- l10n/sr/settings.po | 123 +++--- l10n/sr/user_ldap.po | 4 +- l10n/sr/user_webdavauth.po | 4 +- l10n/sr@latin/core.po | 4 +- l10n/sr@latin/files.po | 4 +- l10n/sr@latin/files_encryption.po | 4 +- l10n/sr@latin/files_external.po | 4 +- l10n/sr@latin/files_sharing.po | 4 +- l10n/sr@latin/files_trashbin.po | 4 +- l10n/sr@latin/files_versions.po | 4 +- l10n/sr@latin/lib.po | 4 +- l10n/sr@latin/settings.po | 6 +- l10n/sr@latin/user_ldap.po | 4 +- l10n/sr@latin/user_webdavauth.po | 4 +- l10n/sv/core.po | 4 +- l10n/sv/files.po | 4 +- l10n/sv/files_encryption.po | 4 +- l10n/sv/files_external.po | 4 +- l10n/sv/files_sharing.po | 4 +- l10n/sv/files_trashbin.po | 4 +- l10n/sv/files_versions.po | 4 +- l10n/sv/lib.po | 4 +- l10n/sv/settings.po | 6 +- l10n/sv/user_ldap.po | 4 +- l10n/sv/user_webdavauth.po | 4 +- l10n/sw_KE/core.po | 4 +- l10n/sw_KE/files.po | 4 +- l10n/sw_KE/files_encryption.po | 4 +- l10n/sw_KE/files_external.po | 4 +- l10n/sw_KE/files_sharing.po | 4 +- l10n/sw_KE/files_trashbin.po | 4 +- l10n/sw_KE/files_versions.po | 4 +- l10n/sw_KE/lib.po | 4 +- l10n/sw_KE/settings.po | 6 +- l10n/sw_KE/user_ldap.po | 4 +- l10n/sw_KE/user_webdavauth.po | 4 +- l10n/ta_LK/core.po | 4 +- l10n/ta_LK/files.po | 4 +- l10n/ta_LK/files_encryption.po | 4 +- l10n/ta_LK/files_external.po | 4 +- l10n/ta_LK/files_sharing.po | 4 +- l10n/ta_LK/files_trashbin.po | 4 +- l10n/ta_LK/files_versions.po | 4 +- l10n/ta_LK/lib.po | 4 +- l10n/ta_LK/settings.po | 6 +- l10n/ta_LK/user_ldap.po | 4 +- l10n/ta_LK/user_webdavauth.po | 4 +- l10n/te/core.po | 4 +- l10n/te/files.po | 4 +- l10n/te/files_encryption.po | 4 +- l10n/te/files_external.po | 4 +- l10n/te/files_sharing.po | 4 +- l10n/te/files_trashbin.po | 4 +- l10n/te/files_versions.po | 4 +- l10n/te/lib.po | 4 +- l10n/te/settings.po | 6 +- l10n/te/user_ldap.po | 4 +- l10n/te/user_webdavauth.po | 4 +- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 4 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/core.po | 4 +- l10n/th_TH/files.po | 4 +- l10n/th_TH/files_encryption.po | 4 +- l10n/th_TH/files_external.po | 4 +- l10n/th_TH/files_sharing.po | 4 +- l10n/th_TH/files_trashbin.po | 4 +- l10n/th_TH/files_versions.po | 4 +- l10n/th_TH/lib.po | 4 +- l10n/th_TH/settings.po | 6 +- l10n/th_TH/user_ldap.po | 4 +- l10n/th_TH/user_webdavauth.po | 4 +- l10n/tr/core.po | 4 +- l10n/tr/files.po | 4 +- l10n/tr/files_encryption.po | 4 +- l10n/tr/files_external.po | 4 +- l10n/tr/files_sharing.po | 4 +- l10n/tr/files_trashbin.po | 4 +- l10n/tr/files_versions.po | 4 +- l10n/tr/lib.po | 4 +- l10n/tr/settings.po | 6 +- l10n/tr/user_ldap.po | 4 +- l10n/tr/user_webdavauth.po | 4 +- l10n/uk/core.po | 4 +- l10n/uk/files.po | 4 +- l10n/uk/files_encryption.po | 4 +- l10n/uk/files_external.po | 4 +- l10n/uk/files_sharing.po | 4 +- l10n/uk/files_trashbin.po | 4 +- l10n/uk/files_versions.po | 4 +- l10n/uk/lib.po | 4 +- l10n/uk/settings.po | 6 +- l10n/uk/user_ldap.po | 4 +- l10n/uk/user_webdavauth.po | 4 +- l10n/ur_PK/core.po | 4 +- l10n/ur_PK/files.po | 4 +- l10n/ur_PK/files_encryption.po | 4 +- l10n/ur_PK/files_external.po | 4 +- l10n/ur_PK/files_sharing.po | 4 +- l10n/ur_PK/files_trashbin.po | 4 +- l10n/ur_PK/files_versions.po | 4 +- l10n/ur_PK/lib.po | 4 +- l10n/ur_PK/settings.po | 6 +- l10n/ur_PK/user_ldap.po | 4 +- l10n/ur_PK/user_webdavauth.po | 4 +- l10n/vi/core.po | 4 +- l10n/vi/files.po | 4 +- l10n/vi/files_encryption.po | 4 +- l10n/vi/files_external.po | 4 +- l10n/vi/files_sharing.po | 4 +- l10n/vi/files_trashbin.po | 4 +- l10n/vi/files_versions.po | 4 +- l10n/vi/lib.po | 4 +- l10n/vi/settings.po | 6 +- l10n/vi/user_ldap.po | 4 +- l10n/vi/user_webdavauth.po | 4 +- l10n/zh_CN.GB2312/core.po | 4 +- l10n/zh_CN.GB2312/files.po | 4 +- l10n/zh_CN.GB2312/files_encryption.po | 4 +- l10n/zh_CN.GB2312/files_external.po | 4 +- l10n/zh_CN.GB2312/files_sharing.po | 4 +- l10n/zh_CN.GB2312/files_trashbin.po | 4 +- l10n/zh_CN.GB2312/files_versions.po | 4 +- l10n/zh_CN.GB2312/lib.po | 4 +- l10n/zh_CN.GB2312/settings.po | 6 +- l10n/zh_CN.GB2312/user_ldap.po | 4 +- l10n/zh_CN.GB2312/user_webdavauth.po | 4 +- l10n/zh_CN/core.po | 4 +- l10n/zh_CN/files.po | 4 +- l10n/zh_CN/files_encryption.po | 4 +- l10n/zh_CN/files_external.po | 4 +- l10n/zh_CN/files_sharing.po | 4 +- l10n/zh_CN/files_trashbin.po | 4 +- l10n/zh_CN/files_versions.po | 4 +- l10n/zh_CN/lib.po | 4 +- l10n/zh_CN/settings.po | 6 +- l10n/zh_CN/user_ldap.po | 4 +- l10n/zh_CN/user_webdavauth.po | 4 +- l10n/zh_HK/core.po | 4 +- l10n/zh_HK/files.po | 4 +- l10n/zh_HK/files_encryption.po | 4 +- l10n/zh_HK/files_external.po | 4 +- l10n/zh_HK/files_sharing.po | 4 +- l10n/zh_HK/files_trashbin.po | 4 +- l10n/zh_HK/files_versions.po | 4 +- l10n/zh_HK/lib.po | 4 +- l10n/zh_HK/settings.po | 6 +- l10n/zh_HK/user_ldap.po | 4 +- l10n/zh_HK/user_webdavauth.po | 4 +- l10n/zh_TW/core.po | 4 +- l10n/zh_TW/files.po | 4 +- l10n/zh_TW/files_encryption.po | 4 +- l10n/zh_TW/files_external.po | 4 +- l10n/zh_TW/files_sharing.po | 4 +- l10n/zh_TW/files_trashbin.po | 4 +- l10n/zh_TW/files_versions.po | 4 +- l10n/zh_TW/lib.po | 4 +- l10n/zh_TW/settings.po | 6 +- l10n/zh_TW/user_ldap.po | 4 +- l10n/zh_TW/user_webdavauth.po | 4 +- lib/l10n/cy_GB.php | 16 + lib/l10n/sr.php | 2 + settings/l10n/cy_GB.php | 6 + settings/l10n/sr.php | 60 ++- 834 files changed, 4438 insertions(+), 1788 deletions(-) create mode 100644 apps/files/l10n/cy_GB.php create mode 100644 apps/files_external/l10n/cy_GB.php create mode 100644 apps/files_sharing/l10n/cy_GB.php create mode 100644 apps/files_trashbin/l10n/cy_GB.php create mode 100644 apps/user_ldap/l10n/cy_GB.php create mode 100644 core/l10n/cy_GB.php create mode 100644 l10n/cy_GB/core.po create mode 100644 l10n/cy_GB/files.po create mode 100644 l10n/cy_GB/files_encryption.po create mode 100644 l10n/cy_GB/files_external.po create mode 100644 l10n/cy_GB/files_sharing.po create mode 100644 l10n/cy_GB/files_trashbin.po create mode 100644 l10n/cy_GB/files_versions.po create mode 100644 l10n/cy_GB/lib.po create mode 100644 l10n/cy_GB/settings.po create mode 100644 l10n/cy_GB/user_ldap.po create mode 100644 l10n/cy_GB/user_webdavauth.po create mode 100644 lib/l10n/cy_GB.php create mode 100644 settings/l10n/cy_GB.php diff --git a/apps/files/l10n/cy_GB.php b/apps/files/l10n/cy_GB.php new file mode 100644 index 0000000000..762c958f12 --- /dev/null +++ b/apps/files/l10n/cy_GB.php @@ -0,0 +1,4 @@ + "Gwall", +"Unshare" => "Dad-rannu" +); diff --git a/apps/files/l10n/sr.php b/apps/files/l10n/sr.php index ff0733e211..50d587ebb2 100644 --- a/apps/files/l10n/sr.php +++ b/apps/files/l10n/sr.php @@ -1,4 +1,8 @@ "Не могу да преместим %s – датотека с овим именом већ постоји", +"Could not move %s" => "Не могу да преместим %s", +"Unable to rename file" => "Не могу да преименујем датотеку", +"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: " => "Отпремљена датотека прелази смерницу upload_max_filesize у датотеци php.ini:", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Отпремљена датотека прелази смерницу MAX_FILE_SIZE која је наведена у HTML обрасцу", @@ -6,7 +10,10 @@ "No file was uploaded" => "Датотека није отпремљена", "Missing a temporary folder" => "Недостаје привремена фасцикла", "Failed to write to disk" => "Не могу да пишем на диск", +"Not enough storage available" => "Нема довољно простора", +"Invalid directory." => "неисправна фасцикла.", "Files" => "Датотеке", +"Delete permanently" => "Обриши за стално", "Delete" => "Обриши", "Rename" => "Преименуј", "Pending" => "На чекању", @@ -16,11 +23,21 @@ "cancel" => "откажи", "replaced {new_name} with {old_name}" => "замењено {new_name} са {old_name}", "undo" => "опозови", +"perform delete operation" => "обриши", "1 file uploading" => "Отпремам 1 датотеку", +"files uploading" => "датотеке се отпремају", +"'.' is an invalid file name." => "Датотека „.“ је неисправног имена.", +"File name cannot be empty." => "Име датотеке не може бити празно.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Неисправан назив. Следећи знакови нису дозвољени: \\, /, <, >, :, \", |, ? и *.", +"Your storage is full, files can not be updated or synced anymore!" => "Ваше складиште је пуно. Датотеке више не могу бити ажуриране ни синхронизоване.", +"Your storage is almost full ({usedSpacePercent}%)" => "Ваше складиште је скоро па пуно ({usedSpacePercent}%)", +"Your download is being prepared. This might take some time if the files are big." => "Припремам преузимање. Ово може да потраје ако су датотеке велике.", "Unable to upload your file as it is a directory or has 0 bytes" => "Не могу да отпремим датотеку као фасциклу или она има 0 бајтова", +"Not enough space available" => "Нема довољно простора", "Upload cancelled." => "Отпремање је прекинуто.", "File upload is in progress. Leaving the page now will cancel the upload." => "Отпремање датотеке је у току. Ако сада напустите страницу, прекинућете отпремање.", +"URL cannot be empty." => "Адреса не може бити празна.", +"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Неисправно име фасцикле. Фасцикла „Shared“ је резервисана за ownCloud.", "Error" => "Грешка", "Name" => "Назив", "Size" => "Величина", @@ -42,12 +59,15 @@ "Text file" => "текстуална датотека", "Folder" => "фасцикла", "From link" => "Са везе", +"Deleted files" => "Обрисане датотеке", "Cancel upload" => "Прекини отпремање", +"You don’t have write permissions here." => "Овде немате дозволу за писање.", "Nothing in here. Upload something!" => "Овде нема ничег. Отпремите нешто!", "Download" => "Преузми", "Unshare" => "Укини дељење", "Upload too large" => "Датотека је превелика", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Датотеке које желите да отпремите прелазе ограничење у величини.", "Files are being scanned, please wait." => "Скенирам датотеке…", -"Current scanning" => "Тренутно скенирање" +"Current scanning" => "Тренутно скенирање", +"Upgrading filesystem cache..." => "Дограђујем кеш система датотека…" ); diff --git a/apps/files_external/l10n/cy_GB.php b/apps/files_external/l10n/cy_GB.php new file mode 100644 index 0000000000..a0e1efd4a8 --- /dev/null +++ b/apps/files_external/l10n/cy_GB.php @@ -0,0 +1,3 @@ + "Defnyddwyr" +); diff --git a/apps/files_sharing/l10n/cy_GB.php b/apps/files_sharing/l10n/cy_GB.php new file mode 100644 index 0000000000..00f0b16204 --- /dev/null +++ b/apps/files_sharing/l10n/cy_GB.php @@ -0,0 +1,4 @@ + "Cyfrinair", +"web services under your control" => "gwasanaethau gwe a reolir gennych" +); diff --git a/apps/files_trashbin/l10n/cy_GB.php b/apps/files_trashbin/l10n/cy_GB.php new file mode 100644 index 0000000000..4a264eb936 --- /dev/null +++ b/apps/files_trashbin/l10n/cy_GB.php @@ -0,0 +1,3 @@ + "Gwall" +); diff --git a/apps/files_trashbin/l10n/sr.php b/apps/files_trashbin/l10n/sr.php index 81a65b819f..280c2b0282 100644 --- a/apps/files_trashbin/l10n/sr.php +++ b/apps/files_trashbin/l10n/sr.php @@ -1,6 +1,7 @@ "врати у претходно стање", "Error" => "Грешка", +"Delete permanently" => "Обриши за стално", "Name" => "Име", "Deleted" => "Обрисано", "1 folder" => "1 фасцикла", diff --git a/apps/user_ldap/l10n/cy_GB.php b/apps/user_ldap/l10n/cy_GB.php new file mode 100644 index 0000000000..da107789fb --- /dev/null +++ b/apps/user_ldap/l10n/cy_GB.php @@ -0,0 +1,4 @@ + "Cyfrinair", +"Help" => "Cymorth" +); diff --git a/apps/user_ldap/l10n/el.php b/apps/user_ldap/l10n/el.php index 96ec818043..e5fe6b6da7 100644 --- a/apps/user_ldap/l10n/el.php +++ b/apps/user_ldap/l10n/el.php @@ -4,6 +4,7 @@ "The configuration is valid, but the Bind failed. Please check the server settings and credentials." => "Οι ρυθμίσεις είναι έγκυρες, αλλά απέτυχε η σύνδεση. Παρακαλώ ελέγξτε τις ρυθμίσεις του διακομιστή και τα διαπιστευτήρια.", "The configuration is invalid. Please look in the ownCloud log for further details." => "Μη έγκυρες ρυθμίσεις. Παρακαλώ ελέγξτε τις καταγραφές του ownCloud για περισσότερες λεπτομέρειες.", "Deletion failed" => "Η διαγραφή απέτυχε", +"Take over settings from recent server configuration?" => "Πάρτε πάνω από τις πρόσφατες ρυθμίσεις διαμόρφωσης του διακομιστή?", "Keep settings?" => "Διατήρηση ρυθμίσεων;", "Cannot add server configuration" => "Αδυναμία προσθήκης ρυθμίσεων διακομιστή", "Connection test succeeded" => "Επιτυχημένη δοκιμαστική σύνδεση", @@ -17,6 +18,7 @@ "Host" => "Διακομιστής", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "Μπορείτε να παραλείψετε το πρωτόκολλο, εκτός αν απαιτείται SSL. Σε αυτή την περίπτωση ξεκινήστε με ldaps://", "Base DN" => "Base DN", +"One Base DN per line" => "Ένα DN Βάσης ανά γραμμή ", "You can specify Base DN for users and groups in the Advanced tab" => "Μπορείτε να καθορίσετε το Base DN για χρήστες και ομάδες από την καρτέλα Προηγμένες ρυθμίσεις", "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 και τον Κωδικό κενά.", @@ -32,22 +34,42 @@ "Defines the filter to apply, when retrieving groups." => "Καθορίζει το φίλτρο που θα ισχύει κατά την ανάκτηση ομάδων.", "without any placeholder, e.g. \"objectClass=posixGroup\"." => "χωρίς κάποια μεταβλητή, π.χ. \"objectClass=ΟμάδαPosix\".", "Connection Settings" => "Ρυθμίσεις Σύνδεσης", +"Configuration Active" => "Ενεργοποιηση ρυθμισεων", +"When unchecked, this configuration will be skipped." => "Όταν δεν είναι επιλεγμένο, αυτή η ρύθμιση θα πρέπει να παραλειφθεί. ", "Port" => "Θύρα", +"Backup (Replica) Host" => "Δημιουργία αντιγράφων ασφαλείας (Replica) Host ", +"Give an optional backup host. It must be a replica of the main LDAP/AD server." => "Δώστε μια προαιρετική εφεδρική υποδοχή. Πρέπει να είναι ένα αντίγραφο του κύριου LDAP / AD διακομιστη.", +"Backup (Replica) Port" => "Δημιουργία αντιγράφων ασφαλείας (Replica) Υποδοχη", +"Disable Main Server" => "Απενεργοποιηση του κεντρικου διακομιστη", +"When switched on, ownCloud will only connect to the replica server." => "Όταν ενεργοποιηθεί, με το ownCloud θα συνδεθείτε με το διακομιστή ρεπλίκα.", "Use TLS" => "Χρήση TLS", +"Do not use it additionally for LDAPS connections, it will fail." => "Μην το χρησιμοποιήσετε επιπροσθέτως, για LDAPS συνδέσεις , θα αποτύχει.", "Case insensitve LDAP server (Windows)" => "LDAP server (Windows) με διάκριση πεζών-ΚΕΦΑΛΑΙΩΝ", "Turn off SSL certificate validation." => "Απενεργοποίηση επικύρωσης πιστοποιητικού SSL.", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Εάν η σύνδεση δουλεύει μόνο με αυτή την επιλογή, εισάγετε το LDAP SSL πιστοποιητικό του διακομιστή στον ownCloud server σας.", "Not recommended, use for testing only." => "Δεν προτείνεται, χρήση μόνο για δοκιμές.", +"Cache Time-To-Live" => "Cache Time-To-Live", "in seconds. A change empties the cache." => "σε δευτερόλεπτα. Μια αλλαγή αδειάζει την μνήμη cache.", "Directory Settings" => "Ρυθμίσεις Καταλόγου", "User Display Name Field" => "Πεδίο Ονόματος Χρήστη", "The LDAP attribute to use to generate the user`s ownCloud name." => "Η ιδιότητα LDAP που θα χρησιμοποιείται για τη δημιουργία του ονόματος χρήστη του ownCloud.", "Base User Tree" => "Base User Tree", +"One User Base DN per line" => "Ένα DN βάσης χρηστών ανά γραμμή", +"User Search Attributes" => "Χαρακτηριστικά αναζήτησης των χρηστών ", +"Optional; one attribute per line" => "Προαιρετικά? Ένα χαρακτηριστικό ανά γραμμή ", "Group Display Name Field" => "Group Display Name Field", "The LDAP attribute to use to generate the groups`s ownCloud name." => "Η ιδιότητα LDAP που θα χρησιμοποιείται για τη δημιουργία του ονόματος ομάδας του ownCloud.", "Base Group Tree" => "Base Group Tree", +"One Group Base DN per line" => "Μια ομαδικη Βάση DN ανά γραμμή", +"Group Search Attributes" => "Ομάδα Χαρακτηριστικων Αναζήτηση", "Group-Member association" => "Group-Member association", +"Special Attributes" => "Ειδικά Χαρακτηριστικά ", +"Quota Field" => "Ποσοσταση πεδιου", +"Quota Default" => "Προκαθισμενο πεδιο", "in bytes" => "σε bytes", +"Email Field" => "Email τυπος", +"User Home Folder Naming Rule" => "Χρήστης Προσωπικόςφάκελος Ονομασία Κανόνας ", "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Αφήστε το κενό για το όνομα χρήστη (προεπιλογή). Διαφορετικά, συμπληρώστε μία ιδιότητα LDAP/AD.", +"Test Configuration" => "Δοκιμαστικες ρυθμισεις", "Help" => "Βοήθεια" ); diff --git a/core/l10n/cy_GB.php b/core/l10n/cy_GB.php new file mode 100644 index 0000000000..6698ce77a3 --- /dev/null +++ b/core/l10n/cy_GB.php @@ -0,0 +1,117 @@ + "Math o gategori heb ei ddarparu.", +"No category to add?" => "Dim categori i'w ychwanegu?", +"Object type not provided." => "Math o wrthrych heb ei ddarparu.", +"%s ID not provided." => "%s ID heb ei ddarparu.", +"Error adding %s to favorites." => "Gwall wrth ychwanegu %s at ffefrynnau.", +"No categories selected for deletion." => "Ni ddewiswyd categorïau i'w dileu.", +"Error removing %s from favorites." => "Gwall wrth dynnu %s o ffefrynnau.", +"Sunday" => "Sul", +"Monday" => "Llun", +"Tuesday" => "Mawrth", +"Wednesday" => "Mercher", +"Thursday" => "Iau", +"Friday" => "Gwener", +"Saturday" => "Sadwrn", +"January" => "Ionawr", +"February" => "Chwefror", +"March" => "Mawrth", +"April" => "Ebrill", +"May" => "Mai", +"June" => "Mehefin", +"July" => "Gorffennaf", +"August" => "Awst", +"September" => "Medi", +"October" => "Hydref", +"November" => "Tachwedd", +"December" => "Rhagfyr", +"Settings" => "Gosodiadau", +"seconds ago" => "eiliad yn ôl", +"1 minute ago" => "1 munud yn ôl", +"{minutes} minutes ago" => "{minutes} munud yn ôl", +"1 hour ago" => "1 awr yn ôl", +"{hours} hours ago" => "{hours} awr yn ôl", +"today" => "heddiw", +"yesterday" => "ddoe", +"{days} days ago" => "{days} diwrnod yn ôl", +"last month" => "mis diwethaf", +"{months} months ago" => "{months} mis yn ôl", +"months ago" => "misoedd yn ôl", +"last year" => "y llynedd", +"years ago" => "blwyddyn yn ôl", +"Ok" => "Iawn", +"Cancel" => "Diddymu", +"Choose" => "Dewisiwch", +"Yes" => "Ie", +"No" => "Na", +"Error" => "Gwall", +"Error while sharing" => "Gwall wrth rannu", +"Error while unsharing" => "Gwall wrth ddad-rannu", +"Error while changing permissions" => "Gwall wrth newid caniatâd", +"Shared with you and the group {group} by {owner}" => "Rhannwyd â chi a'r grŵp {group} gan {owner}", +"Shared with you by {owner}" => "Rhannwyd â chi gan {owner}", +"Share with" => "Rhannu gyda", +"Share with link" => "Dolen ar gyfer rhannu", +"Password protect" => "Diogelu cyfrinair", +"Password" => "Cyfrinair", +"Set expiration date" => "Gosod dyddiad dod i ben", +"Expiration date" => "Dyddiad dod i ben", +"Share via email:" => "Rhannu drwy e-bost:", +"No people found" => "Heb ganfod pobl", +"Resharing is not allowed" => "Does dim hawl ail-rannu", +"Shared in {item} with {user}" => "Rhannwyd yn {item} â {user}", +"Unshare" => "Dad-rannu", +"can edit" => "yn gallu golygu", +"access control" => "rheolaeth mynediad", +"create" => "creu", +"update" => "diweddaru", +"delete" => "dileu", +"share" => "rhannu", +"Password protected" => "Diogelwyd â chyfrinair", +"Error unsetting expiration date" => "Gwall wrth ddad-osod dyddiad dod i ben", +"Error setting expiration date" => "Gwall wrth osod dyddiad dod i ben", +"ownCloud password reset" => "ailosod cyfrinair ownCloud", +"Use the following link to reset your password: {link}" => "Defnyddiwch y ddolen hon i ailosod eich cyfrinair: {link}", +"You will receive a link to reset your password via Email." => "Byddwch yn derbyn dolen drwy e-bost i ailosod eich cyfrinair.", +"Reset email send." => "Ailosod anfon e-bost.", +"Request failed!" => "Methodd y cais!", +"Username" => "Enw defnyddiwr", +"Request reset" => "Gwneud cais i ailosod", +"Your password was reset" => "Ailosodwyd eich cyfrinair", +"To login page" => "I'r dudalen mewngofnodi", +"New password" => "Cyfrinair newydd", +"Reset password" => "Ailosod cyfrinair", +"Personal" => "Personol", +"Users" => "Defnyddwyr", +"Apps" => "Pecynnau", +"Admin" => "Gweinyddu", +"Help" => "Cymorth", +"Access forbidden" => "Mynediad wedi'i wahardd", +"Cloud not found" => "Methwyd canfod cwmwl", +"Edit categories" => "Golygu categorïau", +"Add" => "Ychwanegu", +"Security Warning" => "Rhybudd Diogelwch", +"No secure random number generator is available, please enable the PHP OpenSSL extension." => "Does dim cynhyrchydd rhifau hap diogel ar gael, galluogwch estyniad PHP OpenSSL.", +"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Heb gynhyrchydd rhifau hap diogel efallai y gall ymosodwr ragweld tocynnau ailosod cyfrinair a meddiannu eich cyfrif.", +"Create an admin account" => "Crewch gyfrif gweinyddol", +"Advanced" => "Uwch", +"Data folder" => "Plygell data", +"Configure the database" => "Cyflunio'r gronfa ddata", +"will be used" => "ddefnyddir", +"Database user" => "Defnyddiwr cronfa ddata", +"Database password" => "Cyfrinair cronfa ddata", +"Database name" => "Enw cronfa ddata", +"Database tablespace" => "Tablespace cronfa ddata", +"Database host" => "Gwesteiwr cronfa ddata", +"Finish setup" => "Gorffen sefydlu", +"web services under your control" => "gwasanaethau gwe a reolir gennych", +"Log out" => "Allgofnodi", +"Automatic logon rejected!" => "Gwrthodwyd mewngofnodi awtomatig!", +"If you did not change your password recently, your account may be compromised!" => "Os na wnaethoch chi newid eich cyfrinair yn ddiweddar, gall eich cyfrif fod yn anniogel!", +"Please change your password to secure your account again." => "Newidiwch eich cyfrinair i ddiogleu eich cyfrif eto.", +"Lost your password?" => "Wedi colli'ch cyfrinair?", +"remember" => "cofio", +"Log in" => "Mewngofnodi", +"prev" => "blaenorol", +"next" => "nesaf" +); diff --git a/l10n/af_ZA/core.po b/l10n/af_ZA/core.po index b9ebff745f..0cee119c30 100644 --- a/l10n/af_ZA/core.po +++ b/l10n/af_ZA/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/af_ZA/files.po b/l10n/af_ZA/files.po index fb1d471b2e..46e77a89fa 100644 --- a/l10n/af_ZA/files.po +++ b/l10n/af_ZA/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/af_ZA/files_encryption.po b/l10n/af_ZA/files_encryption.po index 56d117f64f..ad2760165a 100644 --- a/l10n/af_ZA/files_encryption.po +++ b/l10n/af_ZA/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/af_ZA/files_external.po b/l10n/af_ZA/files_external.po index b1a81514a9..c832854e86 100644 --- a/l10n/af_ZA/files_external.po +++ b/l10n/af_ZA/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/af_ZA/files_sharing.po b/l10n/af_ZA/files_sharing.po index a4346ebad6..395e310b0b 100644 --- a/l10n/af_ZA/files_sharing.po +++ b/l10n/af_ZA/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/af_ZA/files_trashbin.po b/l10n/af_ZA/files_trashbin.po index 4519a23f0f..d71f287f72 100644 --- a/l10n/af_ZA/files_trashbin.po +++ b/l10n/af_ZA/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/af_ZA/files_versions.po b/l10n/af_ZA/files_versions.po index b7815be858..b27e22d90a 100644 --- a/l10n/af_ZA/files_versions.po +++ b/l10n/af_ZA/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/af_ZA/lib.po b/l10n/af_ZA/lib.po index 6d9fd425b1..1bcdf367fe 100644 --- a/l10n/af_ZA/lib.po +++ b/l10n/af_ZA/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/af_ZA/settings.po b/l10n/af_ZA/settings.po index bb6e67d13c..83b7447a27 100644 --- a/l10n/af_ZA/settings.po +++ b/l10n/af_ZA/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -116,7 +116,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "" diff --git a/l10n/af_ZA/user_ldap.po b/l10n/af_ZA/user_ldap.po index 3f61a263ae..c08ce22f8b 100644 --- a/l10n/af_ZA/user_ldap.po +++ b/l10n/af_ZA/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/af_ZA/user_webdavauth.po b/l10n/af_ZA/user_webdavauth.po index 74d884a8bb..bb29159478 100644 --- a/l10n/af_ZA/user_webdavauth.po +++ b/l10n/af_ZA/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/core.po b/l10n/ar/core.po index e5064b501d..487be69300 100644 --- a/l10n/ar/core.po +++ b/l10n/ar/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/files.po b/l10n/ar/files.po index d0eb037a69..56662a6ad7 100644 --- a/l10n/ar/files.po +++ b/l10n/ar/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/files_encryption.po b/l10n/ar/files_encryption.po index ca3f1fda57..8ebdd5b0b9 100644 --- a/l10n/ar/files_encryption.po +++ b/l10n/ar/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/files_external.po b/l10n/ar/files_external.po index a9e752fed0..3a0cbd3949 100644 --- a/l10n/ar/files_external.po +++ b/l10n/ar/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/files_sharing.po b/l10n/ar/files_sharing.po index 2652c5fdb6..909d047e14 100644 --- a/l10n/ar/files_sharing.po +++ b/l10n/ar/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/files_trashbin.po b/l10n/ar/files_trashbin.po index c4b191857f..be9ba85169 100644 --- a/l10n/ar/files_trashbin.po +++ b/l10n/ar/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/files_versions.po b/l10n/ar/files_versions.po index 47c00fd32d..0ef6f3e755 100644 --- a/l10n/ar/files_versions.po +++ b/l10n/ar/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/lib.po b/l10n/ar/lib.po index 9fb10d0636..47401163df 100644 --- a/l10n/ar/lib.po +++ b/l10n/ar/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index 9e1ddcce83..125a752041 100644 --- a/l10n/ar/settings.po +++ b/l10n/ar/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -121,7 +121,7 @@ msgstr "حصل خطأ أثناء تحديث التطبيق" msgid "Updated" msgstr "تم التحديث بنجاح" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "حفظ" diff --git a/l10n/ar/user_ldap.po b/l10n/ar/user_ldap.po index 1c8adac39b..71c1e62994 100644 --- a/l10n/ar/user_ldap.po +++ b/l10n/ar/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/user_webdavauth.po b/l10n/ar/user_webdavauth.po index 72d0d26fea..7defa1d4b0 100644 --- a/l10n/ar/user_webdavauth.po +++ b/l10n/ar/user_webdavauth.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/be/core.po b/l10n/be/core.po index fa6af285a8..daa1be716a 100644 --- a/l10n/be/core.po +++ b/l10n/be/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/be/files.po b/l10n/be/files.po index b29349ac81..ec67242474 100644 --- a/l10n/be/files.po +++ b/l10n/be/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/be/files_encryption.po b/l10n/be/files_encryption.po index a9b0bfec81..f0897fc482 100644 --- a/l10n/be/files_encryption.po +++ b/l10n/be/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/be/files_external.po b/l10n/be/files_external.po index dda0365cad..05c52d2475 100644 --- a/l10n/be/files_external.po +++ b/l10n/be/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/be/files_sharing.po b/l10n/be/files_sharing.po index efb3d2fd91..2fb3fa7b5c 100644 --- a/l10n/be/files_sharing.po +++ b/l10n/be/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/be/files_trashbin.po b/l10n/be/files_trashbin.po index 2deeee0f87..cd40cf486a 100644 --- a/l10n/be/files_trashbin.po +++ b/l10n/be/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/be/files_versions.po b/l10n/be/files_versions.po index 42178f677d..a04f5ae5a2 100644 --- a/l10n/be/files_versions.po +++ b/l10n/be/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/be/lib.po b/l10n/be/lib.po index 989a95417e..3a15991192 100644 --- a/l10n/be/lib.po +++ b/l10n/be/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/be/settings.po b/l10n/be/settings.po index 5446ea05fe..cf37559613 100644 --- a/l10n/be/settings.po +++ b/l10n/be/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" @@ -116,7 +116,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "" diff --git a/l10n/be/user_ldap.po b/l10n/be/user_ldap.po index 97fbac3107..9ff31d5c45 100644 --- a/l10n/be/user_ldap.po +++ b/l10n/be/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/be/user_webdavauth.po b/l10n/be/user_webdavauth.po index b0ef05091d..9e0304b10b 100644 --- a/l10n/be/user_webdavauth.po +++ b/l10n/be/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index df29a3b97c..73f65ac143 100644 --- a/l10n/bg_BG/core.po +++ b/l10n/bg_BG/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \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 250844d1fb..1e12a345fe 100644 --- a/l10n/bg_BG/files.po +++ b/l10n/bg_BG/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \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 ac98af1b67..5f2bd2b9f5 100644 --- a/l10n/bg_BG/files_encryption.po +++ b/l10n/bg_BG/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/bg_BG/files_external.po index d2292c3a60..0e80e601f2 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \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 b34ed53ec9..18f3a9f6d7 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \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 937d1ebd8a..cf61ec83ca 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \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 6ddabfb253..b88246549b 100644 --- a/l10n/bg_BG/files_versions.po +++ b/l10n/bg_BG/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \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/lib.po b/l10n/bg_BG/lib.po index 2c6b87cd76..ae1ec0aeea 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \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 9a7e81c827..c6d607a17e 100644 --- a/l10n/bg_BG/settings.po +++ b/l10n/bg_BG/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -119,7 +119,7 @@ msgstr "" msgid "Updated" msgstr "Обновено" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Записване..." diff --git a/l10n/bg_BG/user_ldap.po b/l10n/bg_BG/user_ldap.po index 090b9a9113..8ec4f3ffdb 100644 --- a/l10n/bg_BG/user_ldap.po +++ b/l10n/bg_BG/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \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_webdavauth.po b/l10n/bg_BG/user_webdavauth.po index a237daa76e..606fb7fe9c 100644 --- a/l10n/bg_BG/user_webdavauth.po +++ b/l10n/bg_BG/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \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_BD/core.po b/l10n/bn_BD/core.po index 12dcdc5e3b..47cccfcd63 100644 --- a/l10n/bn_BD/core.po +++ b/l10n/bn_BD/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/files.po b/l10n/bn_BD/files.po index 5657516e13..9a39dab1c1 100644 --- a/l10n/bn_BD/files.po +++ b/l10n/bn_BD/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/files_encryption.po b/l10n/bn_BD/files_encryption.po index 1aee47b45e..0bcc04a179 100644 --- a/l10n/bn_BD/files_encryption.po +++ b/l10n/bn_BD/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/files_external.po b/l10n/bn_BD/files_external.po index 352cfa4191..a277faf064 100644 --- a/l10n/bn_BD/files_external.po +++ b/l10n/bn_BD/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/files_sharing.po b/l10n/bn_BD/files_sharing.po index 4e14b78c0f..00d132cd17 100644 --- a/l10n/bn_BD/files_sharing.po +++ b/l10n/bn_BD/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/files_trashbin.po b/l10n/bn_BD/files_trashbin.po index 95ea7946c4..5327ace142 100644 --- a/l10n/bn_BD/files_trashbin.po +++ b/l10n/bn_BD/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/files_versions.po b/l10n/bn_BD/files_versions.po index 062b960509..72d49d3c8c 100644 --- a/l10n/bn_BD/files_versions.po +++ b/l10n/bn_BD/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/lib.po b/l10n/bn_BD/lib.po index 2d465cdd0d..a46f18de27 100644 --- a/l10n/bn_BD/lib.po +++ b/l10n/bn_BD/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/settings.po b/l10n/bn_BD/settings.po index 5512ff0009..f70b3f4d8d 100644 --- a/l10n/bn_BD/settings.po +++ b/l10n/bn_BD/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -117,7 +117,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "সংরক্ষণ করা হচ্ছে.." diff --git a/l10n/bn_BD/user_ldap.po b/l10n/bn_BD/user_ldap.po index 5c9f48d870..34a3a9d16c 100644 --- a/l10n/bn_BD/user_ldap.po +++ b/l10n/bn_BD/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/user_webdavauth.po b/l10n/bn_BD/user_webdavauth.po index cdc95646c2..e5c329e580 100644 --- a/l10n/bn_BD/user_webdavauth.po +++ b/l10n/bn_BD/user_webdavauth.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/core.po b/l10n/ca/core.po index aef1d1ecfe..a619724318 100644 --- a/l10n/ca/core.po +++ b/l10n/ca/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files.po b/l10n/ca/files.po index cd41e26dfe..ae6109e30f 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files_encryption.po b/l10n/ca/files_encryption.po index 239900b073..951708dd52 100644 --- a/l10n/ca/files_encryption.po +++ b/l10n/ca/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files_external.po b/l10n/ca/files_external.po index 90d62bfd1c..bd05bbeecc 100644 --- a/l10n/ca/files_external.po +++ b/l10n/ca/files_external.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files_sharing.po b/l10n/ca/files_sharing.po index cc9c28a806..d4394d00f7 100644 --- a/l10n/ca/files_sharing.po +++ b/l10n/ca/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files_trashbin.po b/l10n/ca/files_trashbin.po index 33d6a484fa..e06aadb4b6 100644 --- a/l10n/ca/files_trashbin.po +++ b/l10n/ca/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files_versions.po b/l10n/ca/files_versions.po index 6e6a97f897..9b325d0966 100644 --- a/l10n/ca/files_versions.po +++ b/l10n/ca/files_versions.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/lib.po b/l10n/ca/lib.po index 7b9fbee414..13628a3af4 100644 --- a/l10n/ca/lib.po +++ b/l10n/ca/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index 450e44b5ea..57ef354d7c 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -122,7 +122,7 @@ msgstr "Error en actualitzar l'aplicació" msgid "Updated" msgstr "Actualitzada" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "S'està desant..." diff --git a/l10n/ca/user_ldap.po b/l10n/ca/user_ldap.po index 703a2caaf5..bf2d7adf14 100644 --- a/l10n/ca/user_ldap.po +++ b/l10n/ca/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/user_webdavauth.po b/l10n/ca/user_webdavauth.po index 4c7bf62ffe..bcde4299fd 100644 --- a/l10n/ca/user_webdavauth.po +++ b/l10n/ca/user_webdavauth.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index 8b85d622a8..d9d28259e3 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index f94603ad39..d5d74b7b83 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/files_encryption.po b/l10n/cs_CZ/files_encryption.po index ac3415a072..cf291239f3 100644 --- a/l10n/cs_CZ/files_encryption.po +++ b/l10n/cs_CZ/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/files_external.po b/l10n/cs_CZ/files_external.po index 9ad584ba1f..fe3dea1568 100644 --- a/l10n/cs_CZ/files_external.po +++ b/l10n/cs_CZ/files_external.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/files_sharing.po b/l10n/cs_CZ/files_sharing.po index 33206ef2bd..c68599b2ae 100644 --- a/l10n/cs_CZ/files_sharing.po +++ b/l10n/cs_CZ/files_sharing.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/files_trashbin.po b/l10n/cs_CZ/files_trashbin.po index 305933ee01..48adf5d966 100644 --- a/l10n/cs_CZ/files_trashbin.po +++ b/l10n/cs_CZ/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/files_versions.po b/l10n/cs_CZ/files_versions.po index 3b0f8c58b4..1425b50698 100644 --- a/l10n/cs_CZ/files_versions.po +++ b/l10n/cs_CZ/files_versions.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/lib.po b/l10n/cs_CZ/lib.po index 17804f61f9..c9a543b6ec 100644 --- a/l10n/cs_CZ/lib.po +++ b/l10n/cs_CZ/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index e70ffa9107..7cf113bc59 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -122,7 +122,7 @@ msgstr "Chyba při aktualizaci aplikace" msgid "Updated" msgstr "Aktualizováno" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Ukládám..." diff --git a/l10n/cs_CZ/user_ldap.po b/l10n/cs_CZ/user_ldap.po index 12fe24c77a..228f59ec1c 100644 --- a/l10n/cs_CZ/user_ldap.po +++ b/l10n/cs_CZ/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/user_webdavauth.po b/l10n/cs_CZ/user_webdavauth.po index f2e2d7c56c..a7466ca6bf 100644 --- a/l10n/cs_CZ/user_webdavauth.po +++ b/l10n/cs_CZ/user_webdavauth.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/core.po b/l10n/cy_GB/core.po new file mode 100644 index 0000000000..d72aedca2e --- /dev/null +++ b/l10n/cy_GB/core.po @@ -0,0 +1,606 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Owen Llywelyn , 2013. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cy_GB\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" + +#: ajax/share.php:97 +#, php-format +msgid "User %s shared a file with you" +msgstr "" + +#: ajax/share.php:99 +#, php-format +msgid "User %s shared a folder with you" +msgstr "" + +#: ajax/share.php:101 +#, php-format +msgid "" +"User %s shared the file \"%s\" with you. It is available for download here: " +"%s" +msgstr "" + +#: ajax/share.php:104 +#, php-format +msgid "" +"User %s shared the folder \"%s\" with you. It is available for download " +"here: %s" +msgstr "" + +#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 +msgid "Category type not provided." +msgstr "Math o gategori heb ei ddarparu." + +#: ajax/vcategories/add.php:30 +msgid "No category to add?" +msgstr "Dim categori i'w ychwanegu?" + +#: ajax/vcategories/add.php:37 +#, php-format +msgid "This category already exists: %s" +msgstr "" + +#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 +#: ajax/vcategories/favorites.php:24 +#: ajax/vcategories/removeFromFavorites.php:26 +msgid "Object type not provided." +msgstr "Math o wrthrych heb ei ddarparu." + +#: ajax/vcategories/addToFavorites.php:30 +#: ajax/vcategories/removeFromFavorites.php:30 +#, php-format +msgid "%s ID not provided." +msgstr "%s ID heb ei ddarparu." + +#: ajax/vcategories/addToFavorites.php:35 +#, php-format +msgid "Error adding %s to favorites." +msgstr "Gwall wrth ychwanegu %s at ffefrynnau." + +#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 +msgid "No categories selected for deletion." +msgstr "Ni ddewiswyd categorïau i'w dileu." + +#: ajax/vcategories/removeFromFavorites.php:35 +#, php-format +msgid "Error removing %s from favorites." +msgstr "Gwall wrth dynnu %s o ffefrynnau." + +#: js/config.php:34 +msgid "Sunday" +msgstr "Sul" + +#: js/config.php:35 +msgid "Monday" +msgstr "Llun" + +#: js/config.php:36 +msgid "Tuesday" +msgstr "Mawrth" + +#: js/config.php:37 +msgid "Wednesday" +msgstr "Mercher" + +#: js/config.php:38 +msgid "Thursday" +msgstr "Iau" + +#: js/config.php:39 +msgid "Friday" +msgstr "Gwener" + +#: js/config.php:40 +msgid "Saturday" +msgstr "Sadwrn" + +#: js/config.php:45 +msgid "January" +msgstr "Ionawr" + +#: js/config.php:46 +msgid "February" +msgstr "Chwefror" + +#: js/config.php:47 +msgid "March" +msgstr "Mawrth" + +#: js/config.php:48 +msgid "April" +msgstr "Ebrill" + +#: js/config.php:49 +msgid "May" +msgstr "Mai" + +#: js/config.php:50 +msgid "June" +msgstr "Mehefin" + +#: js/config.php:51 +msgid "July" +msgstr "Gorffennaf" + +#: js/config.php:52 +msgid "August" +msgstr "Awst" + +#: js/config.php:53 +msgid "September" +msgstr "Medi" + +#: js/config.php:54 +msgid "October" +msgstr "Hydref" + +#: js/config.php:55 +msgid "November" +msgstr "Tachwedd" + +#: js/config.php:56 +msgid "December" +msgstr "Rhagfyr" + +#: js/js.js:286 +msgid "Settings" +msgstr "Gosodiadau" + +#: js/js.js:718 +msgid "seconds ago" +msgstr "eiliad yn ôl" + +#: js/js.js:719 +msgid "1 minute ago" +msgstr "1 munud yn ôl" + +#: js/js.js:720 +msgid "{minutes} minutes ago" +msgstr "{minutes} munud yn ôl" + +#: js/js.js:721 +msgid "1 hour ago" +msgstr "1 awr yn ôl" + +#: js/js.js:722 +msgid "{hours} hours ago" +msgstr "{hours} awr yn ôl" + +#: js/js.js:723 +msgid "today" +msgstr "heddiw" + +#: js/js.js:724 +msgid "yesterday" +msgstr "ddoe" + +#: js/js.js:725 +msgid "{days} days ago" +msgstr "{days} diwrnod yn ôl" + +#: js/js.js:726 +msgid "last month" +msgstr "mis diwethaf" + +#: js/js.js:727 +msgid "{months} months ago" +msgstr "{months} mis yn ôl" + +#: js/js.js:728 +msgid "months ago" +msgstr "misoedd yn ôl" + +#: js/js.js:729 +msgid "last year" +msgstr "y llynedd" + +#: js/js.js:730 +msgid "years ago" +msgstr "blwyddyn yn ôl" + +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Iawn" + +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 +msgid "Cancel" +msgstr "Diddymu" + +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Dewisiwch" + +#: js/oc-dialogs.js:215 +msgid "Yes" +msgstr "Ie" + +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Na" + +#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 +#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 +msgid "The object type is not specified." +msgstr "" + +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 +msgid "Error" +msgstr "Gwall" + +#: js/oc-vcategories.js:179 +msgid "The app name is not specified." +msgstr "" + +#: js/oc-vcategories.js:194 +msgid "The required file {file} is not installed!" +msgstr "" + +#: js/share.js:30 js/share.js:45 js/share.js:87 +msgid "Shared" +msgstr "" + +#: js/share.js:90 +msgid "Share" +msgstr "" + +#: js/share.js:125 js/share.js:617 +msgid "Error while sharing" +msgstr "Gwall wrth rannu" + +#: js/share.js:136 +msgid "Error while unsharing" +msgstr "Gwall wrth ddad-rannu" + +#: js/share.js:143 +msgid "Error while changing permissions" +msgstr "Gwall wrth newid caniatâd" + +#: js/share.js:152 +msgid "Shared with you and the group {group} by {owner}" +msgstr "Rhannwyd â chi a'r grŵp {group} gan {owner}" + +#: js/share.js:154 +msgid "Shared with you by {owner}" +msgstr "Rhannwyd â chi gan {owner}" + +#: js/share.js:159 +msgid "Share with" +msgstr "Rhannu gyda" + +#: js/share.js:164 +msgid "Share with link" +msgstr "Dolen ar gyfer rhannu" + +#: js/share.js:167 +msgid "Password protect" +msgstr "Diogelu cyfrinair" + +#: js/share.js:169 templates/installation.php:54 templates/login.php:35 +msgid "Password" +msgstr "Cyfrinair" + +#: js/share.js:173 +msgid "Email link to person" +msgstr "" + +#: js/share.js:174 +msgid "Send" +msgstr "" + +#: js/share.js:178 +msgid "Set expiration date" +msgstr "Gosod dyddiad dod i ben" + +#: js/share.js:179 +msgid "Expiration date" +msgstr "Dyddiad dod i ben" + +#: js/share.js:211 +msgid "Share via email:" +msgstr "Rhannu drwy e-bost:" + +#: js/share.js:213 +msgid "No people found" +msgstr "Heb ganfod pobl" + +#: js/share.js:251 +msgid "Resharing is not allowed" +msgstr "Does dim hawl ail-rannu" + +#: js/share.js:287 +msgid "Shared in {item} with {user}" +msgstr "Rhannwyd yn {item} â {user}" + +#: js/share.js:308 +msgid "Unshare" +msgstr "Dad-rannu" + +#: js/share.js:320 +msgid "can edit" +msgstr "yn gallu golygu" + +#: js/share.js:322 +msgid "access control" +msgstr "rheolaeth mynediad" + +#: js/share.js:325 +msgid "create" +msgstr "creu" + +#: js/share.js:328 +msgid "update" +msgstr "diweddaru" + +#: js/share.js:331 +msgid "delete" +msgstr "dileu" + +#: js/share.js:334 +msgid "share" +msgstr "rhannu" + +#: js/share.js:368 js/share.js:564 +msgid "Password protected" +msgstr "Diogelwyd â chyfrinair" + +#: js/share.js:577 +msgid "Error unsetting expiration date" +msgstr "Gwall wrth ddad-osod dyddiad dod i ben" + +#: js/share.js:589 +msgid "Error setting expiration date" +msgstr "Gwall wrth osod dyddiad dod i ben" + +#: js/share.js:604 +msgid "Sending ..." +msgstr "" + +#: js/share.js:615 +msgid "Email sent" +msgstr "" + +#: js/update.js:14 +msgid "" +"The update was unsuccessful. Please report this issue to the ownCloud " +"community." +msgstr "" + +#: js/update.js:18 +msgid "The update was successful. Redirecting you to ownCloud now." +msgstr "" + +#: lostpassword/controller.php:48 +msgid "ownCloud password reset" +msgstr "ailosod cyfrinair ownCloud" + +#: lostpassword/templates/email.php:2 +msgid "Use the following link to reset your password: {link}" +msgstr "Defnyddiwch y ddolen hon i ailosod eich cyfrinair: {link}" + +#: lostpassword/templates/lostpassword.php:3 +msgid "You will receive a link to reset your password via Email." +msgstr "Byddwch yn derbyn dolen drwy e-bost i ailosod eich cyfrinair." + +#: lostpassword/templates/lostpassword.php:5 +msgid "Reset email send." +msgstr "Ailosod anfon e-bost." + +#: lostpassword/templates/lostpassword.php:8 +msgid "Request failed!" +msgstr "Methodd y cais!" + +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 +#: templates/login.php:28 +msgid "Username" +msgstr "Enw defnyddiwr" + +#: lostpassword/templates/lostpassword.php:14 +msgid "Request reset" +msgstr "Gwneud cais i ailosod" + +#: lostpassword/templates/resetpassword.php:4 +msgid "Your password was reset" +msgstr "Ailosodwyd eich cyfrinair" + +#: lostpassword/templates/resetpassword.php:5 +msgid "To login page" +msgstr "I'r dudalen mewngofnodi" + +#: lostpassword/templates/resetpassword.php:8 +msgid "New password" +msgstr "Cyfrinair newydd" + +#: lostpassword/templates/resetpassword.php:11 +msgid "Reset password" +msgstr "Ailosod cyfrinair" + +#: strings.php:5 +msgid "Personal" +msgstr "Personol" + +#: strings.php:6 +msgid "Users" +msgstr "Defnyddwyr" + +#: strings.php:7 +msgid "Apps" +msgstr "Pecynnau" + +#: strings.php:8 +msgid "Admin" +msgstr "Gweinyddu" + +#: strings.php:9 +msgid "Help" +msgstr "Cymorth" + +#: templates/403.php:12 +msgid "Access forbidden" +msgstr "Mynediad wedi'i wahardd" + +#: templates/404.php:12 +msgid "Cloud not found" +msgstr "Methwyd canfod cwmwl" + +#: templates/edit_categories_dialog.php:4 +msgid "Edit categories" +msgstr "Golygu categorïau" + +#: templates/edit_categories_dialog.php:16 +msgid "Add" +msgstr "Ychwanegu" + +#: templates/installation.php:24 templates/installation.php:31 +#: templates/installation.php:38 +msgid "Security Warning" +msgstr "Rhybudd Diogelwch" + +#: templates/installation.php:25 +msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" +msgstr "" + +#: templates/installation.php:26 +msgid "Please update your PHP installation to use ownCloud securely." +msgstr "" + +#: templates/installation.php:32 +msgid "" +"No secure random number generator is available, please enable the PHP " +"OpenSSL extension." +msgstr "Does dim cynhyrchydd rhifau hap diogel ar gael, galluogwch estyniad PHP OpenSSL." + +#: templates/installation.php:33 +msgid "" +"Without a secure random number generator an attacker may be able to predict " +"password reset tokens and take over your account." +msgstr "Heb gynhyrchydd rhifau hap diogel efallai y gall ymosodwr ragweld tocynnau ailosod cyfrinair a meddiannu eich cyfrif." + +#: templates/installation.php:39 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + +#: templates/installation.php:40 +msgid "" +"For information how to properly configure your server, please see the documentation." +msgstr "" + +#: templates/installation.php:44 +msgid "Create an admin account" +msgstr "Crewch gyfrif gweinyddol" + +#: templates/installation.php:62 +msgid "Advanced" +msgstr "Uwch" + +#: templates/installation.php:64 +msgid "Data folder" +msgstr "Plygell data" + +#: templates/installation.php:73 +msgid "Configure the database" +msgstr "Cyflunio'r gronfa ddata" + +#: templates/installation.php:78 templates/installation.php:90 +#: templates/installation.php:101 templates/installation.php:112 +#: templates/installation.php:124 +msgid "will be used" +msgstr "ddefnyddir" + +#: templates/installation.php:136 +msgid "Database user" +msgstr "Defnyddiwr cronfa ddata" + +#: templates/installation.php:143 +msgid "Database password" +msgstr "Cyfrinair cronfa ddata" + +#: templates/installation.php:148 +msgid "Database name" +msgstr "Enw cronfa ddata" + +#: templates/installation.php:158 +msgid "Database tablespace" +msgstr "Tablespace cronfa ddata" + +#: templates/installation.php:165 +msgid "Database host" +msgstr "Gwesteiwr cronfa ddata" + +#: templates/installation.php:171 +msgid "Finish setup" +msgstr "Gorffen sefydlu" + +#: templates/layout.guest.php:40 +msgid "web services under your control" +msgstr "gwasanaethau gwe a reolir gennych" + +#: templates/layout.user.php:58 +msgid "Log out" +msgstr "Allgofnodi" + +#: templates/login.php:10 +msgid "Automatic logon rejected!" +msgstr "Gwrthodwyd mewngofnodi awtomatig!" + +#: templates/login.php:11 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "Os na wnaethoch chi newid eich cyfrinair yn ddiweddar, gall eich cyfrif fod yn anniogel!" + +#: templates/login.php:13 +msgid "Please change your password to secure your account again." +msgstr "Newidiwch eich cyfrinair i ddiogleu eich cyfrif eto." + +#: templates/login.php:19 +msgid "Lost your password?" +msgstr "Wedi colli'ch cyfrinair?" + +#: templates/login.php:41 +msgid "remember" +msgstr "cofio" + +#: templates/login.php:43 +msgid "Log in" +msgstr "Mewngofnodi" + +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + +#: templates/part.pagenavi.php:3 +msgid "prev" +msgstr "blaenorol" + +#: templates/part.pagenavi.php:20 +msgid "next" +msgstr "nesaf" + +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" diff --git a/l10n/cy_GB/files.po b/l10n/cy_GB/files.po new file mode 100644 index 0000000000..d631320c9e --- /dev/null +++ b/l10n/cy_GB/files.po @@ -0,0 +1,314 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cy_GB\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" + +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:19 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:26 +msgid "There is no error, the file uploaded with success" +msgstr "" + +#: ajax/upload.php:27 +msgid "" +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " +msgstr "" + +#: ajax/upload.php:29 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "" + +#: ajax/upload.php:30 +msgid "The uploaded file was only partially uploaded" +msgstr "" + +#: ajax/upload.php:31 +msgid "No file was uploaded" +msgstr "" + +#: ajax/upload.php:32 +msgid "Missing a temporary folder" +msgstr "" + +#: ajax/upload.php:33 +msgid "Failed to write to disk" +msgstr "" + +#: ajax/upload.php:51 +msgid "Not enough storage available" +msgstr "" + +#: ajax/upload.php:83 +msgid "Invalid directory." +msgstr "" + +#: appinfo/app.php:12 +msgid "Files" +msgstr "" + +#: js/fileactions.js:125 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 +msgid "Delete" +msgstr "" + +#: js/fileactions.js:193 +msgid "Rename" +msgstr "" + +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 +msgid "Pending" +msgstr "" + +#: js/filelist.js:252 js/filelist.js:254 +msgid "{new_name} already exists" +msgstr "" + +#: js/filelist.js:252 js/filelist.js:254 +msgid "replace" +msgstr "" + +#: js/filelist.js:252 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:252 js/filelist.js:254 +msgid "cancel" +msgstr "" + +#: js/filelist.js:299 +msgid "replaced {new_name} with {old_name}" +msgstr "" + +#: js/filelist.js:299 +msgid "undo" +msgstr "" + +#: js/filelist.js:324 +msgid "perform delete operation" +msgstr "" + +#: js/filelist.js:406 +msgid "1 file uploading" +msgstr "" + +#: js/filelist.js:409 js/filelist.js:463 +msgid "files uploading" +msgstr "" + +#: js/files.js:52 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:56 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:64 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: js/files.js:78 +msgid "Your storage is full, files can not be updated or synced anymore!" +msgstr "" + +#: js/files.js:82 +msgid "Your storage is almost full ({usedSpacePercent}%)" +msgstr "" + +#: js/files.js:226 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" + +#: js/files.js:259 +msgid "Unable to upload your file as it is a directory or has 0 bytes" +msgstr "" + +#: js/files.js:272 +msgid "Not enough space available" +msgstr "" + +#: js/files.js:312 +msgid "Upload cancelled." +msgstr "" + +#: js/files.js:408 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/files.js:481 +msgid "URL cannot be empty." +msgstr "" + +#: js/files.js:486 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +msgid "Error" +msgstr "Gwall" + +#: js/files.js:872 templates/index.php:70 +msgid "Name" +msgstr "" + +#: js/files.js:873 templates/index.php:81 +msgid "Size" +msgstr "" + +#: js/files.js:874 templates/index.php:83 +msgid "Modified" +msgstr "" + +#: js/files.js:893 +msgid "1 folder" +msgstr "" + +#: js/files.js:895 +msgid "{count} folders" +msgstr "" + +#: js/files.js:903 +msgid "1 file" +msgstr "" + +#: js/files.js:905 +msgid "{count} files" +msgstr "" + +#: lib/helper.php:11 templates/index.php:18 +msgid "Upload" +msgstr "" + +#: templates/admin.php:5 +msgid "File handling" +msgstr "" + +#: templates/admin.php:7 +msgid "Maximum upload size" +msgstr "" + +#: templates/admin.php:10 +msgid "max. possible: " +msgstr "" + +#: templates/admin.php:15 +msgid "Needed for multi-file and folder downloads." +msgstr "" + +#: templates/admin.php:17 +msgid "Enable ZIP-download" +msgstr "" + +#: templates/admin.php:20 +msgid "0 is unlimited" +msgstr "" + +#: templates/admin.php:22 +msgid "Maximum input size for ZIP files" +msgstr "" + +#: templates/admin.php:26 +msgid "Save" +msgstr "" + +#: templates/index.php:7 +msgid "New" +msgstr "" + +#: templates/index.php:10 +msgid "Text file" +msgstr "" + +#: templates/index.php:12 +msgid "Folder" +msgstr "" + +#: templates/index.php:14 +msgid "From link" +msgstr "" + +#: templates/index.php:42 +msgid "Deleted files" +msgstr "" + +#: templates/index.php:48 +msgid "Cancel upload" +msgstr "" + +#: templates/index.php:55 +msgid "You don’t have write permissions here." +msgstr "" + +#: templates/index.php:62 +msgid "Nothing in here. Upload something!" +msgstr "" + +#: templates/index.php:76 +msgid "Download" +msgstr "" + +#: templates/index.php:88 templates/index.php:89 +msgid "Unshare" +msgstr "Dad-rannu" + +#: templates/index.php:108 +msgid "Upload too large" +msgstr "" + +#: templates/index.php:110 +msgid "" +"The files you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "" + +#: templates/index.php:115 +msgid "Files are being scanned, please wait." +msgstr "" + +#: templates/index.php:118 +msgid "Current scanning" +msgstr "" + +#: templates/upgrade.php:2 +msgid "Upgrading filesystem cache..." +msgstr "" diff --git a/l10n/cy_GB/files_encryption.po b/l10n/cy_GB/files_encryption.po new file mode 100644 index 0000000000..6ffe72043a --- /dev/null +++ b/l10n/cy_GB/files_encryption.po @@ -0,0 +1,38 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cy_GB\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" + +#: templates/settings-personal.php:4 templates/settings.php:5 +msgid "Encryption" +msgstr "" + +#: templates/settings-personal.php:7 +msgid "File encryption is enabled." +msgstr "" + +#: templates/settings-personal.php:11 +msgid "The following file types will not be encrypted:" +msgstr "" + +#: templates/settings.php:7 +msgid "Exclude the following file types from encryption:" +msgstr "" + +#: templates/settings.php:12 +msgid "None" +msgstr "" diff --git a/l10n/cy_GB/files_external.po b/l10n/cy_GB/files_external.po new file mode 100644 index 0000000000..e6060e38d5 --- /dev/null +++ b/l10n/cy_GB/files_external.po @@ -0,0 +1,116 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cy_GB\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" + +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +msgid "Access granted" +msgstr "" + +#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +msgid "Error configuring Dropbox storage" +msgstr "" + +#: js/dropbox.js:65 js/google.js:66 +msgid "Grant access" +msgstr "" + +#: js/dropbox.js:101 +msgid "Please provide a valid Dropbox app key and secret." +msgstr "" + +#: js/google.js:36 js/google.js:93 +msgid "Error configuring Google Drive storage" +msgstr "" + +#: lib/config.php:424 +msgid "" +"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " +"is not possible. Please ask your system administrator to install it." +msgstr "" + +#: lib/config.php:427 +msgid "" +"Warning: The FTP support in PHP is not enabled or installed. Mounting" +" of FTP shares is not possible. Please ask your system administrator to " +"install it." +msgstr "" + +#: templates/settings.php:3 +msgid "External Storage" +msgstr "" + +#: templates/settings.php:9 templates/settings.php:28 +msgid "Folder name" +msgstr "" + +#: templates/settings.php:10 +msgid "External storage" +msgstr "" + +#: templates/settings.php:11 +msgid "Configuration" +msgstr "" + +#: templates/settings.php:12 +msgid "Options" +msgstr "" + +#: templates/settings.php:13 +msgid "Applicable" +msgstr "" + +#: templates/settings.php:33 +msgid "Add storage" +msgstr "" + +#: templates/settings.php:90 +msgid "None set" +msgstr "" + +#: templates/settings.php:91 +msgid "All Users" +msgstr "" + +#: templates/settings.php:92 +msgid "Groups" +msgstr "" + +#: templates/settings.php:100 +msgid "Users" +msgstr "Defnyddwyr" + +#: templates/settings.php:113 templates/settings.php:114 +#: templates/settings.php:149 templates/settings.php:150 +msgid "Delete" +msgstr "" + +#: templates/settings.php:129 +msgid "Enable User External Storage" +msgstr "" + +#: templates/settings.php:130 +msgid "Allow users to mount their own external storage" +msgstr "" + +#: templates/settings.php:141 +msgid "SSL root certificates" +msgstr "" + +#: templates/settings.php:159 +msgid "Import Root Certificate" +msgstr "" diff --git a/l10n/cy_GB/files_sharing.po b/l10n/cy_GB/files_sharing.po new file mode 100644 index 0000000000..42530fe4a7 --- /dev/null +++ b/l10n/cy_GB/files_sharing.po @@ -0,0 +1,48 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cy_GB\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" + +#: templates/authenticate.php:4 +msgid "Password" +msgstr "Cyfrinair" + +#: templates/authenticate.php:6 +msgid "Submit" +msgstr "" + +#: templates/public.php:10 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "" + +#: templates/public.php:13 +#, php-format +msgid "%s shared the file %s with you" +msgstr "" + +#: templates/public.php:19 templates/public.php:43 +msgid "Download" +msgstr "" + +#: templates/public.php:40 +msgid "No preview available for" +msgstr "" + +#: templates/public.php:50 +msgid "web services under your control" +msgstr "gwasanaethau gwe a reolir gennych" diff --git a/l10n/cy_GB/files_trashbin.po b/l10n/cy_GB/files_trashbin.po new file mode 100644 index 0000000000..22b562fc3c --- /dev/null +++ b/l10n/cy_GB/files_trashbin.po @@ -0,0 +1,84 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cy_GB\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" + +#: ajax/delete.php:42 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:42 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/trash.js:7 js/trash.js:96 +msgid "perform restore operation" +msgstr "" + +#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +msgid "Error" +msgstr "Gwall" + +#: js/trash.js:34 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:121 +msgid "Delete permanently" +msgstr "" + +#: js/trash.js:174 templates/index.php:17 +msgid "Name" +msgstr "" + +#: js/trash.js:175 templates/index.php:27 +msgid "Deleted" +msgstr "" + +#: js/trash.js:184 +msgid "1 folder" +msgstr "" + +#: js/trash.js:186 +msgid "{count} folders" +msgstr "" + +#: js/trash.js:194 +msgid "1 file" +msgstr "" + +#: js/trash.js:196 +msgid "{count} files" +msgstr "" + +#: templates/index.php:9 +msgid "Nothing in here. Your trash bin is empty!" +msgstr "" + +#: templates/index.php:20 templates/index.php:22 +msgid "Restore" +msgstr "" + +#: templates/index.php:30 templates/index.php:31 +msgid "Delete" +msgstr "" + +#: templates/part.breadcrumb.php:9 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/cy_GB/files_versions.po b/l10n/cy_GB/files_versions.po new file mode 100644 index 0000000000..0f19e914bb --- /dev/null +++ b/l10n/cy_GB/files_versions.po @@ -0,0 +1,57 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cy_GB\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" + +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:69 +msgid "No old versions available" +msgstr "" + +#: history.php:74 +msgid "No path specified" +msgstr "" + +#: js/versions.js:6 +msgid "Versions" +msgstr "" + +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" diff --git a/l10n/cy_GB/lib.po b/l10n/cy_GB/lib.po new file mode 100644 index 0000000000..0b2d290f87 --- /dev/null +++ b/l10n/cy_GB/lib.po @@ -0,0 +1,258 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cy_GB\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" + +#: app.php:349 +msgid "Help" +msgstr "Cymorth" + +#: app.php:362 +msgid "Personal" +msgstr "Personol" + +#: app.php:373 +msgid "Settings" +msgstr "Gosodiadau" + +#: app.php:385 +msgid "Users" +msgstr "Defnyddwyr" + +#: app.php:398 +msgid "Apps" +msgstr "Pecynnau" + +#: app.php:406 +msgid "Admin" +msgstr "Gweinyddu" + +#: files.php:209 +msgid "ZIP download is turned off." +msgstr "" + +#: files.php:210 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: files.php:211 files.php:244 +msgid "Back to Files" +msgstr "" + +#: files.php:241 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + +#: json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: json.php:39 json.php:62 json.php:73 +msgid "Authentication error" +msgstr "" + +#: json.php:51 +msgid "Token expired. Please reload page." +msgstr "" + +#: search/provider/file.php:17 search/provider/file.php:35 +msgid "Files" +msgstr "" + +#: search/provider/file.php:26 search/provider/file.php:33 +msgid "Text" +msgstr "" + +#: search/provider/file.php:29 +msgid "Images" +msgstr "" + +#: setup.php:34 +msgid "Set an admin username." +msgstr "" + +#: setup.php:37 +msgid "Set an admin password." +msgstr "" + +#: setup.php:40 +msgid "Specify a data folder." +msgstr "" + +#: setup.php:55 +#, php-format +msgid "%s enter the database username." +msgstr "" + +#: setup.php:58 +#, php-format +msgid "%s enter the database name." +msgstr "" + +#: setup.php:61 +#, php-format +msgid "%s you may not use dots in the database name" +msgstr "" + +#: setup.php:64 +#, php-format +msgid "%s set the database host." +msgstr "" + +#: setup.php:132 setup.php:324 setup.php:369 +msgid "PostgreSQL username and/or password not valid" +msgstr "" + +#: setup.php:133 setup.php:156 setup.php:233 +msgid "You need to enter either an existing account or the administrator." +msgstr "" + +#: setup.php:155 setup.php:457 setup.php:524 +msgid "Oracle username and/or password not valid" +msgstr "" + +#: setup.php:232 +msgid "MySQL username and/or password not valid" +msgstr "" + +#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 +#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 +#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 +#: setup.php:614 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 +#: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 +#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 +#, php-format +msgid "Offending command was: \"%s\"" +msgstr "" + +#: setup.php:303 +#, php-format +msgid "MySQL user '%s'@'localhost' exists already." +msgstr "" + +#: setup.php:304 +msgid "Drop this user from MySQL" +msgstr "" + +#: setup.php:309 +#, php-format +msgid "MySQL user '%s'@'%%' already exists" +msgstr "" + +#: setup.php:310 +msgid "Drop this user from MySQL." +msgstr "" + +#: setup.php:583 setup.php:615 +#, php-format +msgid "Offending command was: \"%s\", name: %s, password: %s" +msgstr "" + +#: setup.php:635 +#, php-format +msgid "MS SQL username and/or password not valid: %s" +msgstr "" + +#: setup.php:853 +msgid "" +"Your web server is not yet properly setup to allow files synchronization " +"because the WebDAV interface seems to be broken." +msgstr "" + +#: setup.php:854 +#, php-format +msgid "Please double check the installation guides." +msgstr "" + +#: template.php:113 +msgid "seconds ago" +msgstr "eiliad yn ôl" + +#: template.php:114 +msgid "1 minute ago" +msgstr "1 munud yn ôl" + +#: template.php:115 +#, php-format +msgid "%d minutes ago" +msgstr "" + +#: template.php:116 +msgid "1 hour ago" +msgstr "1 awr yn ôl" + +#: template.php:117 +#, php-format +msgid "%d hours ago" +msgstr "" + +#: template.php:118 +msgid "today" +msgstr "heddiw" + +#: template.php:119 +msgid "yesterday" +msgstr "ddoe" + +#: template.php:120 +#, php-format +msgid "%d days ago" +msgstr "" + +#: template.php:121 +msgid "last month" +msgstr "mis diwethaf" + +#: template.php:122 +#, php-format +msgid "%d months ago" +msgstr "" + +#: template.php:123 +msgid "last year" +msgstr "y llynedd" + +#: template.php:124 +msgid "years ago" +msgstr "blwyddyn yn ôl" + +#: updater.php:78 +#, php-format +msgid "%s is available. Get more information" +msgstr "" + +#: updater.php:81 +msgid "up to date" +msgstr "" + +#: updater.php:84 +msgid "updates check is disabled" +msgstr "" + +#: vcategories.php:188 vcategories.php:249 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" diff --git a/l10n/cy_GB/settings.po b/l10n/cy_GB/settings.po new file mode 100644 index 0000000000..dc9b6f6a09 --- /dev/null +++ b/l10n/cy_GB/settings.po @@ -0,0 +1,500 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cy_GB\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" + +#: ajax/apps/ocs.php:20 +msgid "Unable to load list from App Store" +msgstr "" + +#: ajax/changedisplayname.php:23 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/togglegroups.php:20 +msgid "Authentication error" +msgstr "" + +#: ajax/changedisplayname.php:32 +msgid "Unable to change display name" +msgstr "" + +#: ajax/creategroup.php:10 +msgid "Group already exists" +msgstr "" + +#: ajax/creategroup.php:19 +msgid "Unable to add group" +msgstr "" + +#: ajax/enableapp.php:11 +msgid "Could not enable app. " +msgstr "" + +#: ajax/lostpassword.php:12 +msgid "Email saved" +msgstr "" + +#: ajax/lostpassword.php:14 +msgid "Invalid email" +msgstr "" + +#: ajax/removegroup.php:13 +msgid "Unable to delete group" +msgstr "" + +#: ajax/removeuser.php:24 +msgid "Unable to delete user" +msgstr "" + +#: ajax/setlanguage.php:15 +msgid "Language changed" +msgstr "" + +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "" + +#: ajax/togglegroups.php:12 +msgid "Admins can't remove themself from the admin group" +msgstr "" + +#: ajax/togglegroups.php:30 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:36 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + +#: ajax/updateapp.php:14 +msgid "Couldn't update app." +msgstr "" + +#: js/apps.js:30 +msgid "Update to {appversion}" +msgstr "" + +#: js/apps.js:36 js/apps.js:76 +msgid "Disable" +msgstr "" + +#: js/apps.js:36 js/apps.js:64 js/apps.js:83 +msgid "Enable" +msgstr "" + +#: js/apps.js:55 +msgid "Please wait...." +msgstr "" + +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" +msgstr "Gwall" + +#: js/apps.js:90 +msgid "Updating...." +msgstr "" + +#: js/apps.js:93 +msgid "Error while updating app" +msgstr "" + +#: js/apps.js:96 +msgid "Updated" +msgstr "" + +#: js/personal.js:109 +msgid "Saving..." +msgstr "" + +#: js/users.js:43 +msgid "deleted" +msgstr "" + +#: js/users.js:43 +msgid "undo" +msgstr "" + +#: js/users.js:75 +msgid "Unable to remove user" +msgstr "" + +#: js/users.js:88 templates/users.php:26 templates/users.php:80 +#: templates/users.php:105 +msgid "Groups" +msgstr "" + +#: js/users.js:91 templates/users.php:82 templates/users.php:119 +msgid "Group Admin" +msgstr "" + +#: js/users.js:111 templates/users.php:161 +msgid "Delete" +msgstr "" + +#: js/users.js:262 +msgid "add group" +msgstr "" + +#: js/users.js:414 +msgid "A valid username must be provided" +msgstr "" + +#: js/users.js:415 js/users.js:421 js/users.js:436 +msgid "Error creating user" +msgstr "" + +#: js/users.js:420 +msgid "A valid password must be provided" +msgstr "" + +#: personal.php:29 personal.php:30 +msgid "__language_name__" +msgstr "" + +#: templates/admin.php:15 +msgid "Security Warning" +msgstr "Rhybudd Diogelwch" + +#: templates/admin.php:18 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file that ownCloud provides is not working. We " +"strongly suggest that you configure your webserver in a way that the data " +"directory is no longer accessible or you move the data directory outside the" +" webserver document root." +msgstr "" + +#: templates/admin.php:29 +msgid "Setup Warning" +msgstr "" + +#: templates/admin.php:32 +msgid "" +"Your web server is not yet properly setup to allow files synchronization " +"because the WebDAV interface seems to be broken." +msgstr "" + +#: templates/admin.php:33 +#, php-format +msgid "Please double check the installation guides." +msgstr "" + +#: templates/admin.php:44 +msgid "Module 'fileinfo' missing" +msgstr "" + +#: templates/admin.php:47 +msgid "" +"The PHP module 'fileinfo' is missing. We strongly recommend to enable this " +"module to get best results with mime-type detection." +msgstr "" + +#: templates/admin.php:58 +msgid "Locale not working" +msgstr "" + +#: templates/admin.php:63 +#, php-format +msgid "" +"This ownCloud server can't set system locale to %s. This means that there " +"might be problems with certain characters in file names. We strongly suggest" +" to install the required packages on your system to support %s." +msgstr "" + +#: templates/admin.php:75 +msgid "Internet connection not working" +msgstr "" + +#: templates/admin.php:78 +msgid "" +"This ownCloud server has no working internet connection. This means that " +"some of the features like mounting of external storage, notifications about " +"updates or installation of 3rd party apps don´t work. Accessing files from " +"remote and sending of notification emails might also not work. We suggest to" +" enable internet connection for this server if you want to have all features" +" of ownCloud." +msgstr "" + +#: templates/admin.php:92 +msgid "Cron" +msgstr "" + +#: templates/admin.php:101 +msgid "Execute one task with each page loaded" +msgstr "" + +#: templates/admin.php:111 +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." +msgstr "" + +#: templates/admin.php:121 +msgid "" +"Use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." +msgstr "" + +#: templates/admin.php:128 +msgid "Sharing" +msgstr "" + +#: templates/admin.php:134 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:135 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:142 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:143 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:150 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:151 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:158 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:161 +msgid "Allow users to only share with users in their groups" +msgstr "" + +#: templates/admin.php:168 +msgid "Security" +msgstr "" + +#: templates/admin.php:181 +msgid "Enforce HTTPS" +msgstr "" + +#: templates/admin.php:182 +msgid "" +"Enforces the clients to connect to ownCloud via an encrypted connection." +msgstr "" + +#: templates/admin.php:185 +msgid "" +"Please connect to this ownCloud instance via HTTPS to enable or disable the " +"SSL enforcement." +msgstr "" + +#: templates/admin.php:195 +msgid "Log" +msgstr "" + +#: templates/admin.php:196 +msgid "Log level" +msgstr "" + +#: templates/admin.php:223 +msgid "More" +msgstr "" + +#: templates/admin.php:224 +msgid "Less" +msgstr "" + +#: templates/admin.php:231 templates/personal.php:102 +msgid "Version" +msgstr "" + +#: templates/admin.php:234 templates/personal.php:105 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + +#: templates/apps.php:11 +msgid "Add your App" +msgstr "" + +#: templates/apps.php:12 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:28 +msgid "Select an App" +msgstr "" + +#: templates/apps.php:34 +msgid "See application page at apps.owncloud.com" +msgstr "" + +#: templates/apps.php:36 +msgid "-licensed by " +msgstr "" + +#: templates/apps.php:38 +msgid "Update" +msgstr "" + +#: templates/help.php:4 +msgid "User Documentation" +msgstr "" + +#: templates/help.php:6 +msgid "Administrator Documentation" +msgstr "" + +#: templates/help.php:9 +msgid "Online Documentation" +msgstr "" + +#: templates/help.php:11 +msgid "Forum" +msgstr "" + +#: templates/help.php:14 +msgid "Bugtracker" +msgstr "" + +#: templates/help.php:17 +msgid "Commercial Support" +msgstr "" + +#: templates/personal.php:8 +#, php-format +msgid "You have used %s of the available %s" +msgstr "" + +#: templates/personal.php:15 +msgid "Get the apps to sync your files" +msgstr "" + +#: templates/personal.php:26 +msgid "Show First Run Wizard again" +msgstr "" + +#: templates/personal.php:37 templates/users.php:23 templates/users.php:79 +msgid "Password" +msgstr "Cyfrinair" + +#: templates/personal.php:38 +msgid "Your password was changed" +msgstr "" + +#: templates/personal.php:39 +msgid "Unable to change your password" +msgstr "" + +#: templates/personal.php:40 +msgid "Current password" +msgstr "" + +#: templates/personal.php:42 +msgid "New password" +msgstr "Cyfrinair newydd" + +#: templates/personal.php:44 +msgid "Change password" +msgstr "" + +#: templates/personal.php:56 templates/users.php:78 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:57 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:58 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:61 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:70 +msgid "Email" +msgstr "" + +#: templates/personal.php:72 +msgid "Your email address" +msgstr "" + +#: templates/personal.php:73 +msgid "Fill in an email address to enable password recovery" +msgstr "" + +#: templates/personal.php:79 templates/personal.php:80 +msgid "Language" +msgstr "" + +#: templates/personal.php:86 +msgid "Help translate" +msgstr "" + +#: templates/personal.php:91 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:93 +msgid "Use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/users.php:21 templates/users.php:77 +msgid "Login Name" +msgstr "" + +#: templates/users.php:32 +msgid "Create" +msgstr "" + +#: templates/users.php:35 +msgid "Default Storage" +msgstr "" + +#: templates/users.php:41 templates/users.php:139 +msgid "Unlimited" +msgstr "" + +#: templates/users.php:59 templates/users.php:154 +msgid "Other" +msgstr "" + +#: templates/users.php:84 +msgid "Storage" +msgstr "" + +#: templates/users.php:95 +msgid "change display name" +msgstr "" + +#: templates/users.php:99 +msgid "set new password" +msgstr "" + +#: templates/users.php:134 +msgid "Default" +msgstr "" diff --git a/l10n/cy_GB/user_ldap.po b/l10n/cy_GB/user_ldap.po new file mode 100644 index 0000000000..9d260f933e --- /dev/null +++ b/l10n/cy_GB/user_ldap.po @@ -0,0 +1,333 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cy_GB\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" + +#: ajax/deleteConfiguration.php:34 +msgid "Failed to delete the server configuration" +msgstr "" + +#: ajax/testConfiguration.php:36 +msgid "The configuration is valid and the connection could be established!" +msgstr "" + +#: ajax/testConfiguration.php:39 +msgid "" +"The configuration is valid, but the Bind failed. Please check the server " +"settings and credentials." +msgstr "" + +#: ajax/testConfiguration.php:43 +msgid "" +"The configuration is invalid. Please look in the ownCloud log for further " +"details." +msgstr "" + +#: js/settings.js:66 +msgid "Deletion failed" +msgstr "" + +#: js/settings.js:82 +msgid "Take over settings from recent server configuration?" +msgstr "" + +#: js/settings.js:83 +msgid "Keep settings?" +msgstr "" + +#: js/settings.js:97 +msgid "Cannot add server configuration" +msgstr "" + +#: js/settings.js:121 +msgid "Connection test succeeded" +msgstr "" + +#: js/settings.js:126 +msgid "Connection test failed" +msgstr "" + +#: js/settings.js:136 +msgid "Do you really want to delete the current Server Configuration?" +msgstr "" + +#: js/settings.js:137 +msgid "Confirm Deletion" +msgstr "" + +#: templates/settings.php:8 +msgid "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behaviour. Please ask your system administrator to " +"disable one of them." +msgstr "" + +#: templates/settings.php:11 +msgid "" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "" + +#: templates/settings.php:15 +msgid "Server configuration" +msgstr "" + +#: templates/settings.php:31 +msgid "Add Server Configuration" +msgstr "" + +#: templates/settings.php:36 +msgid "Host" +msgstr "" + +#: templates/settings.php:38 +msgid "" +"You can omit the protocol, except you require SSL. Then start with ldaps://" +msgstr "" + +#: templates/settings.php:39 +msgid "Base DN" +msgstr "" + +#: templates/settings.php:40 +msgid "One Base DN per line" +msgstr "" + +#: templates/settings.php:41 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "" + +#: templates/settings.php:43 +msgid "User DN" +msgstr "" + +#: templates/settings.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 "" + +#: templates/settings.php:46 +msgid "Password" +msgstr "Cyfrinair" + +#: templates/settings.php:49 +msgid "For anonymous access, leave DN and Password empty." +msgstr "" + +#: templates/settings.php:50 +msgid "User Login Filter" +msgstr "" + +#: templates/settings.php:53 +#, php-format +msgid "" +"Defines the filter to apply, when login is attempted. %%uid replaces the " +"username in the login action." +msgstr "" + +#: templates/settings.php:54 +#, php-format +msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" +msgstr "" + +#: templates/settings.php:55 +msgid "User List Filter" +msgstr "" + +#: templates/settings.php:58 +msgid "Defines the filter to apply, when retrieving users." +msgstr "" + +#: templates/settings.php:59 +msgid "without any placeholder, e.g. \"objectClass=person\"." +msgstr "" + +#: templates/settings.php:60 +msgid "Group Filter" +msgstr "" + +#: templates/settings.php:63 +msgid "Defines the filter to apply, when retrieving groups." +msgstr "" + +#: templates/settings.php:64 +msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." +msgstr "" + +#: templates/settings.php:68 +msgid "Connection Settings" +msgstr "" + +#: templates/settings.php:70 +msgid "Configuration Active" +msgstr "" + +#: templates/settings.php:70 +msgid "When unchecked, this configuration will be skipped." +msgstr "" + +#: templates/settings.php:71 +msgid "Port" +msgstr "" + +#: templates/settings.php:72 +msgid "Backup (Replica) Host" +msgstr "" + +#: templates/settings.php:72 +msgid "" +"Give an optional backup host. It must be a replica of the main LDAP/AD " +"server." +msgstr "" + +#: templates/settings.php:73 +msgid "Backup (Replica) Port" +msgstr "" + +#: templates/settings.php:74 +msgid "Disable Main Server" +msgstr "" + +#: templates/settings.php:74 +msgid "When switched on, ownCloud will only connect to the replica server." +msgstr "" + +#: templates/settings.php:75 +msgid "Use TLS" +msgstr "" + +#: templates/settings.php:75 +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" + +#: templates/settings.php:76 +msgid "Case insensitve LDAP server (Windows)" +msgstr "" + +#: templates/settings.php:77 +msgid "Turn off SSL certificate validation." +msgstr "" + +#: templates/settings.php:77 +msgid "" +"If connection only works with this option, import the LDAP server's SSL " +"certificate in your ownCloud server." +msgstr "" + +#: templates/settings.php:77 +msgid "Not recommended, use for testing only." +msgstr "" + +#: templates/settings.php:78 +msgid "Cache Time-To-Live" +msgstr "" + +#: templates/settings.php:78 +msgid "in seconds. A change empties the cache." +msgstr "" + +#: templates/settings.php:80 +msgid "Directory Settings" +msgstr "" + +#: templates/settings.php:82 +msgid "User Display Name Field" +msgstr "" + +#: templates/settings.php:82 +msgid "The LDAP attribute to use to generate the user`s ownCloud name." +msgstr "" + +#: templates/settings.php:83 +msgid "Base User Tree" +msgstr "" + +#: templates/settings.php:83 +msgid "One User Base DN per line" +msgstr "" + +#: templates/settings.php:84 +msgid "User Search Attributes" +msgstr "" + +#: templates/settings.php:84 templates/settings.php:87 +msgid "Optional; one attribute per line" +msgstr "" + +#: templates/settings.php:85 +msgid "Group Display Name Field" +msgstr "" + +#: templates/settings.php:85 +msgid "The LDAP attribute to use to generate the groups`s ownCloud name." +msgstr "" + +#: templates/settings.php:86 +msgid "Base Group Tree" +msgstr "" + +#: templates/settings.php:86 +msgid "One Group Base DN per line" +msgstr "" + +#: templates/settings.php:87 +msgid "Group Search Attributes" +msgstr "" + +#: templates/settings.php:88 +msgid "Group-Member association" +msgstr "" + +#: templates/settings.php:90 +msgid "Special Attributes" +msgstr "" + +#: templates/settings.php:92 +msgid "Quota Field" +msgstr "" + +#: templates/settings.php:93 +msgid "Quota Default" +msgstr "" + +#: templates/settings.php:93 +msgid "in bytes" +msgstr "" + +#: templates/settings.php:94 +msgid "Email Field" +msgstr "" + +#: templates/settings.php:95 +msgid "User Home Folder Naming Rule" +msgstr "" + +#: templates/settings.php:95 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:99 +msgid "Test Configuration" +msgstr "" + +#: templates/settings.php:99 +msgid "Help" +msgstr "Cymorth" diff --git a/l10n/cy_GB/user_webdavauth.po b/l10n/cy_GB/user_webdavauth.po new file mode 100644 index 0000000000..38625a8e00 --- /dev/null +++ b/l10n/cy_GB/user_webdavauth.po @@ -0,0 +1,33 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cy_GB\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" + +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "" + +#: templates/settings.php:4 +msgid "URL: http://" +msgstr "" + +#: templates/settings.php:7 +msgid "" +"ownCloud will send the user credentials to this URL. This plugin checks the " +"response and will interpret the HTTP statuscodes 401 and 403 as invalid " +"credentials, and all other responses as valid credentials." +msgstr "" diff --git a/l10n/da/core.po b/l10n/da/core.po index 23125c78c5..3b03eb966d 100644 --- a/l10n/da/core.po +++ b/l10n/da/core.po @@ -18,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/files.po b/l10n/da/files.po index 00f0e194f0..c43e600f79 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/files_encryption.po b/l10n/da/files_encryption.po index 11ad02b829..8c8605731d 100644 --- a/l10n/da/files_encryption.po +++ b/l10n/da/files_encryption.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/files_external.po b/l10n/da/files_external.po index c95d8c7f59..e8c3c21931 100644 --- a/l10n/da/files_external.po +++ b/l10n/da/files_external.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/files_sharing.po b/l10n/da/files_sharing.po index b00e3af3fd..95f966c2f2 100644 --- a/l10n/da/files_sharing.po +++ b/l10n/da/files_sharing.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/files_trashbin.po b/l10n/da/files_trashbin.po index 8d9f732439..d0728a8d9c 100644 --- a/l10n/da/files_trashbin.po +++ b/l10n/da/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/files_versions.po b/l10n/da/files_versions.po index ca8cb9848d..7ceccbf261 100644 --- a/l10n/da/files_versions.po +++ b/l10n/da/files_versions.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/lib.po b/l10n/da/lib.po index 43d95936cd..0e2d43d17f 100644 --- a/l10n/da/lib.po +++ b/l10n/da/lib.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/settings.po b/l10n/da/settings.po index 4381377afe..47340bcdee 100644 --- a/l10n/da/settings.po +++ b/l10n/da/settings.po @@ -19,8 +19,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -128,7 +128,7 @@ msgstr "Der opstod en fejl under app opgraderingen" msgid "Updated" msgstr "Opdateret" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Gemmer..." diff --git a/l10n/da/user_ldap.po b/l10n/da/user_ldap.po index e08e81e933..98e5a1e4f0 100644 --- a/l10n/da/user_ldap.po +++ b/l10n/da/user_ldap.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/user_webdavauth.po b/l10n/da/user_webdavauth.po index 3ca1e0bfc8..0590c136e9 100644 --- a/l10n/da/user_webdavauth.po +++ b/l10n/da/user_webdavauth.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/de/core.po b/l10n/de/core.po index e2d6e7adb3..e5f6b5d579 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -24,8 +24,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files.po b/l10n/de/files.po index 478a17ef0e..6075d0eff7 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -29,8 +29,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files_encryption.po b/l10n/de/files_encryption.po index 22a2714c2d..9e734d80a3 100644 --- a/l10n/de/files_encryption.po +++ b/l10n/de/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files_external.po b/l10n/de/files_external.po index ea0bfa1134..3bd88c78ec 100644 --- a/l10n/de/files_external.po +++ b/l10n/de/files_external.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files_sharing.po b/l10n/de/files_sharing.po index 88ae066167..d3e9a36763 100644 --- a/l10n/de/files_sharing.po +++ b/l10n/de/files_sharing.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files_trashbin.po b/l10n/de/files_trashbin.po index 1a4ec5faa2..7484373ee0 100644 --- a/l10n/de/files_trashbin.po +++ b/l10n/de/files_trashbin.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files_versions.po b/l10n/de/files_versions.po index 629272de0a..fd4ea22a0e 100644 --- a/l10n/de/files_versions.po +++ b/l10n/de/files_versions.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/lib.po b/l10n/de/lib.po index f3919bae2a..991f7008d7 100644 --- a/l10n/de/lib.po +++ b/l10n/de/lib.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index 141407e519..4c6065c552 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -27,8 +27,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" @@ -136,7 +136,7 @@ msgstr "Fehler beim Aktualisieren der App" msgid "Updated" msgstr "Aktualisiert" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Speichern..." diff --git a/l10n/de/user_ldap.po b/l10n/de/user_ldap.po index 5c5672e57a..c76b328283 100644 --- a/l10n/de/user_ldap.po +++ b/l10n/de/user_ldap.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/user_webdavauth.po b/l10n/de/user_webdavauth.po index 3291e0d7af..a756a0d857 100644 --- a/l10n/de/user_webdavauth.po +++ b/l10n/de/user_webdavauth.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po index 260be36643..b9a6d98b59 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_DE/core.po @@ -28,8 +28,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index 914ae61dd5..d1d67461d3 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/files.po @@ -34,8 +34,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files_encryption.po b/l10n/de_DE/files_encryption.po index c9fc29bee5..cb549f90fd 100644 --- a/l10n/de_DE/files_encryption.po +++ b/l10n/de_DE/files_encryption.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files_external.po b/l10n/de_DE/files_external.po index e2ff7d2b24..3b72b5747d 100644 --- a/l10n/de_DE/files_external.po +++ b/l10n/de_DE/files_external.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files_sharing.po b/l10n/de_DE/files_sharing.po index acb0e4b391..0f52dc9f53 100644 --- a/l10n/de_DE/files_sharing.po +++ b/l10n/de_DE/files_sharing.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files_trashbin.po b/l10n/de_DE/files_trashbin.po index 982b076750..00c1b90925 100644 --- a/l10n/de_DE/files_trashbin.po +++ b/l10n/de_DE/files_trashbin.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files_versions.po b/l10n/de_DE/files_versions.po index 9ff7bc637c..341c1a1b00 100644 --- a/l10n/de_DE/files_versions.po +++ b/l10n/de_DE/files_versions.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/lib.po b/l10n/de_DE/lib.po index a8a37f9f19..de5340c6b5 100644 --- a/l10n/de_DE/lib.po +++ b/l10n/de_DE/lib.po @@ -18,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index 91dc723e69..ee05c494b9 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.po @@ -32,8 +32,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" @@ -141,7 +141,7 @@ msgstr "Es ist ein Fehler während des Updates aufgetreten" msgid "Updated" msgstr "Aktualisiert" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Speichern..." diff --git a/l10n/de_DE/user_ldap.po b/l10n/de_DE/user_ldap.po index 6e5351670d..d35dff4931 100644 --- a/l10n/de_DE/user_ldap.po +++ b/l10n/de_DE/user_ldap.po @@ -21,8 +21,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/user_webdavauth.po b/l10n/de_DE/user_webdavauth.po index ef77fdbbd5..05ec894d85 100644 --- a/l10n/de_DE/user_webdavauth.po +++ b/l10n/de_DE/user_webdavauth.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/el/core.po b/l10n/el/core.po index 3bfd3322dd..17bdcf4ca7 100644 --- a/l10n/el/core.po +++ b/l10n/el/core.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/files.po b/l10n/el/files.po index f41bc5e854..6d69eade9c 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/files_encryption.po b/l10n/el/files_encryption.po index a274a691c3..657368cb3f 100644 --- a/l10n/el/files_encryption.po +++ b/l10n/el/files_encryption.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/files_external.po b/l10n/el/files_external.po index 13a2353cb9..ee87024042 100644 --- a/l10n/el/files_external.po +++ b/l10n/el/files_external.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/files_sharing.po b/l10n/el/files_sharing.po index b6fd051aa3..5f558cf118 100644 --- a/l10n/el/files_sharing.po +++ b/l10n/el/files_sharing.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/files_trashbin.po b/l10n/el/files_trashbin.po index bac8c7a3fb..b3db2cb372 100644 --- a/l10n/el/files_trashbin.po +++ b/l10n/el/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/files_versions.po b/l10n/el/files_versions.po index 0891a90b78..d87bcb7f29 100644 --- a/l10n/el/files_versions.po +++ b/l10n/el/files_versions.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/lib.po b/l10n/el/lib.po index ecbe495234..7fd7a14dfd 100644 --- a/l10n/el/lib.po +++ b/l10n/el/lib.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/settings.po b/l10n/el/settings.po index 4cbc650486..f80aa6d858 100644 --- a/l10n/el/settings.po +++ b/l10n/el/settings.po @@ -21,8 +21,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -130,7 +130,7 @@ msgstr "Σφάλμα κατά την ενημέρωση της εφαρμογή msgid "Updated" msgstr "Ενημερώθηκε" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Αποθήκευση..." diff --git a/l10n/el/user_ldap.po b/l10n/el/user_ldap.po index 063a5a8590..0685878dc0 100644 --- a/l10n/el/user_ldap.po +++ b/l10n/el/user_ldap.po @@ -9,12 +9,13 @@ # Efstathios Iosifidis , 2013. # Konstantinos Tzanidis , 2012. # Marios Bekatoros <>, 2012. +# Wasilis Mandratzis , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -49,7 +50,7 @@ msgstr "Η διαγραφή απέτυχε" #: js/settings.js:82 msgid "Take over settings from recent server configuration?" -msgstr "" +msgstr "Πάρτε πάνω από τις πρόσφατες ρυθμίσεις διαμόρφωσης του διακομιστή?" #: js/settings.js:83 msgid "Keep settings?" @@ -111,7 +112,7 @@ msgstr "Base DN" #: templates/settings.php:40 msgid "One Base DN per line" -msgstr "" +msgstr "Ένα DN Βάσης ανά γραμμή " #: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" @@ -182,11 +183,11 @@ msgstr "Ρυθμίσεις Σύνδεσης" #: templates/settings.php:70 msgid "Configuration Active" -msgstr "" +msgstr "Ενεργοποιηση ρυθμισεων" #: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." -msgstr "" +msgstr "Όταν δεν είναι επιλεγμένο, αυτή η ρύθμιση θα πρέπει να παραλειφθεί. " #: templates/settings.php:71 msgid "Port" @@ -194,25 +195,25 @@ msgstr "Θύρα" #: templates/settings.php:72 msgid "Backup (Replica) Host" -msgstr "" +msgstr "Δημιουργία αντιγράφων ασφαλείας (Replica) Host " #: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." -msgstr "" +msgstr "Δώστε μια προαιρετική εφεδρική υποδοχή. Πρέπει να είναι ένα αντίγραφο του κύριου LDAP / AD διακομιστη." #: templates/settings.php:73 msgid "Backup (Replica) Port" -msgstr "" +msgstr "Δημιουργία αντιγράφων ασφαλείας (Replica) Υποδοχη" #: templates/settings.php:74 msgid "Disable Main Server" -msgstr "" +msgstr "Απενεργοποιηση του κεντρικου διακομιστη" #: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." -msgstr "" +msgstr "Όταν ενεργοποιηθεί, με το ownCloud θα συνδεθείτε με το διακομιστή ρεπλίκα." #: templates/settings.php:75 msgid "Use TLS" @@ -220,7 +221,7 @@ msgstr "Χρήση TLS" #: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "" +msgstr "Μην το χρησιμοποιήσετε επιπροσθέτως, για LDAPS συνδέσεις , θα αποτύχει." #: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" @@ -242,7 +243,7 @@ msgstr "Δεν προτείνεται, χρήση μόνο για δοκιμές #: templates/settings.php:78 msgid "Cache Time-To-Live" -msgstr "" +msgstr "Cache Time-To-Live" #: templates/settings.php:78 msgid "in seconds. A change empties the cache." @@ -266,15 +267,15 @@ msgstr "Base User Tree" #: templates/settings.php:83 msgid "One User Base DN per line" -msgstr "" +msgstr "Ένα DN βάσης χρηστών ανά γραμμή" #: templates/settings.php:84 msgid "User Search Attributes" -msgstr "" +msgstr "Χαρακτηριστικά αναζήτησης των χρηστών " #: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" -msgstr "" +msgstr "Προαιρετικά? Ένα χαρακτηριστικό ανά γραμμή " #: templates/settings.php:85 msgid "Group Display Name Field" @@ -290,11 +291,11 @@ msgstr "Base Group Tree" #: templates/settings.php:86 msgid "One Group Base DN per line" -msgstr "" +msgstr "Μια ομαδικη Βάση DN ανά γραμμή" #: templates/settings.php:87 msgid "Group Search Attributes" -msgstr "" +msgstr "Ομάδα Χαρακτηριστικων Αναζήτηση" #: templates/settings.php:88 msgid "Group-Member association" @@ -302,15 +303,15 @@ msgstr "Group-Member association" #: templates/settings.php:90 msgid "Special Attributes" -msgstr "" +msgstr "Ειδικά Χαρακτηριστικά " #: templates/settings.php:92 msgid "Quota Field" -msgstr "" +msgstr "Ποσοσταση πεδιου" #: templates/settings.php:93 msgid "Quota Default" -msgstr "" +msgstr "Προκαθισμενο πεδιο" #: templates/settings.php:93 msgid "in bytes" @@ -318,11 +319,11 @@ msgstr "σε bytes" #: templates/settings.php:94 msgid "Email Field" -msgstr "" +msgstr "Email τυπος" #: templates/settings.php:95 msgid "User Home Folder Naming Rule" -msgstr "" +msgstr "Χρήστης Προσωπικόςφάκελος Ονομασία Κανόνας " #: templates/settings.php:95 msgid "" @@ -332,7 +333,7 @@ msgstr "Αφήστε το κενό για το όνομα χρήστη (προε #: templates/settings.php:99 msgid "Test Configuration" -msgstr "" +msgstr "Δοκιμαστικες ρυθμισεις" #: templates/settings.php:99 msgid "Help" diff --git a/l10n/el/user_webdavauth.po b/l10n/el/user_webdavauth.po index 12b784c7f8..370f455b11 100644 --- a/l10n/el/user_webdavauth.po +++ b/l10n/el/user_webdavauth.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/core.po b/l10n/eo/core.po index c97c765e9c..fd104b957c 100644 --- a/l10n/eo/core.po +++ b/l10n/eo/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/files.po b/l10n/eo/files.po index 7b9ca1937b..fb3dd94df1 100644 --- a/l10n/eo/files.po +++ b/l10n/eo/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/files_encryption.po b/l10n/eo/files_encryption.po index 48e48cd33d..e909ea87bf 100644 --- a/l10n/eo/files_encryption.po +++ b/l10n/eo/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/files_external.po b/l10n/eo/files_external.po index c9695b57bf..97fd9187fc 100644 --- a/l10n/eo/files_external.po +++ b/l10n/eo/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/files_sharing.po b/l10n/eo/files_sharing.po index b2d00538f1..e8fc61e328 100644 --- a/l10n/eo/files_sharing.po +++ b/l10n/eo/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/files_trashbin.po b/l10n/eo/files_trashbin.po index 8d0d618725..ef1aba79f4 100644 --- a/l10n/eo/files_trashbin.po +++ b/l10n/eo/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/files_versions.po b/l10n/eo/files_versions.po index a9bf35481c..03a9d97ec3 100644 --- a/l10n/eo/files_versions.po +++ b/l10n/eo/files_versions.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/lib.po b/l10n/eo/lib.po index 9fc0db90fd..4208458ba0 100644 --- a/l10n/eo/lib.po +++ b/l10n/eo/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/settings.po b/l10n/eo/settings.po index c623ce092f..5ad89620f3 100644 --- a/l10n/eo/settings.po +++ b/l10n/eo/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -119,7 +119,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Konservante..." diff --git a/l10n/eo/user_ldap.po b/l10n/eo/user_ldap.po index 6aeb3085b6..ae0cd9b839 100644 --- a/l10n/eo/user_ldap.po +++ b/l10n/eo/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/user_webdavauth.po b/l10n/eo/user_webdavauth.po index c18903205f..8217ee0e2b 100644 --- a/l10n/eo/user_webdavauth.po +++ b/l10n/eo/user_webdavauth.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/core.po b/l10n/es/core.po index 72132b21e0..4eaac95f2c 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -21,8 +21,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/files.po b/l10n/es/files.po index a448b5bc8a..711f2bc086 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -21,8 +21,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/files_encryption.po b/l10n/es/files_encryption.po index 5c90271db3..3300c20e3c 100644 --- a/l10n/es/files_encryption.po +++ b/l10n/es/files_encryption.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/files_external.po b/l10n/es/files_external.po index b6fbbbeafc..57448b496c 100644 --- a/l10n/es/files_external.po +++ b/l10n/es/files_external.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/files_sharing.po b/l10n/es/files_sharing.po index 46b4d66f10..8f976d5650 100644 --- a/l10n/es/files_sharing.po +++ b/l10n/es/files_sharing.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/files_trashbin.po b/l10n/es/files_trashbin.po index 28a3cb9ded..6467cca481 100644 --- a/l10n/es/files_trashbin.po +++ b/l10n/es/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/files_versions.po b/l10n/es/files_versions.po index a69a1d1a87..61295e5517 100644 --- a/l10n/es/files_versions.po +++ b/l10n/es/files_versions.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/lib.po b/l10n/es/lib.po index cb2a914372..ca01665741 100644 --- a/l10n/es/lib.po +++ b/l10n/es/lib.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index e9959550b2..13236df5dc 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -25,8 +25,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -134,7 +134,7 @@ msgstr "Error mientras se actualizaba" msgid "Updated" msgstr "Actualizado" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Guardando..." diff --git a/l10n/es/user_ldap.po b/l10n/es/user_ldap.po index 25a063bf8f..3043a99312 100644 --- a/l10n/es/user_ldap.po +++ b/l10n/es/user_ldap.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/user_webdavauth.po b/l10n/es/user_webdavauth.po index 8104595c79..305a875650 100644 --- a/l10n/es/user_webdavauth.po +++ b/l10n/es/user_webdavauth.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/core.po b/l10n/es_AR/core.po index cf82c5251a..7a134d06ce 100644 --- a/l10n/es_AR/core.po +++ b/l10n/es_AR/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/files.po b/l10n/es_AR/files.po index 4f2ae47085..c7d4671e9a 100644 --- a/l10n/es_AR/files.po +++ b/l10n/es_AR/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/files_encryption.po b/l10n/es_AR/files_encryption.po index a63950a802..e51d601c61 100644 --- a/l10n/es_AR/files_encryption.po +++ b/l10n/es_AR/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/files_external.po b/l10n/es_AR/files_external.po index c2c6a9eb63..a5b2316b32 100644 --- a/l10n/es_AR/files_external.po +++ b/l10n/es_AR/files_external.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/files_sharing.po b/l10n/es_AR/files_sharing.po index 4c7375e8da..bf0799a222 100644 --- a/l10n/es_AR/files_sharing.po +++ b/l10n/es_AR/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/files_trashbin.po b/l10n/es_AR/files_trashbin.po index 4f423c89d3..b3f0b5a9fd 100644 --- a/l10n/es_AR/files_trashbin.po +++ b/l10n/es_AR/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/files_versions.po b/l10n/es_AR/files_versions.po index af1d74768e..b880bde3d9 100644 --- a/l10n/es_AR/files_versions.po +++ b/l10n/es_AR/files_versions.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/lib.po b/l10n/es_AR/lib.po index 6105dc68ff..6be90480b4 100644 --- a/l10n/es_AR/lib.po +++ b/l10n/es_AR/lib.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/settings.po b/l10n/es_AR/settings.po index d9e2750935..6d8d518077 100644 --- a/l10n/es_AR/settings.po +++ b/l10n/es_AR/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -120,7 +120,7 @@ msgstr "Error al actualizar" msgid "Updated" msgstr "Actualizado" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Guardando..." diff --git a/l10n/es_AR/user_ldap.po b/l10n/es_AR/user_ldap.po index b539d42812..a0f13250f4 100644 --- a/l10n/es_AR/user_ldap.po +++ b/l10n/es_AR/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/user_webdavauth.po b/l10n/es_AR/user_webdavauth.po index 3b62ceea0b..2d5007b68e 100644 --- a/l10n/es_AR/user_webdavauth.po +++ b/l10n/es_AR/user_webdavauth.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/core.po b/l10n/et_EE/core.po index e0224d580e..73d7534b61 100644 --- a/l10n/et_EE/core.po +++ b/l10n/et_EE/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index 757224d870..9bfc400f49 100644 --- a/l10n/et_EE/files.po +++ b/l10n/et_EE/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/files_encryption.po b/l10n/et_EE/files_encryption.po index 99746b2373..8487c07b9f 100644 --- a/l10n/et_EE/files_encryption.po +++ b/l10n/et_EE/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/files_external.po b/l10n/et_EE/files_external.po index 69d1f03a4c..23cd4c8a18 100644 --- a/l10n/et_EE/files_external.po +++ b/l10n/et_EE/files_external.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/files_sharing.po b/l10n/et_EE/files_sharing.po index 9174858925..5f470a04c3 100644 --- a/l10n/et_EE/files_sharing.po +++ b/l10n/et_EE/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/files_trashbin.po b/l10n/et_EE/files_trashbin.po index e8b7bd59bc..46f8a4c56d 100644 --- a/l10n/et_EE/files_trashbin.po +++ b/l10n/et_EE/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/files_versions.po b/l10n/et_EE/files_versions.po index 88597f1f9b..de58702159 100644 --- a/l10n/et_EE/files_versions.po +++ b/l10n/et_EE/files_versions.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/lib.po b/l10n/et_EE/lib.po index fc47049390..d515bf9a16 100644 --- a/l10n/et_EE/lib.po +++ b/l10n/et_EE/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/settings.po b/l10n/et_EE/settings.po index c603999f22..3532232094 100644 --- a/l10n/et_EE/settings.po +++ b/l10n/et_EE/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -119,7 +119,7 @@ msgstr "Viga rakenduse uuendamisel" msgid "Updated" msgstr "Uuendatud" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Salvestamine..." diff --git a/l10n/et_EE/user_ldap.po b/l10n/et_EE/user_ldap.po index 588eb01cbb..9da3698683 100644 --- a/l10n/et_EE/user_ldap.po +++ b/l10n/et_EE/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/user_webdavauth.po b/l10n/et_EE/user_webdavauth.po index 11ee710253..a25893ddd1 100644 --- a/l10n/et_EE/user_webdavauth.po +++ b/l10n/et_EE/user_webdavauth.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/core.po b/l10n/eu/core.po index 3573993e1c..6fa4ebaaf0 100644 --- a/l10n/eu/core.po +++ b/l10n/eu/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/files.po b/l10n/eu/files.po index 0442ccce91..0f710284f4 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/files_encryption.po b/l10n/eu/files_encryption.po index fdab73a534..eea7795bbc 100644 --- a/l10n/eu/files_encryption.po +++ b/l10n/eu/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/files_external.po b/l10n/eu/files_external.po index cb7fd45b34..4cb0843ae5 100644 --- a/l10n/eu/files_external.po +++ b/l10n/eu/files_external.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/files_sharing.po b/l10n/eu/files_sharing.po index c42f25913a..89c6272ac7 100644 --- a/l10n/eu/files_sharing.po +++ b/l10n/eu/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/files_trashbin.po b/l10n/eu/files_trashbin.po index cacd96becd..0aea8466bd 100644 --- a/l10n/eu/files_trashbin.po +++ b/l10n/eu/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/files_versions.po b/l10n/eu/files_versions.po index 7e42b6733a..7fdbf14c0d 100644 --- a/l10n/eu/files_versions.po +++ b/l10n/eu/files_versions.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/lib.po b/l10n/eu/lib.po index c65e98a9a9..593856272c 100644 --- a/l10n/eu/lib.po +++ b/l10n/eu/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po index d9c6759ac5..4f70111c6e 100644 --- a/l10n/eu/settings.po +++ b/l10n/eu/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -120,7 +120,7 @@ msgstr "Errorea aplikazioa eguneratzen zen bitartean" msgid "Updated" msgstr "Eguneratuta" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Gordetzen..." diff --git a/l10n/eu/user_ldap.po b/l10n/eu/user_ldap.po index 4f94b7dbd4..5dbd26541b 100644 --- a/l10n/eu/user_ldap.po +++ b/l10n/eu/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/user_webdavauth.po b/l10n/eu/user_webdavauth.po index 8fc10281ae..7128f70cb6 100644 --- a/l10n/eu/user_webdavauth.po +++ b/l10n/eu/user_webdavauth.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/core.po b/l10n/fa/core.po index a0d1c5ffb0..9178afa906 100644 --- a/l10n/fa/core.po +++ b/l10n/fa/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/files.po b/l10n/fa/files.po index d3e345434f..6e2cacffc3 100644 --- a/l10n/fa/files.po +++ b/l10n/fa/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/files_encryption.po b/l10n/fa/files_encryption.po index 2d471bafeb..a4b3d25d08 100644 --- a/l10n/fa/files_encryption.po +++ b/l10n/fa/files_encryption.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/files_external.po b/l10n/fa/files_external.po index fa5dc5f9d0..b881ebe558 100644 --- a/l10n/fa/files_external.po +++ b/l10n/fa/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/files_sharing.po b/l10n/fa/files_sharing.po index f305fac0e0..c481470728 100644 --- a/l10n/fa/files_sharing.po +++ b/l10n/fa/files_sharing.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/files_trashbin.po b/l10n/fa/files_trashbin.po index 028245cdc3..56b1199bd6 100644 --- a/l10n/fa/files_trashbin.po +++ b/l10n/fa/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/files_versions.po b/l10n/fa/files_versions.po index 64c3439a0b..2e38afda4e 100644 --- a/l10n/fa/files_versions.po +++ b/l10n/fa/files_versions.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/lib.po b/l10n/fa/lib.po index 89ee697091..d1d5f566ef 100644 --- a/l10n/fa/lib.po +++ b/l10n/fa/lib.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/settings.po b/l10n/fa/settings.po index 4d3cc0f53b..a39dc9e68b 100644 --- a/l10n/fa/settings.po +++ b/l10n/fa/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -122,7 +122,7 @@ msgstr "خطا در هنگام بهنگام سازی برنامه" msgid "Updated" msgstr "بروز رسانی انجام شد" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "درحال ذخیره ..." diff --git a/l10n/fa/user_ldap.po b/l10n/fa/user_ldap.po index 4d69ed86da..be344210e5 100644 --- a/l10n/fa/user_ldap.po +++ b/l10n/fa/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/user_webdavauth.po b/l10n/fa/user_webdavauth.po index 62631e8bd8..5b69bafee6 100644 --- a/l10n/fa/user_webdavauth.po +++ b/l10n/fa/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi/core.po b/l10n/fi/core.po index 9199f7cff2..4a0b4df42e 100644 --- a/l10n/fi/core.po +++ b/l10n/fi/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" diff --git a/l10n/fi/files.po b/l10n/fi/files.po index a6abbe1b1a..ccb82381a2 100644 --- a/l10n/fi/files.po +++ b/l10n/fi/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" diff --git a/l10n/fi/lib.po b/l10n/fi/lib.po index 81257271c6..ced780d1ce 100644 --- a/l10n/fi/lib.po +++ b/l10n/fi/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index 55b80921b6..80f0f53b37 100644 --- a/l10n/fi_FI/core.po +++ b/l10n/fi_FI/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index 2df6a15b42..d68085e964 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/files_encryption.po b/l10n/fi_FI/files_encryption.po index 76cae2f156..606ba38b82 100644 --- a/l10n/fi_FI/files_encryption.po +++ b/l10n/fi_FI/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/files_external.po b/l10n/fi_FI/files_external.po index 6a21eb6ee3..87b5f4c115 100644 --- a/l10n/fi_FI/files_external.po +++ b/l10n/fi_FI/files_external.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/files_sharing.po b/l10n/fi_FI/files_sharing.po index bef0c84fd1..5abc5ffddc 100644 --- a/l10n/fi_FI/files_sharing.po +++ b/l10n/fi_FI/files_sharing.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/files_trashbin.po b/l10n/fi_FI/files_trashbin.po index 83e0e9bc92..6f3b5b2708 100644 --- a/l10n/fi_FI/files_trashbin.po +++ b/l10n/fi_FI/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/files_versions.po b/l10n/fi_FI/files_versions.po index e05cdfb6e5..1dbda29303 100644 --- a/l10n/fi_FI/files_versions.po +++ b/l10n/fi_FI/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/lib.po b/l10n/fi_FI/lib.po index 220c28eae6..fc77066a99 100644 --- a/l10n/fi_FI/lib.po +++ b/l10n/fi_FI/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index f86a50967d..dbaeb19403 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -119,7 +119,7 @@ msgstr "Virhe sovellusta päivittäessä" msgid "Updated" msgstr "Päivitetty" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Tallennetaan..." diff --git a/l10n/fi_FI/user_ldap.po b/l10n/fi_FI/user_ldap.po index ed63037a2e..a72be9f164 100644 --- a/l10n/fi_FI/user_ldap.po +++ b/l10n/fi_FI/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/user_webdavauth.po b/l10n/fi_FI/user_webdavauth.po index 4ed8a2e5a7..ef62c35b8a 100644 --- a/l10n/fi_FI/user_webdavauth.po +++ b/l10n/fi_FI/user_webdavauth.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/core.po b/l10n/fr/core.po index 8051f8813b..07437d6613 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/core.po @@ -21,8 +21,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/files.po b/l10n/fr/files.po index ac62cd46ad..e694e54615 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -24,8 +24,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/files_encryption.po b/l10n/fr/files_encryption.po index 0a04e493c6..3483ba9782 100644 --- a/l10n/fr/files_encryption.po +++ b/l10n/fr/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/files_external.po b/l10n/fr/files_external.po index 1eabea7ca2..ed1652d85a 100644 --- a/l10n/fr/files_external.po +++ b/l10n/fr/files_external.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/files_sharing.po b/l10n/fr/files_sharing.po index 4c4dc7b408..9959bf5b5c 100644 --- a/l10n/fr/files_sharing.po +++ b/l10n/fr/files_sharing.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/files_trashbin.po b/l10n/fr/files_trashbin.po index f37b15a7d8..f49412eee3 100644 --- a/l10n/fr/files_trashbin.po +++ b/l10n/fr/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/files_versions.po b/l10n/fr/files_versions.po index 734bfa8efd..e997c199e0 100644 --- a/l10n/fr/files_versions.po +++ b/l10n/fr/files_versions.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/lib.po b/l10n/fr/lib.po index 0d82367ff6..24cf1be8ed 100644 --- a/l10n/fr/lib.po +++ b/l10n/fr/lib.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index 4e5add285a..564e045b53 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -26,8 +26,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -135,7 +135,7 @@ msgstr "Erreur lors de la mise à jour de l'application" msgid "Updated" msgstr "Mise à jour effectuée avec succès" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Sauvegarde..." diff --git a/l10n/fr/user_ldap.po b/l10n/fr/user_ldap.po index 0328aff362..dafca62301 100644 --- a/l10n/fr/user_ldap.po +++ b/l10n/fr/user_ldap.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/user_webdavauth.po b/l10n/fr/user_webdavauth.po index efb5ef69b3..8fdd18d7e5 100644 --- a/l10n/fr/user_webdavauth.po +++ b/l10n/fr/user_webdavauth.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/core.po b/l10n/gl/core.po index 7b320635e6..2424c7626c 100644 --- a/l10n/gl/core.po +++ b/l10n/gl/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/files.po b/l10n/gl/files.po index 13580aacf5..b257aba173 100644 --- a/l10n/gl/files.po +++ b/l10n/gl/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/files_encryption.po b/l10n/gl/files_encryption.po index 96058d128c..d25b1b2d5a 100644 --- a/l10n/gl/files_encryption.po +++ b/l10n/gl/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/files_external.po b/l10n/gl/files_external.po index 8e665aecdf..f000f90728 100644 --- a/l10n/gl/files_external.po +++ b/l10n/gl/files_external.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/files_sharing.po b/l10n/gl/files_sharing.po index f515b3253a..657f1da63e 100644 --- a/l10n/gl/files_sharing.po +++ b/l10n/gl/files_sharing.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/files_trashbin.po b/l10n/gl/files_trashbin.po index 8530c4e157..64cdc9dbdc 100644 --- a/l10n/gl/files_trashbin.po +++ b/l10n/gl/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/files_versions.po b/l10n/gl/files_versions.po index 695f30a3d3..0744649b03 100644 --- a/l10n/gl/files_versions.po +++ b/l10n/gl/files_versions.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/lib.po b/l10n/gl/lib.po index c17f8ea6ee..b20f32fff2 100644 --- a/l10n/gl/lib.po +++ b/l10n/gl/lib.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index 5d24c3a492..2230f6a0de 100644 --- a/l10n/gl/settings.po +++ b/l10n/gl/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -122,7 +122,7 @@ msgstr "Produciuse un erro mentres actualizaba o aplicativo" msgid "Updated" msgstr "Actualizado" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Gardando..." diff --git a/l10n/gl/user_ldap.po b/l10n/gl/user_ldap.po index 1d1c0ab36a..44b41641e2 100644 --- a/l10n/gl/user_ldap.po +++ b/l10n/gl/user_ldap.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/user_webdavauth.po b/l10n/gl/user_webdavauth.po index 301b089dd7..89f599a0be 100644 --- a/l10n/gl/user_webdavauth.po +++ b/l10n/gl/user_webdavauth.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/core.po b/l10n/he/core.po index ee87e77344..742b5ad873 100644 --- a/l10n/he/core.po +++ b/l10n/he/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/files.po b/l10n/he/files.po index 2e5a6663f6..6880b3e051 100644 --- a/l10n/he/files.po +++ b/l10n/he/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/files_encryption.po b/l10n/he/files_encryption.po index 7881028811..538cffbef3 100644 --- a/l10n/he/files_encryption.po +++ b/l10n/he/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/files_external.po b/l10n/he/files_external.po index dbb5147ed9..b8639454e1 100644 --- a/l10n/he/files_external.po +++ b/l10n/he/files_external.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/files_sharing.po b/l10n/he/files_sharing.po index 1201adaf60..a559adcb01 100644 --- a/l10n/he/files_sharing.po +++ b/l10n/he/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/files_trashbin.po b/l10n/he/files_trashbin.po index 9b28a90b86..40c11b0596 100644 --- a/l10n/he/files_trashbin.po +++ b/l10n/he/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/files_versions.po b/l10n/he/files_versions.po index 6dc80633be..d3d2624d33 100644 --- a/l10n/he/files_versions.po +++ b/l10n/he/files_versions.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/lib.po b/l10n/he/lib.po index 37d481fbb3..de9c88104c 100644 --- a/l10n/he/lib.po +++ b/l10n/he/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/settings.po b/l10n/he/settings.po index 621702ce0b..afbda925de 100644 --- a/l10n/he/settings.po +++ b/l10n/he/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -120,7 +120,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "שומר.." diff --git a/l10n/he/user_ldap.po b/l10n/he/user_ldap.po index 0b18962145..c2c294c997 100644 --- a/l10n/he/user_ldap.po +++ b/l10n/he/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/user_webdavauth.po b/l10n/he/user_webdavauth.po index b93834a9e1..a1956eff5d 100644 --- a/l10n/he/user_webdavauth.po +++ b/l10n/he/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/core.po b/l10n/hi/core.po index 9f34c9b87f..b352ad1288 100644 --- a/l10n/hi/core.po +++ b/l10n/hi/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/files.po b/l10n/hi/files.po index 55cc3a81f3..058c4dc6c9 100644 --- a/l10n/hi/files.po +++ b/l10n/hi/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/files_encryption.po b/l10n/hi/files_encryption.po index 1d58cb0d5c..429b94708d 100644 --- a/l10n/hi/files_encryption.po +++ b/l10n/hi/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/files_external.po b/l10n/hi/files_external.po index 42d8715e7b..0bae5719b4 100644 --- a/l10n/hi/files_external.po +++ b/l10n/hi/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/files_sharing.po b/l10n/hi/files_sharing.po index 232619dab6..1691691d5d 100644 --- a/l10n/hi/files_sharing.po +++ b/l10n/hi/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/files_trashbin.po b/l10n/hi/files_trashbin.po index b963b8a880..dccfd5206e 100644 --- a/l10n/hi/files_trashbin.po +++ b/l10n/hi/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/files_versions.po b/l10n/hi/files_versions.po index 6f18e09abb..48dc088aa1 100644 --- a/l10n/hi/files_versions.po +++ b/l10n/hi/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/lib.po b/l10n/hi/lib.po index 010b36e742..454e8e165e 100644 --- a/l10n/hi/lib.po +++ b/l10n/hi/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/settings.po b/l10n/hi/settings.po index 0ba8649840..ce178a2bac 100644 --- a/l10n/hi/settings.po +++ b/l10n/hi/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -116,7 +116,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "" diff --git a/l10n/hi/user_ldap.po b/l10n/hi/user_ldap.po index 157f5a5524..7ed6220d5f 100644 --- a/l10n/hi/user_ldap.po +++ b/l10n/hi/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/user_webdavauth.po b/l10n/hi/user_webdavauth.po index ac6b020e07..c6cb2a2413 100644 --- a/l10n/hi/user_webdavauth.po +++ b/l10n/hi/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/core.po b/l10n/hr/core.po index 36ffbbaa91..6aa351f1a2 100644 --- a/l10n/hr/core.po +++ b/l10n/hr/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/files.po b/l10n/hr/files.po index 84b9539ca8..d1184dcf60 100644 --- a/l10n/hr/files.po +++ b/l10n/hr/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/files_encryption.po b/l10n/hr/files_encryption.po index 49ffacda4e..a4e8af9c56 100644 --- a/l10n/hr/files_encryption.po +++ b/l10n/hr/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/files_external.po b/l10n/hr/files_external.po index 57ba61e83d..af0395bead 100644 --- a/l10n/hr/files_external.po +++ b/l10n/hr/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/files_sharing.po b/l10n/hr/files_sharing.po index 965254276b..f3d4834e76 100644 --- a/l10n/hr/files_sharing.po +++ b/l10n/hr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/files_trashbin.po b/l10n/hr/files_trashbin.po index 7a1edc31fc..152f07f368 100644 --- a/l10n/hr/files_trashbin.po +++ b/l10n/hr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/files_versions.po b/l10n/hr/files_versions.po index 72c7f48a4c..12e83d69fb 100644 --- a/l10n/hr/files_versions.po +++ b/l10n/hr/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/lib.po b/l10n/hr/lib.po index 6ad791925e..ccd75c2b9e 100644 --- a/l10n/hr/lib.po +++ b/l10n/hr/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/settings.po b/l10n/hr/settings.po index 6577be3e2b..e6e8a04521 100644 --- a/l10n/hr/settings.po +++ b/l10n/hr/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -119,7 +119,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Spremanje..." diff --git a/l10n/hr/user_ldap.po b/l10n/hr/user_ldap.po index aa5d9446e9..5f2540a610 100644 --- a/l10n/hr/user_ldap.po +++ b/l10n/hr/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/user_webdavauth.po b/l10n/hr/user_webdavauth.po index 78b5589c2b..c9f410b1ad 100644 --- a/l10n/hr/user_webdavauth.po +++ b/l10n/hr/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/core.po b/l10n/hu_HU/core.po index 9706d55d51..be7a469931 100644 --- a/l10n/hu_HU/core.po +++ b/l10n/hu_HU/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index ef50be8ac5..c9c6e0609e 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/files.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/files_encryption.po b/l10n/hu_HU/files_encryption.po index b358c1d440..4bf863c88d 100644 --- a/l10n/hu_HU/files_encryption.po +++ b/l10n/hu_HU/files_encryption.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/files_external.po b/l10n/hu_HU/files_external.po index f9b482fd6c..0f4348a55c 100644 --- a/l10n/hu_HU/files_external.po +++ b/l10n/hu_HU/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/files_sharing.po b/l10n/hu_HU/files_sharing.po index 5ec7cac763..7897dc58ce 100644 --- a/l10n/hu_HU/files_sharing.po +++ b/l10n/hu_HU/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/files_trashbin.po b/l10n/hu_HU/files_trashbin.po index bf38caacad..dafccd8911 100644 --- a/l10n/hu_HU/files_trashbin.po +++ b/l10n/hu_HU/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/files_versions.po b/l10n/hu_HU/files_versions.po index 2202da640b..ef316affe7 100644 --- a/l10n/hu_HU/files_versions.po +++ b/l10n/hu_HU/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/lib.po b/l10n/hu_HU/lib.po index 4251d9809f..9bb5b3ab64 100644 --- a/l10n/hu_HU/lib.po +++ b/l10n/hu_HU/lib.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po index 61bef74075..b1e991aa40 100644 --- a/l10n/hu_HU/settings.po +++ b/l10n/hu_HU/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -120,7 +120,7 @@ msgstr "Hiba történt a programfrissítés közben" msgid "Updated" msgstr "Frissítve" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Mentés..." diff --git a/l10n/hu_HU/user_ldap.po b/l10n/hu_HU/user_ldap.po index 7e833a6522..804a0fd48f 100644 --- a/l10n/hu_HU/user_ldap.po +++ b/l10n/hu_HU/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/user_webdavauth.po b/l10n/hu_HU/user_webdavauth.po index d7f60e3f90..535e53af33 100644 --- a/l10n/hu_HU/user_webdavauth.po +++ b/l10n/hu_HU/user_webdavauth.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hy/files.po b/l10n/hy/files.po index 6548eb6fba..2bb63c0f9e 100644 --- a/l10n/hy/files.po +++ b/l10n/hy/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" diff --git a/l10n/hy/files_external.po b/l10n/hy/files_external.po index 262948abfc..2b6464945d 100644 --- a/l10n/hy/files_external.po +++ b/l10n/hy/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" diff --git a/l10n/hy/files_trashbin.po b/l10n/hy/files_trashbin.po index 2cde2eb10a..fe5d782b2a 100644 --- a/l10n/hy/files_trashbin.po +++ b/l10n/hy/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" diff --git a/l10n/hy/settings.po b/l10n/hy/settings.po index afe7a74849..55dedea9be 100644 --- a/l10n/hy/settings.po +++ b/l10n/hy/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" @@ -116,7 +116,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "" diff --git a/l10n/ia/core.po b/l10n/ia/core.po index 25be34611f..234d6e2961 100644 --- a/l10n/ia/core.po +++ b/l10n/ia/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/files.po b/l10n/ia/files.po index bd599c7c1b..db3b51415e 100644 --- a/l10n/ia/files.po +++ b/l10n/ia/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/files_encryption.po b/l10n/ia/files_encryption.po index 1fae34d8cc..075ccfc669 100644 --- a/l10n/ia/files_encryption.po +++ b/l10n/ia/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/files_external.po b/l10n/ia/files_external.po index f840fe05c1..51c38dce12 100644 --- a/l10n/ia/files_external.po +++ b/l10n/ia/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/files_sharing.po b/l10n/ia/files_sharing.po index 9c831a86e5..2648b60d7a 100644 --- a/l10n/ia/files_sharing.po +++ b/l10n/ia/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/files_trashbin.po b/l10n/ia/files_trashbin.po index e64cfd2633..711ce68f35 100644 --- a/l10n/ia/files_trashbin.po +++ b/l10n/ia/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/files_versions.po b/l10n/ia/files_versions.po index 3717ffc9d4..236cc1eb79 100644 --- a/l10n/ia/files_versions.po +++ b/l10n/ia/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/lib.po b/l10n/ia/lib.po index 318fe7a9c6..8c460ce15e 100644 --- a/l10n/ia/lib.po +++ b/l10n/ia/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/settings.po b/l10n/ia/settings.po index 41b5e193ab..0c7beb23e9 100644 --- a/l10n/ia/settings.po +++ b/l10n/ia/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -118,7 +118,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "" diff --git a/l10n/ia/user_ldap.po b/l10n/ia/user_ldap.po index 456021e477..5098a66b47 100644 --- a/l10n/ia/user_ldap.po +++ b/l10n/ia/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/user_webdavauth.po b/l10n/ia/user_webdavauth.po index dde76722d6..5b5b3f3347 100644 --- a/l10n/ia/user_webdavauth.po +++ b/l10n/ia/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/core.po b/l10n/id/core.po index c45ad98fd2..0a94ad4da8 100644 --- a/l10n/id/core.po +++ b/l10n/id/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/files.po b/l10n/id/files.po index 998d6e5006..cd5200faba 100644 --- a/l10n/id/files.po +++ b/l10n/id/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/files_encryption.po b/l10n/id/files_encryption.po index 6adbc04ba9..752d0d3fa5 100644 --- a/l10n/id/files_encryption.po +++ b/l10n/id/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/files_external.po b/l10n/id/files_external.po index 8ee624833a..64d7c1ec65 100644 --- a/l10n/id/files_external.po +++ b/l10n/id/files_external.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/files_sharing.po b/l10n/id/files_sharing.po index 0efab864e7..2fb4cd8cb0 100644 --- a/l10n/id/files_sharing.po +++ b/l10n/id/files_sharing.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/files_trashbin.po b/l10n/id/files_trashbin.po index fde2b7d5cb..03ff55760c 100644 --- a/l10n/id/files_trashbin.po +++ b/l10n/id/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/files_versions.po b/l10n/id/files_versions.po index f63611d434..a886cd3037 100644 --- a/l10n/id/files_versions.po +++ b/l10n/id/files_versions.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/lib.po b/l10n/id/lib.po index d014bc056e..2da890b5ee 100644 --- a/l10n/id/lib.po +++ b/l10n/id/lib.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/settings.po b/l10n/id/settings.po index 2dcd31a4c7..d9e1287658 100644 --- a/l10n/id/settings.po +++ b/l10n/id/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -122,7 +122,7 @@ msgstr "Gagal ketika memperbarui aplikasi" msgid "Updated" msgstr "Diperbarui" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Menyimpan..." diff --git a/l10n/id/user_ldap.po b/l10n/id/user_ldap.po index b2e46704a2..f972150841 100644 --- a/l10n/id/user_ldap.po +++ b/l10n/id/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/user_webdavauth.po b/l10n/id/user_webdavauth.po index 0ac81cebe6..89a9bc5bcd 100644 --- a/l10n/id/user_webdavauth.po +++ b/l10n/id/user_webdavauth.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/core.po b/l10n/is/core.po index 7fffb7d1dc..ba97904bd6 100644 --- a/l10n/is/core.po +++ b/l10n/is/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/files.po b/l10n/is/files.po index 3b6c150aeb..f2748bea44 100644 --- a/l10n/is/files.po +++ b/l10n/is/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/files_encryption.po b/l10n/is/files_encryption.po index e5df846e8b..d1357c26c4 100644 --- a/l10n/is/files_encryption.po +++ b/l10n/is/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/files_external.po b/l10n/is/files_external.po index f3914d98cf..f4a26d339d 100644 --- a/l10n/is/files_external.po +++ b/l10n/is/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/files_sharing.po b/l10n/is/files_sharing.po index 89c5f2cc2a..cab803385d 100644 --- a/l10n/is/files_sharing.po +++ b/l10n/is/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/files_trashbin.po b/l10n/is/files_trashbin.po index ca786d8b1c..8955f0bf36 100644 --- a/l10n/is/files_trashbin.po +++ b/l10n/is/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/files_versions.po b/l10n/is/files_versions.po index 5717e05eff..00eb5c1b8c 100644 --- a/l10n/is/files_versions.po +++ b/l10n/is/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/lib.po b/l10n/is/lib.po index e64d420529..3d8e511ed1 100644 --- a/l10n/is/lib.po +++ b/l10n/is/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/settings.po b/l10n/is/settings.po index eea0a0b3e9..7a60fd8a20 100644 --- a/l10n/is/settings.po +++ b/l10n/is/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -117,7 +117,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Er að vista ..." diff --git a/l10n/is/user_ldap.po b/l10n/is/user_ldap.po index 6b6e486032..fa68224263 100644 --- a/l10n/is/user_ldap.po +++ b/l10n/is/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/user_webdavauth.po b/l10n/is/user_webdavauth.po index d87d79fafb..66194d2dae 100644 --- a/l10n/is/user_webdavauth.po +++ b/l10n/is/user_webdavauth.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/core.po b/l10n/it/core.po index 9abf2d1c04..6eb124460f 100644 --- a/l10n/it/core.po +++ b/l10n/it/core.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/files.po b/l10n/it/files.po index e4a9e38f1d..dc9bdc115b 100644 --- a/l10n/it/files.po +++ b/l10n/it/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/files_encryption.po b/l10n/it/files_encryption.po index 3839ab13a9..22da6ecfe7 100644 --- a/l10n/it/files_encryption.po +++ b/l10n/it/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/files_external.po b/l10n/it/files_external.po index 5743de999b..fb50f4d4d8 100644 --- a/l10n/it/files_external.po +++ b/l10n/it/files_external.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/files_sharing.po b/l10n/it/files_sharing.po index 38971183ab..86370c04ea 100644 --- a/l10n/it/files_sharing.po +++ b/l10n/it/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/files_trashbin.po b/l10n/it/files_trashbin.po index 4a03d9e735..a585ede393 100644 --- a/l10n/it/files_trashbin.po +++ b/l10n/it/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/files_versions.po b/l10n/it/files_versions.po index 1acb6a0db0..24390f266e 100644 --- a/l10n/it/files_versions.po +++ b/l10n/it/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/lib.po b/l10n/it/lib.po index 4daad98778..178f9da6cc 100644 --- a/l10n/it/lib.po +++ b/l10n/it/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index 06ec6749b5..4e47bbc088 100644 --- a/l10n/it/settings.po +++ b/l10n/it/settings.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -123,7 +123,7 @@ msgstr "Errore durante l'aggiornamento" msgid "Updated" msgstr "Aggiornato" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Salvataggio in corso..." diff --git a/l10n/it/user_ldap.po b/l10n/it/user_ldap.po index 780bc6319c..4cc1f41826 100644 --- a/l10n/it/user_ldap.po +++ b/l10n/it/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/user_webdavauth.po b/l10n/it/user_webdavauth.po index 3dca23310f..f88d74e447 100644 --- a/l10n/it/user_webdavauth.po +++ b/l10n/it/user_webdavauth.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/core.po b/l10n/ja_JP/core.po index ebe76b82ec..fd5f9d065c 100644 --- a/l10n/ja_JP/core.po +++ b/l10n/ja_JP/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/files.po b/l10n/ja_JP/files.po index 8ea8587439..8348f354bd 100644 --- a/l10n/ja_JP/files.po +++ b/l10n/ja_JP/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/files_encryption.po b/l10n/ja_JP/files_encryption.po index 4d2e89a259..474babe04a 100644 --- a/l10n/ja_JP/files_encryption.po +++ b/l10n/ja_JP/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/files_external.po b/l10n/ja_JP/files_external.po index b084e4a066..ad9c4adb74 100644 --- a/l10n/ja_JP/files_external.po +++ b/l10n/ja_JP/files_external.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/files_sharing.po b/l10n/ja_JP/files_sharing.po index 876ebabb36..443064306d 100644 --- a/l10n/ja_JP/files_sharing.po +++ b/l10n/ja_JP/files_sharing.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/files_trashbin.po b/l10n/ja_JP/files_trashbin.po index f16dc84de5..2130acb86f 100644 --- a/l10n/ja_JP/files_trashbin.po +++ b/l10n/ja_JP/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/files_versions.po b/l10n/ja_JP/files_versions.po index d052012496..480fb5e1fe 100644 --- a/l10n/ja_JP/files_versions.po +++ b/l10n/ja_JP/files_versions.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/lib.po b/l10n/ja_JP/lib.po index 8d6bc8df10..047e7df7cb 100644 --- a/l10n/ja_JP/lib.po +++ b/l10n/ja_JP/lib.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/settings.po b/l10n/ja_JP/settings.po index 265d861a3d..2cb5b86b57 100644 --- a/l10n/ja_JP/settings.po +++ b/l10n/ja_JP/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" @@ -121,7 +121,7 @@ msgstr "アプリの更新中にエラーが発生" msgid "Updated" msgstr "更新済み" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "保存中..." diff --git a/l10n/ja_JP/user_ldap.po b/l10n/ja_JP/user_ldap.po index 75cc31572a..d5116ad226 100644 --- a/l10n/ja_JP/user_ldap.po +++ b/l10n/ja_JP/user_ldap.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/user_webdavauth.po b/l10n/ja_JP/user_webdavauth.po index 3b17802d24..2341b9f95c 100644 --- a/l10n/ja_JP/user_webdavauth.po +++ b/l10n/ja_JP/user_webdavauth.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka/core.po b/l10n/ka/core.po index cb2aaf68ff..63d4dff145 100644 --- a/l10n/ka/core.po +++ b/l10n/ka/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka/files.po b/l10n/ka/files.po index 93cf94b26a..6dcd0b94c0 100644 --- a/l10n/ka/files.po +++ b/l10n/ka/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka/files_encryption.po b/l10n/ka/files_encryption.po index adea9e1d6f..357e27ab92 100644 --- a/l10n/ka/files_encryption.po +++ b/l10n/ka/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka/files_external.po b/l10n/ka/files_external.po index 5a7c867641..1d2bb5cb2b 100644 --- a/l10n/ka/files_external.po +++ b/l10n/ka/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka/files_sharing.po b/l10n/ka/files_sharing.po index 3d6704f80b..622310cbd5 100644 --- a/l10n/ka/files_sharing.po +++ b/l10n/ka/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka/files_trashbin.po b/l10n/ka/files_trashbin.po index f1f26c53dd..e26f005489 100644 --- a/l10n/ka/files_trashbin.po +++ b/l10n/ka/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka/files_versions.po b/l10n/ka/files_versions.po index 55ea3250c2..302be1bdbf 100644 --- a/l10n/ka/files_versions.po +++ b/l10n/ka/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka/lib.po b/l10n/ka/lib.po index c401f407ac..299b3686fb 100644 --- a/l10n/ka/lib.po +++ b/l10n/ka/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka/settings.po b/l10n/ka/settings.po index 1d2ec64e03..0a85ca4431 100644 --- a/l10n/ka/settings.po +++ b/l10n/ka/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -116,7 +116,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "" diff --git a/l10n/ka/user_ldap.po b/l10n/ka/user_ldap.po index 0dfd81d2bb..1396bede36 100644 --- a/l10n/ka/user_ldap.po +++ b/l10n/ka/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka/user_webdavauth.po b/l10n/ka/user_webdavauth.po index 9cc3db2b60..5433bc595c 100644 --- a/l10n/ka/user_webdavauth.po +++ b/l10n/ka/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/core.po b/l10n/ka_GE/core.po index 8da06db432..ea4a85683b 100644 --- a/l10n/ka_GE/core.po +++ b/l10n/ka_GE/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/files.po b/l10n/ka_GE/files.po index b23917765c..d0e564db20 100644 --- a/l10n/ka_GE/files.po +++ b/l10n/ka_GE/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/files_encryption.po b/l10n/ka_GE/files_encryption.po index b1bc051547..538122996f 100644 --- a/l10n/ka_GE/files_encryption.po +++ b/l10n/ka_GE/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/files_external.po b/l10n/ka_GE/files_external.po index 54bce79203..29e278e6e5 100644 --- a/l10n/ka_GE/files_external.po +++ b/l10n/ka_GE/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/files_sharing.po b/l10n/ka_GE/files_sharing.po index 0d46e1c1a5..968899752d 100644 --- a/l10n/ka_GE/files_sharing.po +++ b/l10n/ka_GE/files_sharing.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/files_trashbin.po b/l10n/ka_GE/files_trashbin.po index ec48b3823a..3ed31fdce6 100644 --- a/l10n/ka_GE/files_trashbin.po +++ b/l10n/ka_GE/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/files_versions.po b/l10n/ka_GE/files_versions.po index ecda637d05..13de4c38f4 100644 --- a/l10n/ka_GE/files_versions.po +++ b/l10n/ka_GE/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/lib.po b/l10n/ka_GE/lib.po index c36273be03..87dbc9fbb6 100644 --- a/l10n/ka_GE/lib.po +++ b/l10n/ka_GE/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/settings.po b/l10n/ka_GE/settings.po index dd0f972d50..46d26abbd5 100644 --- a/l10n/ka_GE/settings.po +++ b/l10n/ka_GE/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -118,7 +118,7 @@ msgstr "შეცდომა აპლიკაციის განახლ msgid "Updated" msgstr "განახლებულია" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "შენახვა..." diff --git a/l10n/ka_GE/user_ldap.po b/l10n/ka_GE/user_ldap.po index 69e1df8eac..6931493d23 100644 --- a/l10n/ka_GE/user_ldap.po +++ b/l10n/ka_GE/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/user_webdavauth.po b/l10n/ka_GE/user_webdavauth.po index 48f9fba866..a6662b7e11 100644 --- a/l10n/ka_GE/user_webdavauth.po +++ b/l10n/ka_GE/user_webdavauth.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/kn/core.po b/l10n/kn/core.po index 1a32e4aae2..481dd8e0bb 100644 --- a/l10n/kn/core.po +++ b/l10n/kn/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/kn/files.po b/l10n/kn/files.po index 60c8c634e2..1345b2d0fe 100644 --- a/l10n/kn/files.po +++ b/l10n/kn/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/kn/files_encryption.po b/l10n/kn/files_encryption.po index 13626aad5a..dba23393ea 100644 --- a/l10n/kn/files_encryption.po +++ b/l10n/kn/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/kn/files_external.po b/l10n/kn/files_external.po index 60bd0f142f..ed14ed557d 100644 --- a/l10n/kn/files_external.po +++ b/l10n/kn/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/kn/files_sharing.po b/l10n/kn/files_sharing.po index 04f82d2e65..e561733a10 100644 --- a/l10n/kn/files_sharing.po +++ b/l10n/kn/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/kn/files_trashbin.po b/l10n/kn/files_trashbin.po index 3547c1bf8b..12ddf3ce85 100644 --- a/l10n/kn/files_trashbin.po +++ b/l10n/kn/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/kn/files_versions.po b/l10n/kn/files_versions.po index a8249bb2ba..c15d71b56c 100644 --- a/l10n/kn/files_versions.po +++ b/l10n/kn/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/kn/lib.po b/l10n/kn/lib.po index dce059b9c8..b921bdf20d 100644 --- a/l10n/kn/lib.po +++ b/l10n/kn/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/kn/settings.po b/l10n/kn/settings.po index 9dbdfea614..c49b26512b 100644 --- a/l10n/kn/settings.po +++ b/l10n/kn/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" @@ -116,7 +116,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "" diff --git a/l10n/kn/user_ldap.po b/l10n/kn/user_ldap.po index 1b252cb419..76ed5e5bc5 100644 --- a/l10n/kn/user_ldap.po +++ b/l10n/kn/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/kn/user_webdavauth.po b/l10n/kn/user_webdavauth.po index c4192a2576..1dde34b41e 100644 --- a/l10n/kn/user_webdavauth.po +++ b/l10n/kn/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/core.po b/l10n/ko/core.po index aa6678269d..a4c7b6bbb9 100644 --- a/l10n/ko/core.po +++ b/l10n/ko/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/files.po b/l10n/ko/files.po index 454decde7b..08e22f63b5 100644 --- a/l10n/ko/files.po +++ b/l10n/ko/files.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/files_encryption.po b/l10n/ko/files_encryption.po index 874e483240..9a2fc1b35b 100644 --- a/l10n/ko/files_encryption.po +++ b/l10n/ko/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/files_external.po b/l10n/ko/files_external.po index ceb77ef977..b2dbdea9bd 100644 --- a/l10n/ko/files_external.po +++ b/l10n/ko/files_external.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/files_sharing.po b/l10n/ko/files_sharing.po index eacbe1a4eb..9810e11baf 100644 --- a/l10n/ko/files_sharing.po +++ b/l10n/ko/files_sharing.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/files_trashbin.po b/l10n/ko/files_trashbin.po index 4da8a759ef..fae4215410 100644 --- a/l10n/ko/files_trashbin.po +++ b/l10n/ko/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/files_versions.po b/l10n/ko/files_versions.po index 2e8f8fec0f..101de33dbe 100644 --- a/l10n/ko/files_versions.po +++ b/l10n/ko/files_versions.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/lib.po b/l10n/ko/lib.po index cc10281988..c70b3eeb9e 100644 --- a/l10n/ko/lib.po +++ b/l10n/ko/lib.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index 3ff506d4a9..098a8eef8f 100644 --- a/l10n/ko/settings.po +++ b/l10n/ko/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -121,7 +121,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "저장 중..." diff --git a/l10n/ko/user_ldap.po b/l10n/ko/user_ldap.po index 299a770209..12de201d71 100644 --- a/l10n/ko/user_ldap.po +++ b/l10n/ko/user_ldap.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/user_webdavauth.po b/l10n/ko/user_webdavauth.po index b3a842c9f9..02c3920ceb 100644 --- a/l10n/ko/user_webdavauth.po +++ b/l10n/ko/user_webdavauth.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/core.po b/l10n/ku_IQ/core.po index 1a5f27625f..214b67e0c4 100644 --- a/l10n/ku_IQ/core.po +++ b/l10n/ku_IQ/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/files.po b/l10n/ku_IQ/files.po index 8a381380be..1ea4fe01e8 100644 --- a/l10n/ku_IQ/files.po +++ b/l10n/ku_IQ/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/files_encryption.po b/l10n/ku_IQ/files_encryption.po index e8ffbf31f9..afa8a7eff0 100644 --- a/l10n/ku_IQ/files_encryption.po +++ b/l10n/ku_IQ/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/files_external.po b/l10n/ku_IQ/files_external.po index 615505f25c..0ebebe4074 100644 --- a/l10n/ku_IQ/files_external.po +++ b/l10n/ku_IQ/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/files_sharing.po b/l10n/ku_IQ/files_sharing.po index fc8210c054..5294fa1042 100644 --- a/l10n/ku_IQ/files_sharing.po +++ b/l10n/ku_IQ/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/files_trashbin.po b/l10n/ku_IQ/files_trashbin.po index 7f649909e0..466bf259a3 100644 --- a/l10n/ku_IQ/files_trashbin.po +++ b/l10n/ku_IQ/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/files_versions.po b/l10n/ku_IQ/files_versions.po index 149ad35dbf..8f2cdbd21e 100644 --- a/l10n/ku_IQ/files_versions.po +++ b/l10n/ku_IQ/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/lib.po b/l10n/ku_IQ/lib.po index 72e87c6312..4a9acfed36 100644 --- a/l10n/ku_IQ/lib.po +++ b/l10n/ku_IQ/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/settings.po b/l10n/ku_IQ/settings.po index 0d5a13796a..2c83b2fbbf 100644 --- a/l10n/ku_IQ/settings.po +++ b/l10n/ku_IQ/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -116,7 +116,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "پاشکه‌وتده‌کات..." diff --git a/l10n/ku_IQ/user_ldap.po b/l10n/ku_IQ/user_ldap.po index 89de1afb37..cc74bf7a41 100644 --- a/l10n/ku_IQ/user_ldap.po +++ b/l10n/ku_IQ/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/user_webdavauth.po b/l10n/ku_IQ/user_webdavauth.po index 3acc098249..e623bd161b 100644 --- a/l10n/ku_IQ/user_webdavauth.po +++ b/l10n/ku_IQ/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/core.po b/l10n/lb/core.po index 604cdfeb85..f7fd085575 100644 --- a/l10n/lb/core.po +++ b/l10n/lb/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/files.po b/l10n/lb/files.po index 96058281e7..8aa5780abd 100644 --- a/l10n/lb/files.po +++ b/l10n/lb/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/files_encryption.po b/l10n/lb/files_encryption.po index 1eca9f9580..0632e6b5ab 100644 --- a/l10n/lb/files_encryption.po +++ b/l10n/lb/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/files_external.po b/l10n/lb/files_external.po index b923b07ae8..e0bf824f95 100644 --- a/l10n/lb/files_external.po +++ b/l10n/lb/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/files_sharing.po b/l10n/lb/files_sharing.po index 972dce0278..a8c12d1704 100644 --- a/l10n/lb/files_sharing.po +++ b/l10n/lb/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/files_trashbin.po b/l10n/lb/files_trashbin.po index d774d9ccdc..046e687bd2 100644 --- a/l10n/lb/files_trashbin.po +++ b/l10n/lb/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/files_versions.po b/l10n/lb/files_versions.po index d28d02613b..0daea383b9 100644 --- a/l10n/lb/files_versions.po +++ b/l10n/lb/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/lib.po b/l10n/lb/lib.po index de22578b7f..39159b7fc2 100644 --- a/l10n/lb/lib.po +++ b/l10n/lb/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/settings.po b/l10n/lb/settings.po index c80db5e831..c657f9b728 100644 --- a/l10n/lb/settings.po +++ b/l10n/lb/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -117,7 +117,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Speicheren..." diff --git a/l10n/lb/user_ldap.po b/l10n/lb/user_ldap.po index f1d3a5397d..43ff3ad1b1 100644 --- a/l10n/lb/user_ldap.po +++ b/l10n/lb/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/user_webdavauth.po b/l10n/lb/user_webdavauth.po index 2b1c6404d5..093341b3d2 100644 --- a/l10n/lb/user_webdavauth.po +++ b/l10n/lb/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/core.po b/l10n/lt_LT/core.po index 7c12af72de..ad04a7e8c8 100644 --- a/l10n/lt_LT/core.po +++ b/l10n/lt_LT/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files.po b/l10n/lt_LT/files.po index d2a357328a..7bc5f5a3e2 100644 --- a/l10n/lt_LT/files.po +++ b/l10n/lt_LT/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files_encryption.po b/l10n/lt_LT/files_encryption.po index 34e4264e6c..a3629e2cc4 100644 --- a/l10n/lt_LT/files_encryption.po +++ b/l10n/lt_LT/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files_external.po b/l10n/lt_LT/files_external.po index 89e5eb1d39..de18742d78 100644 --- a/l10n/lt_LT/files_external.po +++ b/l10n/lt_LT/files_external.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files_sharing.po b/l10n/lt_LT/files_sharing.po index c4369f8248..a2553793fb 100644 --- a/l10n/lt_LT/files_sharing.po +++ b/l10n/lt_LT/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files_trashbin.po b/l10n/lt_LT/files_trashbin.po index 8117996577..f427f0e01f 100644 --- a/l10n/lt_LT/files_trashbin.po +++ b/l10n/lt_LT/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files_versions.po b/l10n/lt_LT/files_versions.po index 5530b9feaf..1572027742 100644 --- a/l10n/lt_LT/files_versions.po +++ b/l10n/lt_LT/files_versions.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/lib.po b/l10n/lt_LT/lib.po index 798d9c6cb1..766f8e06e9 100644 --- a/l10n/lt_LT/lib.po +++ b/l10n/lt_LT/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/settings.po b/l10n/lt_LT/settings.po index 838d97af34..79929cea32 100644 --- a/l10n/lt_LT/settings.po +++ b/l10n/lt_LT/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -118,7 +118,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Saugoma.." diff --git a/l10n/lt_LT/user_ldap.po b/l10n/lt_LT/user_ldap.po index bf16727734..a27f44400d 100644 --- a/l10n/lt_LT/user_ldap.po +++ b/l10n/lt_LT/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/user_webdavauth.po b/l10n/lt_LT/user_webdavauth.po index 086cccfdd2..9f842d8539 100644 --- a/l10n/lt_LT/user_webdavauth.po +++ b/l10n/lt_LT/user_webdavauth.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/core.po b/l10n/lv/core.po index a7c8d5630c..921311120e 100644 --- a/l10n/lv/core.po +++ b/l10n/lv/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/files.po b/l10n/lv/files.po index b59d7a6bfa..de2375feaa 100644 --- a/l10n/lv/files.po +++ b/l10n/lv/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/files_encryption.po b/l10n/lv/files_encryption.po index cd156c95e8..2b049a1c7e 100644 --- a/l10n/lv/files_encryption.po +++ b/l10n/lv/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/files_external.po b/l10n/lv/files_external.po index 8e5ca0c841..0c6f652630 100644 --- a/l10n/lv/files_external.po +++ b/l10n/lv/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/files_sharing.po b/l10n/lv/files_sharing.po index 74aca9c22a..eba98a874e 100644 --- a/l10n/lv/files_sharing.po +++ b/l10n/lv/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/files_trashbin.po b/l10n/lv/files_trashbin.po index 5cc002eaa1..66670fca8c 100644 --- a/l10n/lv/files_trashbin.po +++ b/l10n/lv/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/files_versions.po b/l10n/lv/files_versions.po index 095a8a33b5..9c9098fdd9 100644 --- a/l10n/lv/files_versions.po +++ b/l10n/lv/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/lib.po b/l10n/lv/lib.po index 42c9ad2273..1d47fb3793 100644 --- a/l10n/lv/lib.po +++ b/l10n/lv/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/settings.po b/l10n/lv/settings.po index ee26dbf4f4..fd7f24987d 100644 --- a/l10n/lv/settings.po +++ b/l10n/lv/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -119,7 +119,7 @@ msgstr "Kļūda, atjauninot lietotni" msgid "Updated" msgstr "Atjaunināta" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Saglabā..." diff --git a/l10n/lv/user_ldap.po b/l10n/lv/user_ldap.po index 5b474e294c..d90ac74dcb 100644 --- a/l10n/lv/user_ldap.po +++ b/l10n/lv/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/user_webdavauth.po b/l10n/lv/user_webdavauth.po index 0874111e98..d866091dc0 100644 --- a/l10n/lv/user_webdavauth.po +++ b/l10n/lv/user_webdavauth.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/core.po b/l10n/mk/core.po index d5c1c8cd7d..81face26f6 100644 --- a/l10n/mk/core.po +++ b/l10n/mk/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/files.po b/l10n/mk/files.po index 48c74acdf5..f6c46aea44 100644 --- a/l10n/mk/files.po +++ b/l10n/mk/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/files_encryption.po b/l10n/mk/files_encryption.po index 4a1a4c47ff..2d19fc1765 100644 --- a/l10n/mk/files_encryption.po +++ b/l10n/mk/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/files_external.po b/l10n/mk/files_external.po index 7326c9f28f..fe3c349323 100644 --- a/l10n/mk/files_external.po +++ b/l10n/mk/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/files_sharing.po b/l10n/mk/files_sharing.po index 374577a744..8f8d15bd33 100644 --- a/l10n/mk/files_sharing.po +++ b/l10n/mk/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/files_trashbin.po b/l10n/mk/files_trashbin.po index bcda3004eb..5b9f5e38ca 100644 --- a/l10n/mk/files_trashbin.po +++ b/l10n/mk/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/files_versions.po b/l10n/mk/files_versions.po index 84dee8dad3..0f47e5a9dd 100644 --- a/l10n/mk/files_versions.po +++ b/l10n/mk/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/lib.po b/l10n/mk/lib.po index 98e3ad7085..6ee3371582 100644 --- a/l10n/mk/lib.po +++ b/l10n/mk/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/settings.po b/l10n/mk/settings.po index 3235daed11..6294b438af 100644 --- a/l10n/mk/settings.po +++ b/l10n/mk/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -119,7 +119,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Снимам..." diff --git a/l10n/mk/user_ldap.po b/l10n/mk/user_ldap.po index a6395bcf5a..bf3591d3a7 100644 --- a/l10n/mk/user_ldap.po +++ b/l10n/mk/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/user_webdavauth.po b/l10n/mk/user_webdavauth.po index e19772ebc7..f396468a5d 100644 --- a/l10n/mk/user_webdavauth.po +++ b/l10n/mk/user_webdavauth.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/core.po b/l10n/ms_MY/core.po index 057c4b98a7..f15ffdc57f 100644 --- a/l10n/ms_MY/core.po +++ b/l10n/ms_MY/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/files.po b/l10n/ms_MY/files.po index 0ff8b67f0b..e6c9a00ff3 100644 --- a/l10n/ms_MY/files.po +++ b/l10n/ms_MY/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/files_encryption.po b/l10n/ms_MY/files_encryption.po index 2704af4e7d..9515dfd0de 100644 --- a/l10n/ms_MY/files_encryption.po +++ b/l10n/ms_MY/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/files_external.po b/l10n/ms_MY/files_external.po index 23fe53ff4b..8ecc367a1e 100644 --- a/l10n/ms_MY/files_external.po +++ b/l10n/ms_MY/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/files_sharing.po b/l10n/ms_MY/files_sharing.po index 11553a7aa2..db23a1af3f 100644 --- a/l10n/ms_MY/files_sharing.po +++ b/l10n/ms_MY/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/files_trashbin.po b/l10n/ms_MY/files_trashbin.po index 78cba637f3..8c4564ff8d 100644 --- a/l10n/ms_MY/files_trashbin.po +++ b/l10n/ms_MY/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/files_versions.po b/l10n/ms_MY/files_versions.po index d66a36bc7a..6f1366cd61 100644 --- a/l10n/ms_MY/files_versions.po +++ b/l10n/ms_MY/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/lib.po b/l10n/ms_MY/lib.po index a78f7f6af7..fb311e81a8 100644 --- a/l10n/ms_MY/lib.po +++ b/l10n/ms_MY/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/settings.po b/l10n/ms_MY/settings.po index 6dd34bb284..53d5141ad2 100644 --- a/l10n/ms_MY/settings.po +++ b/l10n/ms_MY/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -120,7 +120,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Simpan..." diff --git a/l10n/ms_MY/user_ldap.po b/l10n/ms_MY/user_ldap.po index 71e5c5675f..f99ce5db09 100644 --- a/l10n/ms_MY/user_ldap.po +++ b/l10n/ms_MY/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/user_webdavauth.po b/l10n/ms_MY/user_webdavauth.po index 51db2d612e..c2284a1360 100644 --- a/l10n/ms_MY/user_webdavauth.po +++ b/l10n/ms_MY/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/core.po b/l10n/my_MM/core.po index 5b10a84f57..86a5d60cc6 100644 --- a/l10n/my_MM/core.po +++ b/l10n/my_MM/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/files.po b/l10n/my_MM/files.po index 5e8bca7fd6..1c3bdb9087 100644 --- a/l10n/my_MM/files.po +++ b/l10n/my_MM/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/files_encryption.po b/l10n/my_MM/files_encryption.po index 330468c977..8187a95657 100644 --- a/l10n/my_MM/files_encryption.po +++ b/l10n/my_MM/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/files_external.po b/l10n/my_MM/files_external.po index 66757d0328..3eb55f030a 100644 --- a/l10n/my_MM/files_external.po +++ b/l10n/my_MM/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/files_sharing.po b/l10n/my_MM/files_sharing.po index af1867532c..548c22898b 100644 --- a/l10n/my_MM/files_sharing.po +++ b/l10n/my_MM/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/files_trashbin.po b/l10n/my_MM/files_trashbin.po index 86cfe94392..dbf8725846 100644 --- a/l10n/my_MM/files_trashbin.po +++ b/l10n/my_MM/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/files_versions.po b/l10n/my_MM/files_versions.po index 062c86e62e..a2ba5e272d 100644 --- a/l10n/my_MM/files_versions.po +++ b/l10n/my_MM/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/lib.po b/l10n/my_MM/lib.po index 054469003c..e6d187a22f 100644 --- a/l10n/my_MM/lib.po +++ b/l10n/my_MM/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/settings.po b/l10n/my_MM/settings.po index f4eaf7ebb8..3b64f4963b 100644 --- a/l10n/my_MM/settings.po +++ b/l10n/my_MM/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -116,7 +116,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "" diff --git a/l10n/my_MM/user_ldap.po b/l10n/my_MM/user_ldap.po index 4bf54c5dde..11909d9de1 100644 --- a/l10n/my_MM/user_ldap.po +++ b/l10n/my_MM/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/user_webdavauth.po b/l10n/my_MM/user_webdavauth.po index 7bd78a09d5..bfba4e1cd6 100644 --- a/l10n/my_MM/user_webdavauth.po +++ b/l10n/my_MM/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/core.po b/l10n/nb_NO/core.po index bb7ae5b0cf..3a4eaba426 100644 --- a/l10n/nb_NO/core.po +++ b/l10n/nb_NO/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po index a3ffbdf4fe..270f2a77d9 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/files.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files_encryption.po b/l10n/nb_NO/files_encryption.po index e584a2b471..a4f3b39ecb 100644 --- a/l10n/nb_NO/files_encryption.po +++ b/l10n/nb_NO/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files_external.po b/l10n/nb_NO/files_external.po index 9f22c654cc..24d044818d 100644 --- a/l10n/nb_NO/files_external.po +++ b/l10n/nb_NO/files_external.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files_sharing.po b/l10n/nb_NO/files_sharing.po index a34b1e9209..aab4069ed7 100644 --- a/l10n/nb_NO/files_sharing.po +++ b/l10n/nb_NO/files_sharing.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files_trashbin.po b/l10n/nb_NO/files_trashbin.po index 41f5263d0d..dde092aba9 100644 --- a/l10n/nb_NO/files_trashbin.po +++ b/l10n/nb_NO/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files_versions.po b/l10n/nb_NO/files_versions.po index 983a89bf40..5f9387a60f 100644 --- a/l10n/nb_NO/files_versions.po +++ b/l10n/nb_NO/files_versions.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/lib.po b/l10n/nb_NO/lib.po index 30fc6e562c..ac2d472e3a 100644 --- a/l10n/nb_NO/lib.po +++ b/l10n/nb_NO/lib.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/settings.po b/l10n/nb_NO/settings.po index 2c505cf1a2..4f57396323 100644 --- a/l10n/nb_NO/settings.po +++ b/l10n/nb_NO/settings.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -124,7 +124,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Lagrer..." diff --git a/l10n/nb_NO/user_ldap.po b/l10n/nb_NO/user_ldap.po index ce3caf482b..3102274ae5 100644 --- a/l10n/nb_NO/user_ldap.po +++ b/l10n/nb_NO/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/user_webdavauth.po b/l10n/nb_NO/user_webdavauth.po index c11bcf1619..0bdc4ebc7b 100644 --- a/l10n/nb_NO/user_webdavauth.po +++ b/l10n/nb_NO/user_webdavauth.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ne/core.po b/l10n/ne/core.po index f1c0c77ebf..fb5ac097bd 100644 --- a/l10n/ne/core.po +++ b/l10n/ne/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ne/files.po b/l10n/ne/files.po index ed60ef595b..186deace5c 100644 --- a/l10n/ne/files.po +++ b/l10n/ne/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ne/files_encryption.po b/l10n/ne/files_encryption.po index c6346833fa..adf3985dab 100644 --- a/l10n/ne/files_encryption.po +++ b/l10n/ne/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ne/files_external.po b/l10n/ne/files_external.po index 0f0c281163..bacdd21335 100644 --- a/l10n/ne/files_external.po +++ b/l10n/ne/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ne/files_sharing.po b/l10n/ne/files_sharing.po index 2eecd24e2b..e18a1db2d7 100644 --- a/l10n/ne/files_sharing.po +++ b/l10n/ne/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ne/files_trashbin.po b/l10n/ne/files_trashbin.po index aa7b4136e2..16034c1cb4 100644 --- a/l10n/ne/files_trashbin.po +++ b/l10n/ne/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ne/files_versions.po b/l10n/ne/files_versions.po index b318af6e7e..234a1c0d8f 100644 --- a/l10n/ne/files_versions.po +++ b/l10n/ne/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ne/lib.po b/l10n/ne/lib.po index c8340a3f31..3a91dd5e2d 100644 --- a/l10n/ne/lib.po +++ b/l10n/ne/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ne/settings.po b/l10n/ne/settings.po index 21112ba305..90251cee26 100644 --- a/l10n/ne/settings.po +++ b/l10n/ne/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" @@ -116,7 +116,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "" diff --git a/l10n/ne/user_ldap.po b/l10n/ne/user_ldap.po index 67b1336777..a589c8483d 100644 --- a/l10n/ne/user_ldap.po +++ b/l10n/ne/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ne/user_webdavauth.po b/l10n/ne/user_webdavauth.po index 9db1e1b180..64e025a6be 100644 --- a/l10n/ne/user_webdavauth.po +++ b/l10n/ne/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/core.po b/l10n/nl/core.po index 3238df3e9b..391f1ef71e 100644 --- a/l10n/nl/core.po +++ b/l10n/nl/core.po @@ -21,8 +21,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/files.po b/l10n/nl/files.po index b551cb1c20..a3c69c4f2d 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/files.po @@ -19,8 +19,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/files_encryption.po b/l10n/nl/files_encryption.po index f716ee20fa..76bec86568 100644 --- a/l10n/nl/files_encryption.po +++ b/l10n/nl/files_encryption.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/files_external.po b/l10n/nl/files_external.po index 14fa7898a5..f1fefe88e1 100644 --- a/l10n/nl/files_external.po +++ b/l10n/nl/files_external.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/files_sharing.po b/l10n/nl/files_sharing.po index 0bdafc3531..e64ffbe44b 100644 --- a/l10n/nl/files_sharing.po +++ b/l10n/nl/files_sharing.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/files_trashbin.po b/l10n/nl/files_trashbin.po index 546c51510d..c80e748b44 100644 --- a/l10n/nl/files_trashbin.po +++ b/l10n/nl/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/files_versions.po b/l10n/nl/files_versions.po index 3171f1345a..9254c97a29 100644 --- a/l10n/nl/files_versions.po +++ b/l10n/nl/files_versions.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/lib.po b/l10n/nl/lib.po index 8240ed69ee..cddcc75469 100644 --- a/l10n/nl/lib.po +++ b/l10n/nl/lib.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index b7808c8060..34b223ac45 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -19,8 +19,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -128,7 +128,7 @@ msgstr "Fout bij bijwerken app" msgid "Updated" msgstr "Bijgewerkt" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Aan het bewaren....." diff --git a/l10n/nl/user_ldap.po b/l10n/nl/user_ldap.po index 8955fc084a..2e4e387628 100644 --- a/l10n/nl/user_ldap.po +++ b/l10n/nl/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/user_webdavauth.po b/l10n/nl/user_webdavauth.po index e1e3d510ba..90490f9dd9 100644 --- a/l10n/nl/user_webdavauth.po +++ b/l10n/nl/user_webdavauth.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/core.po b/l10n/nn_NO/core.po index 83a1b479fa..40265bd47a 100644 --- a/l10n/nn_NO/core.po +++ b/l10n/nn_NO/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/files.po b/l10n/nn_NO/files.po index b71321ee98..ff7697f86e 100644 --- a/l10n/nn_NO/files.po +++ b/l10n/nn_NO/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/files_encryption.po b/l10n/nn_NO/files_encryption.po index 4c044b7046..ef0923d2a4 100644 --- a/l10n/nn_NO/files_encryption.po +++ b/l10n/nn_NO/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/files_external.po b/l10n/nn_NO/files_external.po index fb03e3cb37..88b567ae90 100644 --- a/l10n/nn_NO/files_external.po +++ b/l10n/nn_NO/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/files_sharing.po b/l10n/nn_NO/files_sharing.po index 877f89fbd4..296e7f5ae1 100644 --- a/l10n/nn_NO/files_sharing.po +++ b/l10n/nn_NO/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/files_trashbin.po b/l10n/nn_NO/files_trashbin.po index 43b1a71c81..1924d58a15 100644 --- a/l10n/nn_NO/files_trashbin.po +++ b/l10n/nn_NO/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/files_versions.po b/l10n/nn_NO/files_versions.po index f9421355e4..3ab98c3053 100644 --- a/l10n/nn_NO/files_versions.po +++ b/l10n/nn_NO/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/lib.po b/l10n/nn_NO/lib.po index f816e93848..483f3ee52e 100644 --- a/l10n/nn_NO/lib.po +++ b/l10n/nn_NO/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/settings.po b/l10n/nn_NO/settings.po index 25710dd529..a273c96f06 100644 --- a/l10n/nn_NO/settings.po +++ b/l10n/nn_NO/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -118,7 +118,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "" diff --git a/l10n/nn_NO/user_ldap.po b/l10n/nn_NO/user_ldap.po index 96d7ea3e90..f15d6449f3 100644 --- a/l10n/nn_NO/user_ldap.po +++ b/l10n/nn_NO/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/user_webdavauth.po b/l10n/nn_NO/user_webdavauth.po index aa8db07cf4..1b5e93f18c 100644 --- a/l10n/nn_NO/user_webdavauth.po +++ b/l10n/nn_NO/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/core.po b/l10n/oc/core.po index c5edaf4ff0..9414d1bcf4 100644 --- a/l10n/oc/core.po +++ b/l10n/oc/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/files.po b/l10n/oc/files.po index 438e64ed3b..1a86e26f56 100644 --- a/l10n/oc/files.po +++ b/l10n/oc/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/files_encryption.po b/l10n/oc/files_encryption.po index 1d610acbd7..a7fbf59235 100644 --- a/l10n/oc/files_encryption.po +++ b/l10n/oc/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/files_external.po b/l10n/oc/files_external.po index b41f8d964f..ea558c0a4f 100644 --- a/l10n/oc/files_external.po +++ b/l10n/oc/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/files_sharing.po b/l10n/oc/files_sharing.po index 5d54968662..f250912c1e 100644 --- a/l10n/oc/files_sharing.po +++ b/l10n/oc/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/files_trashbin.po b/l10n/oc/files_trashbin.po index f3ed3d0f41..a631653516 100644 --- a/l10n/oc/files_trashbin.po +++ b/l10n/oc/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/files_versions.po b/l10n/oc/files_versions.po index 127b1e57b8..eea377d183 100644 --- a/l10n/oc/files_versions.po +++ b/l10n/oc/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/lib.po b/l10n/oc/lib.po index a41273fdd8..8ac687287d 100644 --- a/l10n/oc/lib.po +++ b/l10n/oc/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/settings.po b/l10n/oc/settings.po index e7ec51dfaf..df9e092959 100644 --- a/l10n/oc/settings.po +++ b/l10n/oc/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -117,7 +117,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Enregistra..." diff --git a/l10n/oc/user_ldap.po b/l10n/oc/user_ldap.po index 39a8e2f1c6..00048980bf 100644 --- a/l10n/oc/user_ldap.po +++ b/l10n/oc/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/user_webdavauth.po b/l10n/oc/user_webdavauth.po index 791548b97e..28e19ba92c 100644 --- a/l10n/oc/user_webdavauth.po +++ b/l10n/oc/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/core.po b/l10n/pl/core.po index dc589ac76d..91dcac0d46 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/core.po @@ -20,8 +20,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/files.po b/l10n/pl/files.po index 5e8ce661c0..3361b9741f 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/files.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/files_encryption.po b/l10n/pl/files_encryption.po index bab982698b..c2357401d8 100644 --- a/l10n/pl/files_encryption.po +++ b/l10n/pl/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/files_external.po b/l10n/pl/files_external.po index 6fcbfc009e..7b747f0ed5 100644 --- a/l10n/pl/files_external.po +++ b/l10n/pl/files_external.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/files_sharing.po b/l10n/pl/files_sharing.po index 447eac36dc..4007f347ff 100644 --- a/l10n/pl/files_sharing.po +++ b/l10n/pl/files_sharing.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/files_trashbin.po b/l10n/pl/files_trashbin.po index 2638a60560..284ff04071 100644 --- a/l10n/pl/files_trashbin.po +++ b/l10n/pl/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/files_versions.po b/l10n/pl/files_versions.po index dd854a1b07..28ab5a893c 100644 --- a/l10n/pl/files_versions.po +++ b/l10n/pl/files_versions.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/lib.po b/l10n/pl/lib.po index 8eddff3fcd..195db79fa6 100644 --- a/l10n/pl/lib.po +++ b/l10n/pl/lib.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index 2f7a020b48..ff5ed02f9b 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -21,8 +21,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -130,7 +130,7 @@ msgstr "Błąd podczas aktualizacji aplikacji" msgid "Updated" msgstr "Zaktualizowano" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Zapisywanie..." diff --git a/l10n/pl/user_ldap.po b/l10n/pl/user_ldap.po index 842e71256c..48697cda32 100644 --- a/l10n/pl/user_ldap.po +++ b/l10n/pl/user_ldap.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/user_webdavauth.po b/l10n/pl/user_webdavauth.po index 69bfdc793e..437dc1175d 100644 --- a/l10n/pl/user_webdavauth.po +++ b/l10n/pl/user_webdavauth.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl_PL/core.po b/l10n/pl_PL/core.po index 8fa853d62a..59dba27877 100644 --- a/l10n/pl_PL/core.po +++ b/l10n/pl_PL/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl_PL/files.po b/l10n/pl_PL/files.po index 6ce2bbc8b9..6c5cbd655c 100644 --- a/l10n/pl_PL/files.po +++ b/l10n/pl_PL/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl_PL/files_encryption.po b/l10n/pl_PL/files_encryption.po index 40ed23e267..13ec81b2fa 100644 --- a/l10n/pl_PL/files_encryption.po +++ b/l10n/pl_PL/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl_PL/files_external.po b/l10n/pl_PL/files_external.po index eb3f6672bd..63786d6b42 100644 --- a/l10n/pl_PL/files_external.po +++ b/l10n/pl_PL/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl_PL/files_sharing.po b/l10n/pl_PL/files_sharing.po index 8756f2529d..6bd035fa98 100644 --- a/l10n/pl_PL/files_sharing.po +++ b/l10n/pl_PL/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl_PL/files_trashbin.po b/l10n/pl_PL/files_trashbin.po index f553379573..7920003d18 100644 --- a/l10n/pl_PL/files_trashbin.po +++ b/l10n/pl_PL/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl_PL/files_versions.po b/l10n/pl_PL/files_versions.po index 08069cd964..f20407f561 100644 --- a/l10n/pl_PL/files_versions.po +++ b/l10n/pl_PL/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl_PL/lib.po b/l10n/pl_PL/lib.po index be31982884..9f3e48faf1 100644 --- a/l10n/pl_PL/lib.po +++ b/l10n/pl_PL/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl_PL/settings.po b/l10n/pl_PL/settings.po index 310263c8cf..038b200e8e 100644 --- a/l10n/pl_PL/settings.po +++ b/l10n/pl_PL/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" @@ -116,7 +116,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "" diff --git a/l10n/pl_PL/user_ldap.po b/l10n/pl_PL/user_ldap.po index b6381eee80..9d3f142fb4 100644 --- a/l10n/pl_PL/user_ldap.po +++ b/l10n/pl_PL/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl_PL/user_webdavauth.po b/l10n/pl_PL/user_webdavauth.po index d867ec10d3..8056a470e9 100644 --- a/l10n/pl_PL/user_webdavauth.po +++ b/l10n/pl_PL/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/core.po b/l10n/pt_BR/core.po index b1e1b553e1..69739f01cb 100644 --- a/l10n/pt_BR/core.po +++ b/l10n/pt_BR/core.po @@ -19,8 +19,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/files.po b/l10n/pt_BR/files.po index d28f645f02..1347204dd4 100644 --- a/l10n/pt_BR/files.po +++ b/l10n/pt_BR/files.po @@ -19,8 +19,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/files_encryption.po b/l10n/pt_BR/files_encryption.po index 6318bd58df..66f9c4e029 100644 --- a/l10n/pt_BR/files_encryption.po +++ b/l10n/pt_BR/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/files_external.po b/l10n/pt_BR/files_external.po index 8fb231323c..9b0ff93c3c 100644 --- a/l10n/pt_BR/files_external.po +++ b/l10n/pt_BR/files_external.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/files_sharing.po b/l10n/pt_BR/files_sharing.po index ac7a37a6b8..52bc451ea0 100644 --- a/l10n/pt_BR/files_sharing.po +++ b/l10n/pt_BR/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/files_trashbin.po b/l10n/pt_BR/files_trashbin.po index 617c6ff262..728344416d 100644 --- a/l10n/pt_BR/files_trashbin.po +++ b/l10n/pt_BR/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/files_versions.po b/l10n/pt_BR/files_versions.po index f2f07af012..7274496348 100644 --- a/l10n/pt_BR/files_versions.po +++ b/l10n/pt_BR/files_versions.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/lib.po b/l10n/pt_BR/lib.po index 8f730781c8..7cb9593549 100644 --- a/l10n/pt_BR/lib.po +++ b/l10n/pt_BR/lib.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/settings.po b/l10n/pt_BR/settings.po index ac98a99c4a..c7c53c3952 100644 --- a/l10n/pt_BR/settings.po +++ b/l10n/pt_BR/settings.po @@ -18,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -127,7 +127,7 @@ msgstr "Erro ao atualizar aplicativo" msgid "Updated" msgstr "Atualizado" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Guardando..." diff --git a/l10n/pt_BR/user_ldap.po b/l10n/pt_BR/user_ldap.po index bc50282a09..54d37d885b 100644 --- a/l10n/pt_BR/user_ldap.po +++ b/l10n/pt_BR/user_ldap.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/user_webdavauth.po b/l10n/pt_BR/user_webdavauth.po index beb981284a..c68169faea 100644 --- a/l10n/pt_BR/user_webdavauth.po +++ b/l10n/pt_BR/user_webdavauth.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/core.po b/l10n/pt_PT/core.po index 40b04bc4f7..cde8bb6189 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/core.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index 0f1a9e5987..6794c27ed3 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/files_encryption.po b/l10n/pt_PT/files_encryption.po index d6acdfd0e5..5b7f52b371 100644 --- a/l10n/pt_PT/files_encryption.po +++ b/l10n/pt_PT/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/files_external.po b/l10n/pt_PT/files_external.po index 5190b300f3..583bb3bfaf 100644 --- a/l10n/pt_PT/files_external.po +++ b/l10n/pt_PT/files_external.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/files_sharing.po b/l10n/pt_PT/files_sharing.po index 263e69dd58..913b52dd57 100644 --- a/l10n/pt_PT/files_sharing.po +++ b/l10n/pt_PT/files_sharing.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/files_trashbin.po b/l10n/pt_PT/files_trashbin.po index 16bda15175..187d7ecf91 100644 --- a/l10n/pt_PT/files_trashbin.po +++ b/l10n/pt_PT/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/files_versions.po b/l10n/pt_PT/files_versions.po index bf398be73b..102a1060df 100644 --- a/l10n/pt_PT/files_versions.po +++ b/l10n/pt_PT/files_versions.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/lib.po b/l10n/pt_PT/lib.po index 4584e98139..6e5fe1eea2 100644 --- a/l10n/pt_PT/lib.po +++ b/l10n/pt_PT/lib.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/settings.po b/l10n/pt_PT/settings.po index a82084a8f3..a0be25c84b 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/settings.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -124,7 +124,7 @@ msgstr "Erro enquanto actualizava a aplicação" msgid "Updated" msgstr "Actualizado" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "A guardar..." diff --git a/l10n/pt_PT/user_ldap.po b/l10n/pt_PT/user_ldap.po index 27ad5c0cee..a5106e4055 100644 --- a/l10n/pt_PT/user_ldap.po +++ b/l10n/pt_PT/user_ldap.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/user_webdavauth.po b/l10n/pt_PT/user_webdavauth.po index 27a6435e85..ba3adcee86 100644 --- a/l10n/pt_PT/user_webdavauth.po +++ b/l10n/pt_PT/user_webdavauth.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/core.po b/l10n/ro/core.po index ff67fb854e..35676e96cf 100644 --- a/l10n/ro/core.po +++ b/l10n/ro/core.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/files.po b/l10n/ro/files.po index 59df2ce6f8..e15f6abff9 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/files.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/files_encryption.po b/l10n/ro/files_encryption.po index 0178c34405..a4aa0e05df 100644 --- a/l10n/ro/files_encryption.po +++ b/l10n/ro/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/files_external.po b/l10n/ro/files_external.po index 3dd7b1f334..104dee1532 100644 --- a/l10n/ro/files_external.po +++ b/l10n/ro/files_external.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/files_sharing.po b/l10n/ro/files_sharing.po index 54f7f15491..6dfb5310d7 100644 --- a/l10n/ro/files_sharing.po +++ b/l10n/ro/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/files_trashbin.po b/l10n/ro/files_trashbin.po index ba7c983acd..1c2d7260a9 100644 --- a/l10n/ro/files_trashbin.po +++ b/l10n/ro/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/files_versions.po b/l10n/ro/files_versions.po index 1a1e9ab27d..0648c9a78c 100644 --- a/l10n/ro/files_versions.po +++ b/l10n/ro/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/lib.po b/l10n/ro/lib.po index 34b7915c68..1453bbf754 100644 --- a/l10n/ro/lib.po +++ b/l10n/ro/lib.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/settings.po b/l10n/ro/settings.po index bff150ffa8..942cb3c8ed 100644 --- a/l10n/ro/settings.po +++ b/l10n/ro/settings.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -123,7 +123,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Salvez..." diff --git a/l10n/ro/user_ldap.po b/l10n/ro/user_ldap.po index 44e5fa0d0b..7d04a5cc4f 100644 --- a/l10n/ro/user_ldap.po +++ b/l10n/ro/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/user_webdavauth.po b/l10n/ro/user_webdavauth.po index 6109a77f94..637e3bf026 100644 --- a/l10n/ro/user_webdavauth.po +++ b/l10n/ro/user_webdavauth.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/core.po b/l10n/ru/core.po index 127eea8e44..6f4f8a3c68 100644 --- a/l10n/ru/core.po +++ b/l10n/ru/core.po @@ -19,8 +19,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/files.po b/l10n/ru/files.po index 11afccd3a6..d532da2e90 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -21,8 +21,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/files_encryption.po b/l10n/ru/files_encryption.po index 10d0dee2c7..414201060b 100644 --- a/l10n/ru/files_encryption.po +++ b/l10n/ru/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/files_external.po b/l10n/ru/files_external.po index 51708e8373..5054c5c61d 100644 --- a/l10n/ru/files_external.po +++ b/l10n/ru/files_external.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/files_sharing.po b/l10n/ru/files_sharing.po index f63d64a4a0..1278347ec8 100644 --- a/l10n/ru/files_sharing.po +++ b/l10n/ru/files_sharing.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/files_trashbin.po b/l10n/ru/files_trashbin.po index ef193b6324..45af8ef813 100644 --- a/l10n/ru/files_trashbin.po +++ b/l10n/ru/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/files_versions.po b/l10n/ru/files_versions.po index 304ee7eacc..da5a0e0228 100644 --- a/l10n/ru/files_versions.po +++ b/l10n/ru/files_versions.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/lib.po b/l10n/ru/lib.po index 241423458f..50cad3c909 100644 --- a/l10n/ru/lib.po +++ b/l10n/ru/lib.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index 32b4ecffaf..2b06278427 100644 --- a/l10n/ru/settings.po +++ b/l10n/ru/settings.po @@ -22,8 +22,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -131,7 +131,7 @@ msgstr "Ошибка в процессе обновления приложени msgid "Updated" msgstr "Обновлено" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Сохранение..." diff --git a/l10n/ru/user_ldap.po b/l10n/ru/user_ldap.po index 1cdc528b1f..96e71415b2 100644 --- a/l10n/ru/user_ldap.po +++ b/l10n/ru/user_ldap.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/user_webdavauth.po b/l10n/ru/user_webdavauth.po index cb9787729a..c402a17458 100644 --- a/l10n/ru/user_webdavauth.po +++ b/l10n/ru/user_webdavauth.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru_RU/core.po b/l10n/ru_RU/core.po index 78a7e92ad4..b6aa78f2ae 100644 --- a/l10n/ru_RU/core.po +++ b/l10n/ru_RU/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru_RU/files.po b/l10n/ru_RU/files.po index e0b7ef7d14..4e3eddace5 100644 --- a/l10n/ru_RU/files.po +++ b/l10n/ru_RU/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru_RU/files_encryption.po b/l10n/ru_RU/files_encryption.po index 475cc21624..e9f3e4b203 100644 --- a/l10n/ru_RU/files_encryption.po +++ b/l10n/ru_RU/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru_RU/files_external.po b/l10n/ru_RU/files_external.po index f0db491af6..43604ee016 100644 --- a/l10n/ru_RU/files_external.po +++ b/l10n/ru_RU/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru_RU/files_sharing.po b/l10n/ru_RU/files_sharing.po index b2e253d777..2f1f872d54 100644 --- a/l10n/ru_RU/files_sharing.po +++ b/l10n/ru_RU/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru_RU/files_trashbin.po b/l10n/ru_RU/files_trashbin.po index 88f31b8ae7..dd27b348b3 100644 --- a/l10n/ru_RU/files_trashbin.po +++ b/l10n/ru_RU/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru_RU/files_versions.po b/l10n/ru_RU/files_versions.po index c61d6b50a3..8931ebb796 100644 --- a/l10n/ru_RU/files_versions.po +++ b/l10n/ru_RU/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru_RU/lib.po b/l10n/ru_RU/lib.po index b230b541d5..5903c5b4ed 100644 --- a/l10n/ru_RU/lib.po +++ b/l10n/ru_RU/lib.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru_RU/settings.po b/l10n/ru_RU/settings.po index f8ec1a9f65..09c56fb828 100644 --- a/l10n/ru_RU/settings.po +++ b/l10n/ru_RU/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" @@ -118,7 +118,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Сохранение" diff --git a/l10n/ru_RU/user_ldap.po b/l10n/ru_RU/user_ldap.po index 8d68995348..3ee3d47145 100644 --- a/l10n/ru_RU/user_ldap.po +++ b/l10n/ru_RU/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru_RU/user_webdavauth.po b/l10n/ru_RU/user_webdavauth.po index c7942c0aac..8223c3dc9b 100644 --- a/l10n/ru_RU/user_webdavauth.po +++ b/l10n/ru_RU/user_webdavauth.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/core.po b/l10n/si_LK/core.po index 5d59a87c19..bd225017a6 100644 --- a/l10n/si_LK/core.po +++ b/l10n/si_LK/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/files.po b/l10n/si_LK/files.po index b3eb4cde33..3b5c8990fb 100644 --- a/l10n/si_LK/files.po +++ b/l10n/si_LK/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/files_encryption.po b/l10n/si_LK/files_encryption.po index 7eac34c9ba..3e1361874c 100644 --- a/l10n/si_LK/files_encryption.po +++ b/l10n/si_LK/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/files_external.po b/l10n/si_LK/files_external.po index 105ab59cab..13c3bd6a62 100644 --- a/l10n/si_LK/files_external.po +++ b/l10n/si_LK/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/files_sharing.po b/l10n/si_LK/files_sharing.po index b2714042dd..d4a15ed844 100644 --- a/l10n/si_LK/files_sharing.po +++ b/l10n/si_LK/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/files_trashbin.po b/l10n/si_LK/files_trashbin.po index 8d505239eb..bc2af0ccec 100644 --- a/l10n/si_LK/files_trashbin.po +++ b/l10n/si_LK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/files_versions.po b/l10n/si_LK/files_versions.po index 4c83ca1d0e..eb2829745c 100644 --- a/l10n/si_LK/files_versions.po +++ b/l10n/si_LK/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/lib.po b/l10n/si_LK/lib.po index 11a0c7fff2..6a13f369cf 100644 --- a/l10n/si_LK/lib.po +++ b/l10n/si_LK/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/settings.po b/l10n/si_LK/settings.po index 0812e02275..ecb6a7c40f 100644 --- a/l10n/si_LK/settings.po +++ b/l10n/si_LK/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -119,7 +119,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "සුරැකෙමින් පවතී..." diff --git a/l10n/si_LK/user_ldap.po b/l10n/si_LK/user_ldap.po index b9faaaba98..3fdeae7d3a 100644 --- a/l10n/si_LK/user_ldap.po +++ b/l10n/si_LK/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/user_webdavauth.po b/l10n/si_LK/user_webdavauth.po index ada80e75d6..cb5a2e879d 100644 --- a/l10n/si_LK/user_webdavauth.po +++ b/l10n/si_LK/user_webdavauth.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk/core.po b/l10n/sk/core.po index bc430f23ee..585de750f2 100644 --- a/l10n/sk/core.po +++ b/l10n/sk/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk/files.po b/l10n/sk/files.po index 85c7273021..858044fcb8 100644 --- a/l10n/sk/files.po +++ b/l10n/sk/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk/files_encryption.po b/l10n/sk/files_encryption.po index dfa8be5d6e..0e065e2795 100644 --- a/l10n/sk/files_encryption.po +++ b/l10n/sk/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk/files_external.po b/l10n/sk/files_external.po index efcc842294..f99201a558 100644 --- a/l10n/sk/files_external.po +++ b/l10n/sk/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk/files_sharing.po b/l10n/sk/files_sharing.po index 609ac22383..1b12c17386 100644 --- a/l10n/sk/files_sharing.po +++ b/l10n/sk/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk/files_trashbin.po b/l10n/sk/files_trashbin.po index b616563274..725fce0126 100644 --- a/l10n/sk/files_trashbin.po +++ b/l10n/sk/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk/files_versions.po b/l10n/sk/files_versions.po index 3d146dfb02..7157752d71 100644 --- a/l10n/sk/files_versions.po +++ b/l10n/sk/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk/lib.po b/l10n/sk/lib.po index 45bcc4a959..63f7ea5ee0 100644 --- a/l10n/sk/lib.po +++ b/l10n/sk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk/settings.po b/l10n/sk/settings.po index 5eeac0348e..d9b345699c 100644 --- a/l10n/sk/settings.po +++ b/l10n/sk/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" @@ -116,7 +116,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "" diff --git a/l10n/sk/user_ldap.po b/l10n/sk/user_ldap.po index a5f757920a..37edfc8d9f 100644 --- a/l10n/sk/user_ldap.po +++ b/l10n/sk/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk/user_webdavauth.po b/l10n/sk/user_webdavauth.po index 3b57127980..4a5a83a1ea 100644 --- a/l10n/sk/user_webdavauth.po +++ b/l10n/sk/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/core.po b/l10n/sk_SK/core.po index 00ea6d6633..6ec59a28f0 100644 --- a/l10n/sk_SK/core.po +++ b/l10n/sk_SK/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/files.po b/l10n/sk_SK/files.po index 4f956583ed..e5dac9f965 100644 --- a/l10n/sk_SK/files.po +++ b/l10n/sk_SK/files.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/files_encryption.po b/l10n/sk_SK/files_encryption.po index 9ce3732a07..69c0359cc1 100644 --- a/l10n/sk_SK/files_encryption.po +++ b/l10n/sk_SK/files_encryption.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/files_external.po b/l10n/sk_SK/files_external.po index a6f07d27d0..3603bda557 100644 --- a/l10n/sk_SK/files_external.po +++ b/l10n/sk_SK/files_external.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/files_sharing.po b/l10n/sk_SK/files_sharing.po index 07ea96d641..d792bd55d1 100644 --- a/l10n/sk_SK/files_sharing.po +++ b/l10n/sk_SK/files_sharing.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/files_trashbin.po b/l10n/sk_SK/files_trashbin.po index 29989ed5b3..4c53d28f01 100644 --- a/l10n/sk_SK/files_trashbin.po +++ b/l10n/sk_SK/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/files_versions.po b/l10n/sk_SK/files_versions.po index 51261b891f..6bb0cb836c 100644 --- a/l10n/sk_SK/files_versions.po +++ b/l10n/sk_SK/files_versions.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/lib.po b/l10n/sk_SK/lib.po index d1b6873454..bf8820e425 100644 --- a/l10n/sk_SK/lib.po +++ b/l10n/sk_SK/lib.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/settings.po b/l10n/sk_SK/settings.po index fe292fb38b..84eb780da7 100644 --- a/l10n/sk_SK/settings.po +++ b/l10n/sk_SK/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -122,7 +122,7 @@ msgstr "chyba pri aktualizácii aplikácie" msgid "Updated" msgstr "Aktualizované" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Ukladám..." diff --git a/l10n/sk_SK/user_ldap.po b/l10n/sk_SK/user_ldap.po index 9724c53524..dcfe6e11b1 100644 --- a/l10n/sk_SK/user_ldap.po +++ b/l10n/sk_SK/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/user_webdavauth.po b/l10n/sk_SK/user_webdavauth.po index a0dcc47ceb..e20d8617a6 100644 --- a/l10n/sk_SK/user_webdavauth.po +++ b/l10n/sk_SK/user_webdavauth.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/core.po b/l10n/sl/core.po index 80c8dccfbd..59dca9a91a 100644 --- a/l10n/sl/core.po +++ b/l10n/sl/core.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files.po b/l10n/sl/files.po index 252f7b513e..70bc018b17 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files_encryption.po b/l10n/sl/files_encryption.po index 94bd86897e..32f913f262 100644 --- a/l10n/sl/files_encryption.po +++ b/l10n/sl/files_encryption.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files_external.po b/l10n/sl/files_external.po index 87d9dc110e..d7930595bc 100644 --- a/l10n/sl/files_external.po +++ b/l10n/sl/files_external.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files_sharing.po b/l10n/sl/files_sharing.po index bfe1165217..cce3754070 100644 --- a/l10n/sl/files_sharing.po +++ b/l10n/sl/files_sharing.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files_trashbin.po b/l10n/sl/files_trashbin.po index 77048dd750..3a134b8b18 100644 --- a/l10n/sl/files_trashbin.po +++ b/l10n/sl/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files_versions.po b/l10n/sl/files_versions.po index 5a32b4db17..154d0ce088 100644 --- a/l10n/sl/files_versions.po +++ b/l10n/sl/files_versions.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/lib.po b/l10n/sl/lib.po index 9938dc9c02..9814f3e933 100644 --- a/l10n/sl/lib.po +++ b/l10n/sl/lib.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index f8062dc331..957fabe747 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -122,7 +122,7 @@ msgstr "Prišlo je do napake med posodabljanjem programa." msgid "Updated" msgstr "Posodobljeno" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Poteka shranjevanje ..." diff --git a/l10n/sl/user_ldap.po b/l10n/sl/user_ldap.po index b35519eed4..d291effd85 100644 --- a/l10n/sl/user_ldap.po +++ b/l10n/sl/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/user_webdavauth.po b/l10n/sl/user_webdavauth.po index 57c4340128..dc42b6b156 100644 --- a/l10n/sl/user_webdavauth.po +++ b/l10n/sl/user_webdavauth.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/core.po b/l10n/sq/core.po index 27820eb8b1..1179d65ec7 100644 --- a/l10n/sq/core.po +++ b/l10n/sq/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/files.po b/l10n/sq/files.po index 887642ef41..3915e15310 100644 --- a/l10n/sq/files.po +++ b/l10n/sq/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/files_encryption.po b/l10n/sq/files_encryption.po index e077f5e19b..7dbf902707 100644 --- a/l10n/sq/files_encryption.po +++ b/l10n/sq/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/files_external.po b/l10n/sq/files_external.po index 494a58ba3b..bb92141f3e 100644 --- a/l10n/sq/files_external.po +++ b/l10n/sq/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/files_sharing.po b/l10n/sq/files_sharing.po index 69b90c903d..9b729426c3 100644 --- a/l10n/sq/files_sharing.po +++ b/l10n/sq/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/files_trashbin.po b/l10n/sq/files_trashbin.po index faad2478b9..a2e6c8176a 100644 --- a/l10n/sq/files_trashbin.po +++ b/l10n/sq/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/files_versions.po b/l10n/sq/files_versions.po index 82daa820ba..a2ce9ffe2b 100644 --- a/l10n/sq/files_versions.po +++ b/l10n/sq/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/lib.po b/l10n/sq/lib.po index 0461910a06..6e59fdb660 100644 --- a/l10n/sq/lib.po +++ b/l10n/sq/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/settings.po b/l10n/sq/settings.po index c4e2ddab22..0ea938feaf 100644 --- a/l10n/sq/settings.po +++ b/l10n/sq/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -117,7 +117,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "" diff --git a/l10n/sq/user_ldap.po b/l10n/sq/user_ldap.po index e947284572..ff91215d0a 100644 --- a/l10n/sq/user_ldap.po +++ b/l10n/sq/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/user_webdavauth.po b/l10n/sq/user_webdavauth.po index b3bb1e1625..9449bd231d 100644 --- a/l10n/sq/user_webdavauth.po +++ b/l10n/sq/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/core.po b/l10n/sr/core.po index 46dda51aa2..e976000343 100644 --- a/l10n/sr/core.po +++ b/l10n/sr/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/files.po b/l10n/sr/files.po index 0eff71bb2c..18eacafc8b 100644 --- a/l10n/sr/files.po +++ b/l10n/sr/files.po @@ -5,13 +5,14 @@ # Translators: # Ivan Petrović , 2012. # Slobodan Terzić , 2011, 2012. +# , 2013. # , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -23,20 +24,20 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "" +msgstr "Не могу да преместим %s – датотека с овим именом већ постоји" #: ajax/move.php:27 ajax/move.php:30 #, php-format msgid "Could not move %s" -msgstr "" +msgstr "Не могу да преместим %s" #: ajax/rename.php:22 ajax/rename.php:25 msgid "Unable to rename file" -msgstr "" +msgstr "Не могу да преименујем датотеку" #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" -msgstr "" +msgstr "Ниједна датотека није отпремљена услед непознате грешке" #: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" @@ -71,11 +72,11 @@ msgstr "Не могу да пишем на диск" #: ajax/upload.php:51 msgid "Not enough storage available" -msgstr "" +msgstr "Нема довољно простора" #: ajax/upload.php:83 msgid "Invalid directory." -msgstr "" +msgstr "неисправна фасцикла." #: appinfo/app.php:12 msgid "Files" @@ -83,7 +84,7 @@ msgstr "Датотеке" #: js/fileactions.js:125 msgid "Delete permanently" -msgstr "" +msgstr "Обриши за стално" #: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 msgid "Delete" @@ -123,7 +124,7 @@ msgstr "опозови" #: js/filelist.js:324 msgid "perform delete operation" -msgstr "" +msgstr "обриши" #: js/filelist.js:406 msgid "1 file uploading" @@ -131,15 +132,15 @@ msgstr "Отпремам 1 датотеку" #: js/filelist.js:409 js/filelist.js:463 msgid "files uploading" -msgstr "" +msgstr "датотеке се отпремају" #: js/files.js:52 msgid "'.' is an invalid file name." -msgstr "" +msgstr "Датотека „.“ је неисправног имена." #: js/files.js:56 msgid "File name cannot be empty." -msgstr "" +msgstr "Име датотеке не може бити празно." #: js/files.js:64 msgid "" @@ -149,17 +150,17 @@ msgstr "Неисправан назив. Следећи знакови нису #: js/files.js:78 msgid "Your storage is full, files can not be updated or synced anymore!" -msgstr "" +msgstr "Ваше складиште је пуно. Датотеке више не могу бити ажуриране ни синхронизоване." #: js/files.js:82 msgid "Your storage is almost full ({usedSpacePercent}%)" -msgstr "" +msgstr "Ваше складиште је скоро па пуно ({usedSpacePercent}%)" #: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." -msgstr "" +msgstr "Припремам преузимање. Ово може да потраје ако су датотеке велике." #: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" @@ -167,7 +168,7 @@ msgstr "Не могу да отпремим датотеку као фасцик #: js/files.js:272 msgid "Not enough space available" -msgstr "" +msgstr "Нема довољно простора" #: js/files.js:312 msgid "Upload cancelled." @@ -180,11 +181,11 @@ msgstr "Отпремање датотеке је у току. Ако сада н #: js/files.js:481 msgid "URL cannot be empty." -msgstr "" +msgstr "Адреса не може бити празна." #: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "" +msgstr "Неисправно име фасцикле. Фасцикла „Shared“ је резервисана за ownCloud." #: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 msgid "Error" @@ -272,7 +273,7 @@ msgstr "Са везе" #: templates/index.php:42 msgid "Deleted files" -msgstr "" +msgstr "Обрисане датотеке" #: templates/index.php:48 msgid "Cancel upload" @@ -280,7 +281,7 @@ msgstr "Прекини отпремање" #: templates/index.php:55 msgid "You don’t have write permissions here." -msgstr "" +msgstr "Овде немате дозволу за писање." #: templates/index.php:62 msgid "Nothing in here. Upload something!" @@ -314,4 +315,4 @@ msgstr "Тренутно скенирање" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." -msgstr "" +msgstr "Дограђујем кеш система датотека…" diff --git a/l10n/sr/files_encryption.po b/l10n/sr/files_encryption.po index a27a28465f..2eae48fdc6 100644 --- a/l10n/sr/files_encryption.po +++ b/l10n/sr/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/files_external.po b/l10n/sr/files_external.po index 800176734a..476522e9fb 100644 --- a/l10n/sr/files_external.po +++ b/l10n/sr/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/files_sharing.po b/l10n/sr/files_sharing.po index 9181ca9a56..8c455cac47 100644 --- a/l10n/sr/files_sharing.po +++ b/l10n/sr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/files_trashbin.po b/l10n/sr/files_trashbin.po index 2a417b2ea6..69d8ab3bf2 100644 --- a/l10n/sr/files_trashbin.po +++ b/l10n/sr/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -42,7 +42,7 @@ msgstr "" #: js/trash.js:121 msgid "Delete permanently" -msgstr "" +msgstr "Обриши за стално" #: js/trash.js:174 templates/index.php:17 msgid "Name" diff --git a/l10n/sr/files_versions.po b/l10n/sr/files_versions.po index ec43d448da..b878bee563 100644 --- a/l10n/sr/files_versions.po +++ b/l10n/sr/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/lib.po b/l10n/sr/lib.po index 733b5938e2..6032504b5b 100644 --- a/l10n/sr/lib.po +++ b/l10n/sr/lib.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -183,12 +183,12 @@ msgstr "" msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "" +msgstr "Ваш веб сервер тренутно не подржава синхронизацију датотека јер се чини да је WebDAV сучеље неисправно." #: setup.php:854 #, php-format msgid "Please double check the installation guides." -msgstr "" +msgstr "Погледајте водиче за инсталацију." #: template.php:113 msgid "seconds ago" diff --git a/l10n/sr/settings.po b/l10n/sr/settings.po index e49c51e90e..4faad27c2f 100644 --- a/l10n/sr/settings.po +++ b/l10n/sr/settings.po @@ -5,12 +5,13 @@ # Translators: # , 2012. # Slobodan Terzić , 2011, 2012. +# , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -30,7 +31,7 @@ msgstr "Грешка при аутентификацији" #: ajax/changedisplayname.php:32 msgid "Unable to change display name" -msgstr "" +msgstr "Не могу да променим име за приказ" #: ajax/creategroup.php:10 msgid "Group already exists" @@ -84,11 +85,11 @@ msgstr "Не могу да уклоним корисника из групе %s" #: ajax/updateapp.php:14 msgid "Couldn't update app." -msgstr "" +msgstr "Не могу да ажурирам апликацију." #: js/apps.js:30 msgid "Update to {appversion}" -msgstr "" +msgstr "Ажурирај на {appversion}" #: js/apps.js:36 js/apps.js:76 msgid "Disable" @@ -100,7 +101,7 @@ msgstr "Укључи" #: js/apps.js:55 msgid "Please wait...." -msgstr "" +msgstr "Сачекајте…" #: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 msgid "Error" @@ -108,23 +109,23 @@ msgstr "Грешка" #: js/apps.js:90 msgid "Updating...." -msgstr "" +msgstr "Ажурирам…" #: js/apps.js:93 msgid "Error while updating app" -msgstr "" +msgstr "Грешка при ажурирању апликације" #: js/apps.js:96 msgid "Updated" -msgstr "" +msgstr "Ажурирано" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Чување у току..." #: js/users.js:43 msgid "deleted" -msgstr "" +msgstr "обрисано" #: js/users.js:43 msgid "undo" @@ -132,7 +133,7 @@ msgstr "опозови" #: js/users.js:75 msgid "Unable to remove user" -msgstr "" +msgstr "Не могу да уклоним корисника" #: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 @@ -149,19 +150,19 @@ msgstr "Обриши" #: js/users.js:262 msgid "add group" -msgstr "" +msgstr "додај групу" #: js/users.js:414 msgid "A valid username must be provided" -msgstr "" +msgstr "Морате унети исправно корисничко име" #: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" -msgstr "" +msgstr "Грешка при прављењу корисника" #: js/users.js:420 msgid "A valid password must be provided" -msgstr "" +msgstr "Морате унети исправну лозинку" #: personal.php:29 personal.php:30 msgid "__language_name__" @@ -182,32 +183,32 @@ msgstr "Тренутно су ваши подаци и датотеке дост #: templates/admin.php:29 msgid "Setup Warning" -msgstr "" +msgstr "Упозорење о подешавању" #: templates/admin.php:32 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "" +msgstr "Ваш веб сервер тренутно не подржава синхронизацију датотека јер се чини да је WebDAV сучеље неисправно." #: templates/admin.php:33 #, php-format msgid "Please double check the installation guides." -msgstr "" +msgstr "Погледајте водиче за инсталацију." #: templates/admin.php:44 msgid "Module 'fileinfo' missing" -msgstr "" +msgstr "Недостаје модул „fileinfo“" #: templates/admin.php:47 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." -msgstr "" +msgstr "Недостаје PHP модул „fileinfo“. Препоручујемо вам да га омогућите да бисте добили најбоље резултате с откривањем MIME врста." #: templates/admin.php:58 msgid "Locale not working" -msgstr "" +msgstr "Локализација не ради" #: templates/admin.php:63 #, php-format @@ -219,7 +220,7 @@ msgstr "" #: templates/admin.php:75 msgid "Internet connection not working" -msgstr "" +msgstr "Веза с интернетом не ради" #: templates/admin.php:78 msgid "" @@ -237,7 +238,7 @@ msgstr "" #: templates/admin.php:101 msgid "Execute one task with each page loaded" -msgstr "" +msgstr "Изврши један задатак са сваком учитаном страницом" #: templates/admin.php:111 msgid "" @@ -253,52 +254,52 @@ msgstr "" #: templates/admin.php:128 msgid "Sharing" -msgstr "" +msgstr "Дељење" #: templates/admin.php:134 msgid "Enable Share API" -msgstr "" +msgstr "Омогући API Share" #: templates/admin.php:135 msgid "Allow apps to use the Share API" -msgstr "" +msgstr "Дозвољава апликацијама да користе API Share" #: templates/admin.php:142 msgid "Allow links" -msgstr "" +msgstr "Дозволи везе" #: templates/admin.php:143 msgid "Allow users to share items to the public with links" -msgstr "" +msgstr "Дозволи корисницима да деле ставке с другима путем веза" #: templates/admin.php:150 msgid "Allow resharing" -msgstr "" +msgstr "Дозволи поновно дељење" #: templates/admin.php:151 msgid "Allow users to share items shared with them again" -msgstr "" +msgstr "Дозволи корисницима да поновно деле ставке с другима" #: templates/admin.php:158 msgid "Allow users to share with anyone" -msgstr "" +msgstr "Дозволи корисницима да деле са било ким" #: templates/admin.php:161 msgid "Allow users to only share with users in their groups" -msgstr "" +msgstr "Дозволи корисницима да деле само са корисницима у њиховим групама" #: templates/admin.php:168 msgid "Security" -msgstr "" +msgstr "Безбедност" #: templates/admin.php:181 msgid "Enforce HTTPS" -msgstr "" +msgstr "Наметни HTTPS" #: templates/admin.php:182 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "" +msgstr "Намеће клијентима да се повежу са ownCloud-ом путем шифроване везе." #: templates/admin.php:185 msgid "" @@ -308,23 +309,23 @@ msgstr "" #: templates/admin.php:195 msgid "Log" -msgstr "" +msgstr "Бележење" #: templates/admin.php:196 msgid "Log level" -msgstr "" +msgstr "Ниво бележења" #: templates/admin.php:223 msgid "More" -msgstr "" +msgstr "Више" #: templates/admin.php:224 msgid "Less" -msgstr "" +msgstr "Мање" #: templates/admin.php:231 templates/personal.php:102 msgid "Version" -msgstr "" +msgstr "Верзија" #: templates/admin.php:234 templates/personal.php:105 msgid "" @@ -362,27 +363,27 @@ msgstr "Ажурирај" #: templates/help.php:4 msgid "User Documentation" -msgstr "" +msgstr "Корисничка документација" #: templates/help.php:6 msgid "Administrator Documentation" -msgstr "" +msgstr "Администраторска документација" #: templates/help.php:9 msgid "Online Documentation" -msgstr "" +msgstr "Мрежна документација" #: templates/help.php:11 msgid "Forum" -msgstr "" +msgstr "Форум" #: templates/help.php:14 msgid "Bugtracker" -msgstr "" +msgstr "Праћење грешака" #: templates/help.php:17 msgid "Commercial Support" -msgstr "" +msgstr "Комерцијална подршка" #: templates/personal.php:8 #, php-format @@ -391,7 +392,7 @@ msgstr "Искористили сте %s од дозвољен #: templates/personal.php:15 msgid "Get the apps to sync your files" -msgstr "" +msgstr "Преузмите апликације ради синхронизовања датотека" #: templates/personal.php:26 msgid "Show First Run Wizard again" @@ -423,19 +424,19 @@ msgstr "Измени лозинку" #: templates/personal.php:56 templates/users.php:78 msgid "Display Name" -msgstr "" +msgstr "Име за приказ" #: templates/personal.php:57 msgid "Your display name was changed" -msgstr "" +msgstr "Ваше име за приказ је промењено" #: templates/personal.php:58 msgid "Unable to change your display name" -msgstr "" +msgstr "Не могу да променим ваше име за приказ" #: templates/personal.php:61 msgid "Change display name" -msgstr "" +msgstr "Промени име за приказ" #: templates/personal.php:70 msgid "Email" @@ -459,15 +460,15 @@ msgstr " Помозите у превођењу" #: templates/personal.php:91 msgid "WebDAV" -msgstr "" +msgstr "WebDAV" #: templates/personal.php:93 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "" +msgstr "Користите ову адресу да се повежете са ownCloud-ом у управљачу датотекама" #: templates/users.php:21 templates/users.php:77 msgid "Login Name" -msgstr "" +msgstr "Корисничко име" #: templates/users.php:32 msgid "Create" @@ -475,11 +476,11 @@ msgstr "Направи" #: templates/users.php:35 msgid "Default Storage" -msgstr "" +msgstr "Подразумевано складиште" #: templates/users.php:41 templates/users.php:139 msgid "Unlimited" -msgstr "" +msgstr "Неограничено" #: templates/users.php:59 templates/users.php:154 msgid "Other" @@ -487,16 +488,16 @@ msgstr "Друго" #: templates/users.php:84 msgid "Storage" -msgstr "" +msgstr "Складиште" #: templates/users.php:95 msgid "change display name" -msgstr "" +msgstr "промени име за приказ" #: templates/users.php:99 msgid "set new password" -msgstr "" +msgstr "постави нову лозинку" #: templates/users.php:134 msgid "Default" -msgstr "" +msgstr "Подразумевано" diff --git a/l10n/sr/user_ldap.po b/l10n/sr/user_ldap.po index 71831e3ed8..5ab18046b0 100644 --- a/l10n/sr/user_ldap.po +++ b/l10n/sr/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/user_webdavauth.po b/l10n/sr/user_webdavauth.po index e16ddc8070..c72a84c03c 100644 --- a/l10n/sr/user_webdavauth.po +++ b/l10n/sr/user_webdavauth.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/core.po b/l10n/sr@latin/core.po index c1307364cb..e3b9468ad2 100644 --- a/l10n/sr@latin/core.po +++ b/l10n/sr@latin/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/files.po b/l10n/sr@latin/files.po index 43356ea3f8..20a4cf13bc 100644 --- a/l10n/sr@latin/files.po +++ b/l10n/sr@latin/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/files_encryption.po b/l10n/sr@latin/files_encryption.po index 4ed26d5541..9eb93b9f93 100644 --- a/l10n/sr@latin/files_encryption.po +++ b/l10n/sr@latin/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/files_external.po b/l10n/sr@latin/files_external.po index 74194db3c8..fbfb36951c 100644 --- a/l10n/sr@latin/files_external.po +++ b/l10n/sr@latin/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/files_sharing.po b/l10n/sr@latin/files_sharing.po index fd4664a6ee..778a78eb8c 100644 --- a/l10n/sr@latin/files_sharing.po +++ b/l10n/sr@latin/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/files_trashbin.po b/l10n/sr@latin/files_trashbin.po index a2456c9bf8..5743501ec1 100644 --- a/l10n/sr@latin/files_trashbin.po +++ b/l10n/sr@latin/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/files_versions.po b/l10n/sr@latin/files_versions.po index a73c400c08..7e54c05a93 100644 --- a/l10n/sr@latin/files_versions.po +++ b/l10n/sr@latin/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/lib.po b/l10n/sr@latin/lib.po index 0c0e851bf5..7e046b92c5 100644 --- a/l10n/sr@latin/lib.po +++ b/l10n/sr@latin/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/settings.po b/l10n/sr@latin/settings.po index 6304ccc06c..6b6e552803 100644 --- a/l10n/sr@latin/settings.po +++ b/l10n/sr@latin/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -117,7 +117,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "" diff --git a/l10n/sr@latin/user_ldap.po b/l10n/sr@latin/user_ldap.po index b3a83e4828..19f25b81a0 100644 --- a/l10n/sr@latin/user_ldap.po +++ b/l10n/sr@latin/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/user_webdavauth.po b/l10n/sr@latin/user_webdavauth.po index ce7bf86e0b..44c82fe664 100644 --- a/l10n/sr@latin/user_webdavauth.po +++ b/l10n/sr@latin/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/core.po b/l10n/sv/core.po index f06b83da0a..a176c33235 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files.po b/l10n/sv/files.po index 46f06f3a61..f18dad2214 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/files.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files_encryption.po b/l10n/sv/files_encryption.po index 4f03c0ca4e..a1c717ce9f 100644 --- a/l10n/sv/files_encryption.po +++ b/l10n/sv/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files_external.po b/l10n/sv/files_external.po index 2c3ed5c2cf..e58feaa6ce 100644 --- a/l10n/sv/files_external.po +++ b/l10n/sv/files_external.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files_sharing.po b/l10n/sv/files_sharing.po index 83540b196b..c8e79bb65d 100644 --- a/l10n/sv/files_sharing.po +++ b/l10n/sv/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files_trashbin.po b/l10n/sv/files_trashbin.po index 6e33046423..c917c8bda1 100644 --- a/l10n/sv/files_trashbin.po +++ b/l10n/sv/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files_versions.po b/l10n/sv/files_versions.po index 088b1f902d..ada122d58b 100644 --- a/l10n/sv/files_versions.po +++ b/l10n/sv/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/lib.po b/l10n/sv/lib.po index 5b3a208940..e2d9458652 100644 --- a/l10n/sv/lib.po +++ b/l10n/sv/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index 599768c9e4..78e13f62c2 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -125,7 +125,7 @@ msgstr "Fel uppstod vid uppdatering av appen" msgid "Updated" msgstr "Uppdaterad" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Sparar..." diff --git a/l10n/sv/user_ldap.po b/l10n/sv/user_ldap.po index 7473df8242..f75fdc8da0 100644 --- a/l10n/sv/user_ldap.po +++ b/l10n/sv/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/user_webdavauth.po b/l10n/sv/user_webdavauth.po index bf35caa2cf..0cb54a97da 100644 --- a/l10n/sv/user_webdavauth.po +++ b/l10n/sv/user_webdavauth.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sw_KE/core.po b/l10n/sw_KE/core.po index e548cb04e3..8a88331b36 100644 --- a/l10n/sw_KE/core.po +++ b/l10n/sw_KE/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sw_KE/files.po b/l10n/sw_KE/files.po index b58c07e5cb..5dd812bc1b 100644 --- a/l10n/sw_KE/files.po +++ b/l10n/sw_KE/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sw_KE/files_encryption.po b/l10n/sw_KE/files_encryption.po index 62ef25444c..2d586daf24 100644 --- a/l10n/sw_KE/files_encryption.po +++ b/l10n/sw_KE/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sw_KE/files_external.po b/l10n/sw_KE/files_external.po index 1edf9425c6..f61afed330 100644 --- a/l10n/sw_KE/files_external.po +++ b/l10n/sw_KE/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sw_KE/files_sharing.po b/l10n/sw_KE/files_sharing.po index 65a3fc50bd..324fbf714d 100644 --- a/l10n/sw_KE/files_sharing.po +++ b/l10n/sw_KE/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sw_KE/files_trashbin.po b/l10n/sw_KE/files_trashbin.po index a07e5dce97..dd07e32269 100644 --- a/l10n/sw_KE/files_trashbin.po +++ b/l10n/sw_KE/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sw_KE/files_versions.po b/l10n/sw_KE/files_versions.po index cef9f7b327..d0251e6a97 100644 --- a/l10n/sw_KE/files_versions.po +++ b/l10n/sw_KE/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sw_KE/lib.po b/l10n/sw_KE/lib.po index cdaf7c7f07..3c517fee56 100644 --- a/l10n/sw_KE/lib.po +++ b/l10n/sw_KE/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sw_KE/settings.po b/l10n/sw_KE/settings.po index c074b9bf1a..f85fcdca12 100644 --- a/l10n/sw_KE/settings.po +++ b/l10n/sw_KE/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" @@ -116,7 +116,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "" diff --git a/l10n/sw_KE/user_ldap.po b/l10n/sw_KE/user_ldap.po index 4aaba2fca2..7c6391cdc5 100644 --- a/l10n/sw_KE/user_ldap.po +++ b/l10n/sw_KE/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sw_KE/user_webdavauth.po b/l10n/sw_KE/user_webdavauth.po index 953de1d9f7..426f5e3072 100644 --- a/l10n/sw_KE/user_webdavauth.po +++ b/l10n/sw_KE/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/core.po b/l10n/ta_LK/core.po index 55a61f9b59..50d6af9b6b 100644 --- a/l10n/ta_LK/core.po +++ b/l10n/ta_LK/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/files.po b/l10n/ta_LK/files.po index 5098c48575..f26efe9217 100644 --- a/l10n/ta_LK/files.po +++ b/l10n/ta_LK/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/files_encryption.po b/l10n/ta_LK/files_encryption.po index 3bb249d6a9..59fde5c4fe 100644 --- a/l10n/ta_LK/files_encryption.po +++ b/l10n/ta_LK/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/files_external.po b/l10n/ta_LK/files_external.po index 99c6381107..678e681c2d 100644 --- a/l10n/ta_LK/files_external.po +++ b/l10n/ta_LK/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/files_sharing.po b/l10n/ta_LK/files_sharing.po index 59ced6d1e7..1aef2d28b2 100644 --- a/l10n/ta_LK/files_sharing.po +++ b/l10n/ta_LK/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/files_trashbin.po b/l10n/ta_LK/files_trashbin.po index 11fca381d5..924bbb462a 100644 --- a/l10n/ta_LK/files_trashbin.po +++ b/l10n/ta_LK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/files_versions.po b/l10n/ta_LK/files_versions.po index 7006e4048c..7c7a4eee0b 100644 --- a/l10n/ta_LK/files_versions.po +++ b/l10n/ta_LK/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/lib.po b/l10n/ta_LK/lib.po index cdd1610d33..591f805af9 100644 --- a/l10n/ta_LK/lib.po +++ b/l10n/ta_LK/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/settings.po b/l10n/ta_LK/settings.po index b67cf68c46..7d988829d0 100644 --- a/l10n/ta_LK/settings.po +++ b/l10n/ta_LK/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -117,7 +117,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "இயலுமைப்படுத்துக" diff --git a/l10n/ta_LK/user_ldap.po b/l10n/ta_LK/user_ldap.po index 38edbdb01c..6a582a0329 100644 --- a/l10n/ta_LK/user_ldap.po +++ b/l10n/ta_LK/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/user_webdavauth.po b/l10n/ta_LK/user_webdavauth.po index 855cd95e8d..e75db9cc3f 100644 --- a/l10n/ta_LK/user_webdavauth.po +++ b/l10n/ta_LK/user_webdavauth.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/core.po b/l10n/te/core.po index 417137fc05..3077ce28a0 100644 --- a/l10n/te/core.po +++ b/l10n/te/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/files.po b/l10n/te/files.po index 4f3c5fed3d..47cac8cd8a 100644 --- a/l10n/te/files.po +++ b/l10n/te/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/files_encryption.po b/l10n/te/files_encryption.po index 27ac36937f..cf1d6e37e1 100644 --- a/l10n/te/files_encryption.po +++ b/l10n/te/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/files_external.po b/l10n/te/files_external.po index 87acb28ef9..0ad4883fc5 100644 --- a/l10n/te/files_external.po +++ b/l10n/te/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/files_sharing.po b/l10n/te/files_sharing.po index 73b662b618..8d26d12e93 100644 --- a/l10n/te/files_sharing.po +++ b/l10n/te/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/files_trashbin.po b/l10n/te/files_trashbin.po index 7e768f37fd..c7d0a59bc5 100644 --- a/l10n/te/files_trashbin.po +++ b/l10n/te/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/files_versions.po b/l10n/te/files_versions.po index 0cd31615b5..d69922bf83 100644 --- a/l10n/te/files_versions.po +++ b/l10n/te/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/lib.po b/l10n/te/lib.po index e1190a2059..b08e968dc7 100644 --- a/l10n/te/lib.po +++ b/l10n/te/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/settings.po b/l10n/te/settings.po index b2685193b7..3fe6424681 100644 --- a/l10n/te/settings.po +++ b/l10n/te/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -117,7 +117,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "" diff --git a/l10n/te/user_ldap.po b/l10n/te/user_ldap.po index 2516171f5f..4dceae3576 100644 --- a/l10n/te/user_ldap.po +++ b/l10n/te/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/user_webdavauth.po b/l10n/te/user_webdavauth.po index 038f4caab9..bfa7e06be6 100644 --- a/l10n/te/user_webdavauth.po +++ b/l10n/te/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 55f9fb37e9..5b3e4c4845 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 44c5115e9f..c6e0d93c3d 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index fe492121d6..eb97fdc9e4 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 5a2772ef4c..2325f2f5c6 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 4375f2c902..1e66c6470d 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index fab03d3027..f16cf7e417 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index b720108dae..717570feb2 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 85e30cdc48..dd874d694a 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 04cd009886..a46287856f 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -116,7 +116,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 54fab0b1c0..958a16c10c 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index c55257e01c..9188e8d5cf 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/th_TH/core.po b/l10n/th_TH/core.po index a2644ea12f..a5d768f9ca 100644 --- a/l10n/th_TH/core.po +++ b/l10n/th_TH/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/files.po b/l10n/th_TH/files.po index 89f195428d..76c99829ca 100644 --- a/l10n/th_TH/files.po +++ b/l10n/th_TH/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/files_encryption.po b/l10n/th_TH/files_encryption.po index 83ddf27b1a..ffe62d2598 100644 --- a/l10n/th_TH/files_encryption.po +++ b/l10n/th_TH/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/files_external.po b/l10n/th_TH/files_external.po index fc56f1a61f..8ad035271a 100644 --- a/l10n/th_TH/files_external.po +++ b/l10n/th_TH/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/files_sharing.po b/l10n/th_TH/files_sharing.po index 60d528993b..4d2deef16b 100644 --- a/l10n/th_TH/files_sharing.po +++ b/l10n/th_TH/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/files_trashbin.po b/l10n/th_TH/files_trashbin.po index 3f3d84363f..9c184200fe 100644 --- a/l10n/th_TH/files_trashbin.po +++ b/l10n/th_TH/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/files_versions.po b/l10n/th_TH/files_versions.po index f1cc8cb847..4abcac4e0d 100644 --- a/l10n/th_TH/files_versions.po +++ b/l10n/th_TH/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/lib.po b/l10n/th_TH/lib.po index 1c9f395a0c..782b27555d 100644 --- a/l10n/th_TH/lib.po +++ b/l10n/th_TH/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/settings.po b/l10n/th_TH/settings.po index 9f174d2d49..c239256ebe 100644 --- a/l10n/th_TH/settings.po +++ b/l10n/th_TH/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -119,7 +119,7 @@ msgstr "เกิดข้อผิดพลาดในระหว่างก msgid "Updated" msgstr "อัพเดทแล้ว" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "กำลังบันทึุกข้อมูล..." diff --git a/l10n/th_TH/user_ldap.po b/l10n/th_TH/user_ldap.po index 9fa0376fdd..fdda463b0f 100644 --- a/l10n/th_TH/user_ldap.po +++ b/l10n/th_TH/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/user_webdavauth.po b/l10n/th_TH/user_webdavauth.po index 7f71ac8bb7..5c6623a310 100644 --- a/l10n/th_TH/user_webdavauth.po +++ b/l10n/th_TH/user_webdavauth.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/core.po b/l10n/tr/core.po index ff355f9109..78704bd88e 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/files.po b/l10n/tr/files.po index 9f10cf606c..c9fcbdb563 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/files_encryption.po b/l10n/tr/files_encryption.po index b3b4061663..445755c59c 100644 --- a/l10n/tr/files_encryption.po +++ b/l10n/tr/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/files_external.po b/l10n/tr/files_external.po index a7551418be..f539b2414c 100644 --- a/l10n/tr/files_external.po +++ b/l10n/tr/files_external.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/files_sharing.po b/l10n/tr/files_sharing.po index 014db5a4d5..365c9b3a7d 100644 --- a/l10n/tr/files_sharing.po +++ b/l10n/tr/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/files_trashbin.po b/l10n/tr/files_trashbin.po index a16869ebad..2354e94204 100644 --- a/l10n/tr/files_trashbin.po +++ b/l10n/tr/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/files_versions.po b/l10n/tr/files_versions.po index 80519b54e3..bf1b595e50 100644 --- a/l10n/tr/files_versions.po +++ b/l10n/tr/files_versions.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/lib.po b/l10n/tr/lib.po index f744fc9eb9..29d930a27e 100644 --- a/l10n/tr/lib.po +++ b/l10n/tr/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index bca687cb5c..86e9e92833 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -125,7 +125,7 @@ msgstr "Uygulama güncellenirken hata" msgid "Updated" msgstr "Güncellendi" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Kaydediliyor..." diff --git a/l10n/tr/user_ldap.po b/l10n/tr/user_ldap.po index a01974a08c..8f3ef99b51 100644 --- a/l10n/tr/user_ldap.po +++ b/l10n/tr/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/user_webdavauth.po b/l10n/tr/user_webdavauth.po index d746306eba..5c02bf6a89 100644 --- a/l10n/tr/user_webdavauth.po +++ b/l10n/tr/user_webdavauth.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/core.po b/l10n/uk/core.po index 7029715667..7935fe6434 100644 --- a/l10n/uk/core.po +++ b/l10n/uk/core.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/files.po b/l10n/uk/files.po index bb94b31982..3afb162edb 100644 --- a/l10n/uk/files.po +++ b/l10n/uk/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/files_encryption.po b/l10n/uk/files_encryption.po index 89a68a1fb4..8e820298fb 100644 --- a/l10n/uk/files_encryption.po +++ b/l10n/uk/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/files_external.po b/l10n/uk/files_external.po index cf8a838af0..9247439d55 100644 --- a/l10n/uk/files_external.po +++ b/l10n/uk/files_external.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/files_sharing.po b/l10n/uk/files_sharing.po index 849069fb73..a6b224557e 100644 --- a/l10n/uk/files_sharing.po +++ b/l10n/uk/files_sharing.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/files_trashbin.po b/l10n/uk/files_trashbin.po index 586f719a33..bb48add59d 100644 --- a/l10n/uk/files_trashbin.po +++ b/l10n/uk/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/files_versions.po b/l10n/uk/files_versions.po index 149735a38e..95c4cb2064 100644 --- a/l10n/uk/files_versions.po +++ b/l10n/uk/files_versions.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/lib.po b/l10n/uk/lib.po index 72255a6985..f581ae7ae6 100644 --- a/l10n/uk/lib.po +++ b/l10n/uk/lib.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po index d2414ba589..01c6e47b02 100644 --- a/l10n/uk/settings.po +++ b/l10n/uk/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -120,7 +120,7 @@ msgstr "Помилка при оновленні програми" msgid "Updated" msgstr "Оновлено" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Зберігаю..." diff --git a/l10n/uk/user_ldap.po b/l10n/uk/user_ldap.po index 16bb5c6e06..2f5feed2a8 100644 --- a/l10n/uk/user_ldap.po +++ b/l10n/uk/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/user_webdavauth.po b/l10n/uk/user_webdavauth.po index 95d0199df1..0b39465a48 100644 --- a/l10n/uk/user_webdavauth.po +++ b/l10n/uk/user_webdavauth.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/core.po b/l10n/ur_PK/core.po index a8adb13732..2439188cfc 100644 --- a/l10n/ur_PK/core.po +++ b/l10n/ur_PK/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/files.po b/l10n/ur_PK/files.po index 8e63ad73ee..acb0e8f71a 100644 --- a/l10n/ur_PK/files.po +++ b/l10n/ur_PK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/files_encryption.po b/l10n/ur_PK/files_encryption.po index 6e1fdab3de..b5f46680a0 100644 --- a/l10n/ur_PK/files_encryption.po +++ b/l10n/ur_PK/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/files_external.po b/l10n/ur_PK/files_external.po index 4f5bbffec5..f6e9d577bd 100644 --- a/l10n/ur_PK/files_external.po +++ b/l10n/ur_PK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/files_sharing.po b/l10n/ur_PK/files_sharing.po index cf84d773fa..9fdf3a11ba 100644 --- a/l10n/ur_PK/files_sharing.po +++ b/l10n/ur_PK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/files_trashbin.po b/l10n/ur_PK/files_trashbin.po index 6360325307..af2b0dbd1a 100644 --- a/l10n/ur_PK/files_trashbin.po +++ b/l10n/ur_PK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/files_versions.po b/l10n/ur_PK/files_versions.po index 4cf1d8a107..7d34dde439 100644 --- a/l10n/ur_PK/files_versions.po +++ b/l10n/ur_PK/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/lib.po b/l10n/ur_PK/lib.po index 7e41ed94b6..ea01e8371f 100644 --- a/l10n/ur_PK/lib.po +++ b/l10n/ur_PK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/settings.po b/l10n/ur_PK/settings.po index 350e4d1f2b..39b956ddc5 100644 --- a/l10n/ur_PK/settings.po +++ b/l10n/ur_PK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -116,7 +116,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "" diff --git a/l10n/ur_PK/user_ldap.po b/l10n/ur_PK/user_ldap.po index 9d1a468e4d..70d82c44bd 100644 --- a/l10n/ur_PK/user_ldap.po +++ b/l10n/ur_PK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/user_webdavauth.po b/l10n/ur_PK/user_webdavauth.po index fafd0150a6..874b058a64 100644 --- a/l10n/ur_PK/user_webdavauth.po +++ b/l10n/ur_PK/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/core.po b/l10n/vi/core.po index 0cb405774b..1accb85dd1 100644 --- a/l10n/vi/core.po +++ b/l10n/vi/core.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/files.po b/l10n/vi/files.po index 6343a227df..79bf00204a 100644 --- a/l10n/vi/files.po +++ b/l10n/vi/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/files_encryption.po b/l10n/vi/files_encryption.po index 967123b7f5..76448eaa08 100644 --- a/l10n/vi/files_encryption.po +++ b/l10n/vi/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/files_external.po b/l10n/vi/files_external.po index 1040172df2..1d8f070f12 100644 --- a/l10n/vi/files_external.po +++ b/l10n/vi/files_external.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/files_sharing.po b/l10n/vi/files_sharing.po index ff474f2b34..baddc87930 100644 --- a/l10n/vi/files_sharing.po +++ b/l10n/vi/files_sharing.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/files_trashbin.po b/l10n/vi/files_trashbin.po index 446a3fa7ff..83efb8ffba 100644 --- a/l10n/vi/files_trashbin.po +++ b/l10n/vi/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/files_versions.po b/l10n/vi/files_versions.po index 71e7d41d00..207ecde6dc 100644 --- a/l10n/vi/files_versions.po +++ b/l10n/vi/files_versions.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/lib.po b/l10n/vi/lib.po index 857d1e2072..73937b602b 100644 --- a/l10n/vi/lib.po +++ b/l10n/vi/lib.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/settings.po b/l10n/vi/settings.po index 5bb3e7db74..649183dcf9 100644 --- a/l10n/vi/settings.po +++ b/l10n/vi/settings.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -123,7 +123,7 @@ msgstr "Lỗi khi cập nhật ứng dụng" msgid "Updated" msgstr "Đã cập nhật" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Đang tiến hành lưu ..." diff --git a/l10n/vi/user_ldap.po b/l10n/vi/user_ldap.po index a1cbe868b3..49365ead0b 100644 --- a/l10n/vi/user_ldap.po +++ b/l10n/vi/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/user_webdavauth.po b/l10n/vi/user_webdavauth.po index 9d0eaeeec6..9f0e00a50a 100644 --- a/l10n/vi/user_webdavauth.po +++ b/l10n/vi/user_webdavauth.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/core.po b/l10n/zh_CN.GB2312/core.po index fea478dc80..b40e228844 100644 --- a/l10n/zh_CN.GB2312/core.po +++ b/l10n/zh_CN.GB2312/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/files.po b/l10n/zh_CN.GB2312/files.po index cf4bcdf218..e08b45e55c 100644 --- a/l10n/zh_CN.GB2312/files.po +++ b/l10n/zh_CN.GB2312/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/files_encryption.po b/l10n/zh_CN.GB2312/files_encryption.po index 76fc783547..878e5e2664 100644 --- a/l10n/zh_CN.GB2312/files_encryption.po +++ b/l10n/zh_CN.GB2312/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/files_external.po b/l10n/zh_CN.GB2312/files_external.po index 7d18a87a7a..d3602f8d94 100644 --- a/l10n/zh_CN.GB2312/files_external.po +++ b/l10n/zh_CN.GB2312/files_external.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/files_sharing.po b/l10n/zh_CN.GB2312/files_sharing.po index 41d1ad16b3..08809924df 100644 --- a/l10n/zh_CN.GB2312/files_sharing.po +++ b/l10n/zh_CN.GB2312/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/files_trashbin.po b/l10n/zh_CN.GB2312/files_trashbin.po index e06718232a..1706c782c5 100644 --- a/l10n/zh_CN.GB2312/files_trashbin.po +++ b/l10n/zh_CN.GB2312/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/files_versions.po b/l10n/zh_CN.GB2312/files_versions.po index 3d9d46cf1b..346dfc9063 100644 --- a/l10n/zh_CN.GB2312/files_versions.po +++ b/l10n/zh_CN.GB2312/files_versions.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/lib.po b/l10n/zh_CN.GB2312/lib.po index cfcb1e3765..020ad3c5b1 100644 --- a/l10n/zh_CN.GB2312/lib.po +++ b/l10n/zh_CN.GB2312/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/settings.po b/l10n/zh_CN.GB2312/settings.po index d43cd0d75d..a259a909f5 100644 --- a/l10n/zh_CN.GB2312/settings.po +++ b/l10n/zh_CN.GB2312/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -119,7 +119,7 @@ msgstr "应用升级时出现错误" msgid "Updated" msgstr "已升级" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "保存中..." diff --git a/l10n/zh_CN.GB2312/user_ldap.po b/l10n/zh_CN.GB2312/user_ldap.po index 00b1e4b2c7..2de59e1c07 100644 --- a/l10n/zh_CN.GB2312/user_ldap.po +++ b/l10n/zh_CN.GB2312/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/user_webdavauth.po b/l10n/zh_CN.GB2312/user_webdavauth.po index 8c6808debd..672fbad82e 100644 --- a/l10n/zh_CN.GB2312/user_webdavauth.po +++ b/l10n/zh_CN.GB2312/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/core.po b/l10n/zh_CN/core.po index 0bee1ece20..8b0bba0a79 100644 --- a/l10n/zh_CN/core.po +++ b/l10n/zh_CN/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index 24121e4bac..f16dc8ac1a 100644 --- a/l10n/zh_CN/files.po +++ b/l10n/zh_CN/files.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/files_encryption.po b/l10n/zh_CN/files_encryption.po index bebc5c7fd2..0b01ef9057 100644 --- a/l10n/zh_CN/files_encryption.po +++ b/l10n/zh_CN/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/files_external.po b/l10n/zh_CN/files_external.po index 9f24f4e301..71015f5413 100644 --- a/l10n/zh_CN/files_external.po +++ b/l10n/zh_CN/files_external.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/files_sharing.po b/l10n/zh_CN/files_sharing.po index d7b991be4a..f77a967602 100644 --- a/l10n/zh_CN/files_sharing.po +++ b/l10n/zh_CN/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/files_trashbin.po b/l10n/zh_CN/files_trashbin.po index 1358aeb205..51216ed592 100644 --- a/l10n/zh_CN/files_trashbin.po +++ b/l10n/zh_CN/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/files_versions.po b/l10n/zh_CN/files_versions.po index bbcc7504a7..d617fbb9d4 100644 --- a/l10n/zh_CN/files_versions.po +++ b/l10n/zh_CN/files_versions.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/lib.po b/l10n/zh_CN/lib.po index f293f42d19..949b3bca45 100644 --- a/l10n/zh_CN/lib.po +++ b/l10n/zh_CN/lib.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po index 8802053d5c..b00faa27fa 100644 --- a/l10n/zh_CN/settings.po +++ b/l10n/zh_CN/settings.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -124,7 +124,7 @@ msgstr "更新 app 时出错" msgid "Updated" msgstr "已更新" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "正在保存" diff --git a/l10n/zh_CN/user_ldap.po b/l10n/zh_CN/user_ldap.po index 75ce640640..5b309314a9 100644 --- a/l10n/zh_CN/user_ldap.po +++ b/l10n/zh_CN/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/user_webdavauth.po b/l10n/zh_CN/user_webdavauth.po index 78d193c789..7c8b3ea542 100644 --- a/l10n/zh_CN/user_webdavauth.po +++ b/l10n/zh_CN/user_webdavauth.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/core.po b/l10n/zh_HK/core.po index 20ecbff0aa..2d4729abd3 100644 --- a/l10n/zh_HK/core.po +++ b/l10n/zh_HK/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/files.po b/l10n/zh_HK/files.po index 87bfb87828..4bdea350bb 100644 --- a/l10n/zh_HK/files.po +++ b/l10n/zh_HK/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/files_encryption.po b/l10n/zh_HK/files_encryption.po index 7353c0a722..e74b971e80 100644 --- a/l10n/zh_HK/files_encryption.po +++ b/l10n/zh_HK/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/files_external.po b/l10n/zh_HK/files_external.po index e911c33540..c58c75be33 100644 --- a/l10n/zh_HK/files_external.po +++ b/l10n/zh_HK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/files_sharing.po b/l10n/zh_HK/files_sharing.po index 7897ca5dc2..323dd803c1 100644 --- a/l10n/zh_HK/files_sharing.po +++ b/l10n/zh_HK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/files_trashbin.po b/l10n/zh_HK/files_trashbin.po index aa3beee2e5..a487e0d631 100644 --- a/l10n/zh_HK/files_trashbin.po +++ b/l10n/zh_HK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/files_versions.po b/l10n/zh_HK/files_versions.po index c93a812b1e..ee5d894d76 100644 --- a/l10n/zh_HK/files_versions.po +++ b/l10n/zh_HK/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/lib.po b/l10n/zh_HK/lib.po index b52486be8a..e560749ad4 100644 --- a/l10n/zh_HK/lib.po +++ b/l10n/zh_HK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/settings.po b/l10n/zh_HK/settings.po index 07a86e1527..ed45045694 100644 --- a/l10n/zh_HK/settings.po +++ b/l10n/zh_HK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -116,7 +116,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "" diff --git a/l10n/zh_HK/user_ldap.po b/l10n/zh_HK/user_ldap.po index ae499e4098..c939df9acc 100644 --- a/l10n/zh_HK/user_ldap.po +++ b/l10n/zh_HK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/user_webdavauth.po b/l10n/zh_HK/user_webdavauth.po index 35347a3f0d..861fd6ab98 100644 --- a/l10n/zh_HK/user_webdavauth.po +++ b/l10n/zh_HK/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/core.po b/l10n/zh_TW/core.po index 671369c693..1d36067acb 100644 --- a/l10n/zh_TW/core.po +++ b/l10n/zh_TW/core.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index de181406e2..e4feb16563 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/files.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/files_encryption.po b/l10n/zh_TW/files_encryption.po index 308523e005..23c337b856 100644 --- a/l10n/zh_TW/files_encryption.po +++ b/l10n/zh_TW/files_encryption.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/files_external.po b/l10n/zh_TW/files_external.po index 4d01f33d12..2381134dcb 100644 --- a/l10n/zh_TW/files_external.po +++ b/l10n/zh_TW/files_external.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/files_sharing.po b/l10n/zh_TW/files_sharing.po index 04a1a49652..81782aed68 100644 --- a/l10n/zh_TW/files_sharing.po +++ b/l10n/zh_TW/files_sharing.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/files_trashbin.po b/l10n/zh_TW/files_trashbin.po index 478343be7d..a8ac6763aa 100644 --- a/l10n/zh_TW/files_trashbin.po +++ b/l10n/zh_TW/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/files_versions.po b/l10n/zh_TW/files_versions.po index 04ed7abf13..84176bd3b3 100644 --- a/l10n/zh_TW/files_versions.po +++ b/l10n/zh_TW/files_versions.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/lib.po b/l10n/zh_TW/lib.po index a17785e4f5..366b628108 100644 --- a/l10n/zh_TW/lib.po +++ b/l10n/zh_TW/lib.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/settings.po b/l10n/zh_TW/settings.po index 28cf8f8f6f..f0787d2836 100644 --- a/l10n/zh_TW/settings.po +++ b/l10n/zh_TW/settings.po @@ -18,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -127,7 +127,7 @@ msgstr "更新應用程式錯誤" msgid "Updated" msgstr "已更新" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "儲存中..." diff --git a/l10n/zh_TW/user_ldap.po b/l10n/zh_TW/user_ldap.po index 3e5dc03d7a..e777005a3c 100644 --- a/l10n/zh_TW/user_ldap.po +++ b/l10n/zh_TW/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/user_webdavauth.po b/l10n/zh_TW/user_webdavauth.po index 607dc386a8..19c7a6a94c 100644 --- a/l10n/zh_TW/user_webdavauth.po +++ b/l10n/zh_TW/user_webdavauth.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-16 02:09+0200\n" -"PO-Revision-Date: 2013-04-16 00:11+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/lib/l10n/cy_GB.php b/lib/l10n/cy_GB.php new file mode 100644 index 0000000000..9b087b4a2e --- /dev/null +++ b/lib/l10n/cy_GB.php @@ -0,0 +1,16 @@ + "Cymorth", +"Personal" => "Personol", +"Settings" => "Gosodiadau", +"Users" => "Defnyddwyr", +"Apps" => "Pecynnau", +"Admin" => "Gweinyddu", +"seconds ago" => "eiliad yn ôl", +"1 minute ago" => "1 munud yn ôl", +"1 hour ago" => "1 awr yn ôl", +"today" => "heddiw", +"yesterday" => "ddoe", +"last month" => "mis diwethaf", +"last year" => "y llynedd", +"years ago" => "blwyddyn yn ôl" +); diff --git a/lib/l10n/sr.php b/lib/l10n/sr.php index 1161b0a44b..5c6620f82b 100644 --- a/lib/l10n/sr.php +++ b/lib/l10n/sr.php @@ -16,6 +16,8 @@ "Files" => "Датотеке", "Text" => "Текст", "Images" => "Слике", +"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 installation guides." => "Погледајте водиче за инсталацију.", "seconds ago" => "пре неколико секунди", "1 minute ago" => "пре 1 минут", "%d minutes ago" => "пре %d минута", diff --git a/settings/l10n/cy_GB.php b/settings/l10n/cy_GB.php new file mode 100644 index 0000000000..f90e531f12 --- /dev/null +++ b/settings/l10n/cy_GB.php @@ -0,0 +1,6 @@ + "Gwall", +"Security Warning" => "Rhybudd Diogelwch", +"Password" => "Cyfrinair", +"New password" => "Cyfrinair newydd" +); diff --git a/settings/l10n/sr.php b/settings/l10n/sr.php index 460fab121a..86dc2a9272 100644 --- a/settings/l10n/sr.php +++ b/settings/l10n/sr.php @@ -1,6 +1,7 @@ "Грешка приликом учитавања списка из Складишта Програма", "Authentication error" => "Грешка при аутентификацији", +"Unable to change display name" => "Не могу да променим име за приказ", "Group already exists" => "Група већ постоји", "Unable to add group" => "Не могу да додам групу", "Could not enable app. " => "Не могу да укључим програм", @@ -13,17 +14,54 @@ "Admins can't remove themself from the admin group" => "Управници не могу себе уклонити из админ групе", "Unable to add user to group %s" => "Не могу да додам корисника у групу %s", "Unable to remove user from group %s" => "Не могу да уклоним корисника из групе %s", +"Couldn't update app." => "Не могу да ажурирам апликацију.", +"Update to {appversion}" => "Ажурирај на {appversion}", "Disable" => "Искључи", "Enable" => "Укључи", +"Please wait...." => "Сачекајте…", "Error" => "Грешка", +"Updating...." => "Ажурирам…", +"Error while updating app" => "Грешка при ажурирању апликације", +"Updated" => "Ажурирано", "Saving..." => "Чување у току...", +"deleted" => "обрисано", "undo" => "опозови", +"Unable to remove user" => "Не могу да уклоним корисника", "Groups" => "Групе", "Group Admin" => "Управник групе", "Delete" => "Обриши", +"add group" => "додај групу", +"A valid username must be provided" => "Морате унети исправно корисничко име", +"Error creating user" => "Грешка при прављењу корисника", +"A valid password must be provided" => "Морате унети исправну лозинку", "__language_name__" => "__language_name__", "Security Warning" => "Сигурносно упозорење", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Тренутно су ваши подаци и датотеке доступне са интернета. Датотека .htaccess коју је обезбедио пакет ownCloud не функционише. Саветујемо вам да подесите веб сервер тако да директоријум са подацима не буде изложен или да га преместите изван коренског директоријума веб сервера.", +"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 installation guides." => "Погледајте водиче за инсталацију.", +"Module 'fileinfo' missing" => "Недостаје модул „fileinfo“", +"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Недостаје PHP модул „fileinfo“. Препоручујемо вам да га омогућите да бисте добили најбоље резултате с откривањем MIME врста.", +"Locale not working" => "Локализација не ради", +"Internet connection not working" => "Веза с интернетом не ради", +"Execute one task with each page loaded" => "Изврши један задатак са сваком учитаном страницом", +"Sharing" => "Дељење", +"Enable Share API" => "Омогући API Share", +"Allow apps to use the Share API" => "Дозвољава апликацијама да користе API Share", +"Allow links" => "Дозволи везе", +"Allow users to share items to the public with links" => "Дозволи корисницима да деле ставке с другима путем веза", +"Allow resharing" => "Дозволи поновно дељење", +"Allow users to share items shared with them again" => "Дозволи корисницима да поновно деле ставке с другима", +"Allow users to share with anyone" => "Дозволи корисницима да деле са било ким", +"Allow users to only share with users in their groups" => "Дозволи корисницима да деле само са корисницима у њиховим групама", +"Security" => "Безбедност", +"Enforce HTTPS" => "Наметни HTTPS", +"Enforces the clients to connect to ownCloud via an encrypted connection." => "Намеће клијентима да се повежу са ownCloud-ом путем шифроване везе.", +"Log" => "Бележење", +"Log level" => "Ниво бележења", +"More" => "Више", +"Less" => "Мање", +"Version" => "Верзија", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Развијају Оунклауд (ownCloud) заједница, изворни код је издат под АГПЛ лиценцом.", "Add your App" => "Додајте ваш програм", "More Apps" => "Више програма", @@ -31,7 +69,14 @@ "See application page at apps.owncloud.com" => "Погледајте страницу са програмима на apps.owncloud.com", "-licensed by " => "-лиценцирао ", "Update" => "Ажурирај", +"User Documentation" => "Корисничка документација", +"Administrator Documentation" => "Администраторска документација", +"Online Documentation" => "Мрежна документација", +"Forum" => "Форум", +"Bugtracker" => "Праћење грешака", +"Commercial Support" => "Комерцијална подршка", "You have used %s of the available %s" => "Искористили сте %s од дозвољених %s", +"Get the apps to sync your files" => "Преузмите апликације ради синхронизовања датотека", "Show First Run Wizard again" => "Поново прикажи чаробњак за прво покретање", "Password" => "Лозинка", "Your password was changed" => "Лозинка је промењена", @@ -39,11 +84,24 @@ "Current password" => "Тренутна лозинка", "New password" => "Нова лозинка", "Change password" => "Измени лозинку", +"Display Name" => "Име за приказ", +"Your display name was changed" => "Ваше име за приказ је промењено", +"Unable to change your display name" => "Не могу да променим ваше име за приказ", +"Change display name" => "Промени име за приказ", "Email" => "Е-пошта", "Your email address" => "Ваша адреса е-поште", "Fill in an email address to enable password recovery" => "Ун", "Language" => "Језик", "Help translate" => " Помозите у превођењу", +"WebDAV" => "WebDAV", +"Use this address to connect to your ownCloud in your file manager" => "Користите ову адресу да се повежете са ownCloud-ом у управљачу датотекама", +"Login Name" => "Корисничко име", "Create" => "Направи", -"Other" => "Друго" +"Default Storage" => "Подразумевано складиште", +"Unlimited" => "Неограничено", +"Other" => "Друго", +"Storage" => "Складиште", +"change display name" => "промени име за приказ", +"set new password" => "постави нову лозинку", +"Default" => "Подразумевано" ); From a3999036f720e73727dac07a337578f3e25f92aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Tue, 16 Apr 2013 13:51:53 +0200 Subject: [PATCH 32/40] improved free space calculation if no quota is set, discussed in #2936 --- apps/files_trashbin/lib/trash.php | 68 ++++++++++++++++++++----------- 1 file changed, 44 insertions(+), 24 deletions(-) diff --git a/apps/files_trashbin/lib/trash.php b/apps/files_trashbin/lib/trash.php index 13823ecbba..f0b56eef01 100644 --- a/apps/files_trashbin/lib/trash.php +++ b/apps/files_trashbin/lib/trash.php @@ -104,27 +104,8 @@ class Trashbin { } else { \OC_Log::write('files_trashbin', 'Couldn\'t move '.$file_path.' to the trash bin', \OC_log::ERROR); } - - // get available disk space for user - $quota = \OC_Preferences::getValue($user, 'files', 'quota'); - if ( $quota === null || $quota === 'default') { - $quota = \OC_Appconfig::getValue('files', 'default_quota'); - } - if ( $quota === null || $quota === 'none' ) { - $quota = \OC\Files\Filesystem::free_space('/') / count(\OCP\User::getUsers()); - } else { - $quota = \OCP\Util::computerFileSize($quota); - } - - // calculate available space for trash bin - $rootInfo = $view->getFileInfo('/files'); - $free = $quota-$rootInfo['size']; // remaining free space for user - if ( $free > 0 ) { - $availableSpace = ($free * self::DEFAULTMAXSIZE / 100) - $trashbinSize; // how much space can be used for versions - } else { - $availableSpace = $free-$trashbinSize; - } - $trashbinSize -= self::expire($availableSpace); + + $trashbinSize -= self::expire($trashbinSize); self::setTrashbinSize($user, $trashbinSize); @@ -353,13 +334,52 @@ class Trashbin { } /** - * clean up the trash bin - * @param max. available disk space for trashbin + * calculate remaining free space for trash bin + * + * @param $trashbinSize current size of the trash bin + * @return available free space for trash bin */ - private static function expire($availableSpace) { + private static function calculateFreeSpace($trashbinSize) { + $softQuota = true; + $user = \OCP\User::getUser(); + $quota = \OC_Preferences::getValue($user, 'files', 'quota'); + $view = new \OC\Files\View('/'.$user); + if ( $quota === null || $quota === 'default') { + $quota = \OC_Appconfig::getValue('files', 'default_quota'); + } + if ( $quota === null || $quota === 'none' ) { + $quota = \OC\Files\Filesystem::free_space('/'); + $softQuota = false; + } else { + $quota = \OCP\Util::computerFileSize($quota); + } + + // calculate available space for trash bin + // subtract size of files and current trash bin size from quota + if ($softQuota) { + $rootInfo = $view->getFileInfo('/files/'); + $free = $quota-$rootInfo['size']; // remaining free space for user + if ( $free > 0 ) { + $availableSpace = ($free * self::DEFAULTMAXSIZE / 100) - $trashbinSize; // how much space can be used for versions + } else { + $availableSpace = $free-$trashbinSize; + } + } else { + $availableSpace = $quota; + } + + return $availableSpace; + } + + /** + * clean up the trash bin + * @param current size of the trash bin + */ + private static function expire($trashbinSize) { $user = \OCP\User::getUser(); $view = new \OC\Files\View('/'.$user); + $availableSpace = self::calculateFreeSpace($trashbinSize); $size = 0; $query = \OC_DB::prepare('SELECT `location`,`type`,`id`,`timestamp` FROM `*PREFIX*files_trash` WHERE `user`=?'); From ddde1b65db36507b30aa42e991c9b50312f7c97f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Tue, 16 Apr 2013 13:52:46 +0200 Subject: [PATCH 33/40] adapt free space calculation to the way it is done for the trash bin --- apps/files_versions/lib/versions.php | 22 +++++++++++++++------- 1 file changed, 15 insertions(+), 7 deletions(-) diff --git a/apps/files_versions/lib/versions.php b/apps/files_versions/lib/versions.php index 47d044873a..c38ba688fe 100644 --- a/apps/files_versions/lib/versions.php +++ b/apps/files_versions/lib/versions.php @@ -378,12 +378,14 @@ class Storage { $versions_fileview = new \OC\Files\View('/'.$uid.'/files_versions'); // get available disk space for user + $softQuota = true; $quota = \OC_Preferences::getValue($uid, 'files', 'quota'); if ( $quota === null || $quota === 'default') { $quota = \OC_Appconfig::getValue('files', 'default_quota'); } if ( $quota === null || $quota === 'none' ) { - $quota = \OC\Files\Filesystem::free_space('/') / count(\OCP\User::getUsers()); + $quota = \OC\Files\Filesystem::free_space('/'); + $softQuota = false; } else { $quota = \OCP\Util::computerFileSize($quota); } @@ -397,15 +399,21 @@ class Storage { } // calculate available space for version history - $files_view = new \OC\Files\View('/'.$uid.'/files'); - $rootInfo = $files_view->getFileInfo('/'); - $free = $quota-$rootInfo['size']; // remaining free space for user - if ( $free > 0 ) { - $availableSpace = ($free * self::DEFAULTMAXSIZE / 100) - $versionsSize; // how much space can be used for versions + // subtract size of files and current versions size from quota + if ($softQuota) { + $files_view = new \OC\Files\View('/'.$uid.'/files'); + $rootInfo = $files_view->getFileInfo('/'); + $free = $quota-$rootInfo['size']; // remaining free space for user + if ( $free > 0 ) { + $availableSpace = ($free * self::DEFAULTMAXSIZE / 100) - $versionsSize; // how much space can be used for versions + } else { + $availableSpace = $free-$versionsSize; + } } else { - $availableSpace = $free-$versionsSize; + $availableSpace = $quota; } + // after every 1000s run reduce the number of all versions not only for the current file $random = rand(0, 1000); if ($random == 0) { From 8471340db9a5d33fb2d77974ad3852cd52f016e5 Mon Sep 17 00:00:00 2001 From: Bernhard Posselt Date: Wed, 17 Apr 2013 12:24:18 +0200 Subject: [PATCH 34/40] use date and time instead of timestamp --- lib/log/owncloud.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/log/owncloud.php b/lib/log/owncloud.php index 20df52c27b..8c59352829 100644 --- a/lib/log/owncloud.php +++ b/lib/log/owncloud.php @@ -49,7 +49,8 @@ class OC_Log_Owncloud { public static function write($app, $message, $level) { $minLevel=min(OC_Config::getValue( "loglevel", OC_Log::WARN ), OC_Log::ERROR); if($level>=$minLevel) { - $entry=array('app'=>$app, 'message'=>$message, 'level'=>$level, 'time'=>time()); + $time = date("Y-m-d H:i:s", time()); + $entry=array('app'=>$app, 'message'=>$message, 'level'=>$level, 'time'=> $time); $handle = @fopen(self::$logFile, 'a'); if ($handle) { fwrite($handle, json_encode($entry)."\n"); From f7e29eabf29e4bda052ad170df1955fce0ad37ee Mon Sep 17 00:00:00 2001 From: Bernhard Posselt Date: Wed, 17 Apr 2013 14:05:51 +0200 Subject: [PATCH 35/40] fix admin log display and use a more readable format --- lib/log/owncloud.php | 2 +- settings/js/log.js | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/lib/log/owncloud.php b/lib/log/owncloud.php index 8c59352829..7a11a58833 100644 --- a/lib/log/owncloud.php +++ b/lib/log/owncloud.php @@ -49,7 +49,7 @@ class OC_Log_Owncloud { public static function write($app, $message, $level) { $minLevel=min(OC_Config::getValue( "loglevel", OC_Log::WARN ), OC_Log::ERROR); if($level>=$minLevel) { - $time = date("Y-m-d H:i:s", time()); + $time = date("F d, Y H:i:s", time()); $entry=array('app'=>$app, 'message'=>$message, 'level'=>$level, 'time'=> $time); $handle = @fopen(self::$logFile, 'a'); if ($handle) { diff --git a/settings/js/log.js b/settings/js/log.js index 81117f9e82..84f6d1aa5f 100644 --- a/settings/js/log.js +++ b/settings/js/log.js @@ -55,7 +55,11 @@ OC.Log={ row.append(messageTd); var timeTd=$(''); - timeTd.text(formatDate(entry.time*1000)); + if(isNaN(entry.time)){ + timeTd.text(entry.time); + } else { + timeTd.text(formatDate(entry.time*1000)); + } row.append(timeTd); $('#log').append(row); } From 44668b36a70fb3f76c96f393e9e4ebfe1589da90 Mon Sep 17 00:00:00 2001 From: Thomas Tanghus Date: Wed, 17 Apr 2013 14:08:45 +0200 Subject: [PATCH 36/40] Remove not null constraint. Fix #2976 --- db_structure.xml | 1 - lib/util.php | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/db_structure.xml b/db_structure.xml index 1138722234..dce90697b1 100644 --- a/db_structure.xml +++ b/db_structure.xml @@ -910,7 +910,6 @@ displayname text - true 64 diff --git a/lib/util.php b/lib/util.php index 37fb1bd9d0..34ed4a2a96 100755 --- a/lib/util.php +++ b/lib/util.php @@ -75,7 +75,7 @@ class OC_Util { public static function getVersion() { // hint: We only can count up. Reset minor/patchlevel when // updating major/minor version number. - return array(5, 80, 01); + return array(5, 80, 02); } /** From 4679e789e1bd1c485f2c7f74af8d20bcaff1e44f Mon Sep 17 00:00:00 2001 From: Bernhard Posselt Date: Wed, 17 Apr 2013 15:31:05 +0200 Subject: [PATCH 37/40] also adjust template properly for log date fix --- settings/templates/admin.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/settings/templates/admin.php b/settings/templates/admin.php index fdaba95ac1..182168ce9e 100644 --- a/settings/templates/admin.php +++ b/settings/templates/admin.php @@ -214,7 +214,11 @@ endfor;?> message);?> - time));?> + time)){ + p(OC_Util::formatDate($entry->time)); + } else { + p($entry->time); + }?> From 3d47c62a204393e68594bbcc00ccafde7a99f47d Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Wed, 17 Apr 2013 17:23:12 +0200 Subject: [PATCH 38/40] apply navigation hover effect directly to img and span, cleaner code --- core/css/styles.css | 26 +++++++++++++++++++++++--- 1 file changed, 23 insertions(+), 3 deletions(-) diff --git a/core/css/styles.css b/core/css/styles.css index 23e2f9a96e..7b0fc7644a 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -273,10 +273,30 @@ fieldset.warning a { color:#b94a48 !important; font-weight:bold; } color:#fff; text-shadow:#000 0 -1px 0; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; /* ellipsize long app names */ } + /* icon opacity and hover effect */ - #navigation a { -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; filter:alpha(opacity=50); opacity:.5; } /* 50% opacity when inactive */ - #navigation a:hover, #navigation a:focus { -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=80)"; filter:alpha(opacity=80); opacity:.8; } /* 80% opacity when hovered or focused */ - #navigation a.active { -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; filter:alpha(opacity=100); opacity:1; } /* full opacity for the active app */ + #navigation a img, + #navigation a span { + /* 50% opacity when inactive */ + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; + filter: alpha(opacity=50); + opacity: .5; + } + #navigation a:hover img, #navigation a:focus img, + #navigation a:hover span, #navigation a:focus span { + /* 80% opacity when hovered or focused */ + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)"; + filter: alpha(opacity=80); + opacity: .8; + } + #navigation a.active img, + #navigation a.active span { + /* full opacity for the active app */ + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; + filter: alpha(opacity=100); + opacity: 1; + } + /* positioning */ #navigation .icon { display:block; From 43d0f1fabfc8bc05fc5770e0c9e8ef37049754d5 Mon Sep 17 00:00:00 2001 From: Brice Maron Date: Wed, 17 Apr 2013 21:29:14 +0200 Subject: [PATCH 39/40] Warn when we do an upgrade --- lib/base.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/base.php b/lib/base.php index dde994a7e5..cb2193bb7a 100644 --- a/lib/base.php +++ b/lib/base.php @@ -278,7 +278,7 @@ class OC { OC_Config::setValue('maintenance', true); OC_Log::write('core', 'starting upgrade from ' . $installedVersion . ' to ' . $currentVersion, - OC_Log::DEBUG); + OC_Log::WARN); $minimizerCSS = new OC_Minimizer_CSS(); $minimizerCSS->clearCache(); $minimizerJS = new OC_Minimizer_JS(); From cbd8b792d9505f2020aa4a0f54c031f26cb5fe02 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Thu, 18 Apr 2013 02:09:28 +0200 Subject: [PATCH 40/40] [tx-robot] updated from transifex --- apps/files/l10n/cy_GB.php | 3 ++ apps/files_external/l10n/cy_GB.php | 3 +- apps/files_sharing/l10n/cy_GB.php | 2 + apps/files_trashbin/l10n/cy_GB.php | 3 +- core/l10n/cy_GB.php | 24 +++++++++- l10n/af_ZA/lib.po | 8 +--- l10n/ar/lib.po | 10 ++-- l10n/be/lib.po | 8 +--- l10n/bg_BG/lib.po | 12 ++--- l10n/bn_BD/lib.po | 8 +--- l10n/ca/lib.po | 12 ++--- l10n/cs_CZ/lib.po | 12 ++--- l10n/cy_GB/core.po | 72 ++++++++++++++--------------- l10n/cy_GB/files.po | 10 ++-- l10n/cy_GB/files_external.po | 6 +-- l10n/cy_GB/files_sharing.po | 8 ++-- l10n/cy_GB/files_trashbin.po | 6 +-- l10n/cy_GB/lib.po | 8 +--- l10n/cy_GB/settings.po | 18 ++++---- l10n/da/lib.po | 18 +++----- l10n/de/core.po | 61 ++++++++++++------------ l10n/de/files.po | 50 ++++++++++---------- l10n/de/files_trashbin.po | 14 +++--- l10n/de/lib.po | 30 ++++++------ l10n/de/settings.po | 56 +++++++++++----------- l10n/de_DE/core.po | 69 +++++++++++++-------------- l10n/de_DE/files.po | 60 ++++++++++++------------ l10n/de_DE/lib.po | 32 ++++++------- l10n/de_DE/settings.po | 66 +++++++++++++------------- l10n/el/lib.po | 18 +++----- l10n/eo/lib.po | 10 ++-- l10n/es/lib.po | 24 ++++------ l10n/es_AR/lib.po | 16 +++---- l10n/et_EE/lib.po | 12 ++--- l10n/eu/lib.po | 12 ++--- l10n/fa/lib.po | 14 ++---- l10n/fi/lib.po | 8 +--- l10n/fi_FI/lib.po | 10 ++-- l10n/fr/lib.po | 16 +++---- l10n/gl/lib.po | 16 +++---- l10n/he/lib.po | 12 ++--- l10n/hi/lib.po | 8 +--- l10n/hr/lib.po | 8 +--- l10n/hu_HU/lib.po | 14 ++---- l10n/ia/lib.po | 8 +--- l10n/id/lib.po | 14 ++---- l10n/is/lib.po | 10 ++-- l10n/it/lib.po | 10 ++-- l10n/ja_JP/lib.po | 14 ++---- l10n/ja_JP/settings.po | 26 +++++------ l10n/ka/lib.po | 10 ++-- l10n/ka_GE/lib.po | 12 ++--- l10n/kn/lib.po | 8 +--- l10n/ko/lib.po | 14 ++---- l10n/ku_IQ/lib.po | 8 +--- l10n/lb/lib.po | 8 +--- l10n/lt_LT/lib.po | 12 ++--- l10n/lv/lib.po | 10 ++-- l10n/mk/lib.po | 10 ++-- l10n/ms_MY/lib.po | 8 +--- l10n/my_MM/lib.po | 10 ++-- l10n/nb_NO/lib.po | 18 +++----- l10n/ne/lib.po | 8 +--- l10n/nl/lib.po | 16 +++---- l10n/nn_NO/lib.po | 8 +--- l10n/oc/lib.po | 10 ++-- l10n/pl/lib.po | 16 +++---- l10n/pl_PL/lib.po | 8 +--- l10n/pt_BR/lib.po | 18 +++----- l10n/pt_PT/lib.po | 16 +++---- l10n/ro/lib.po | 14 ++---- l10n/ru/lib.po | 24 ++++------ l10n/ru_RU/lib.po | 14 ++---- l10n/si_LK/lib.po | 12 ++--- l10n/sk/lib.po | 8 +--- l10n/sk_SK/lib.po | 16 +++---- l10n/sl/lib.po | 14 ++---- l10n/sq/lib.po | 10 ++-- l10n/sr/lib.po | 14 ++---- l10n/sr@latin/lib.po | 8 +--- l10n/sv/lib.po | 12 ++--- l10n/sw_KE/lib.po | 8 +--- l10n/ta_LK/lib.po | 10 ++-- l10n/te/lib.po | 8 +--- l10n/templates/core.pot | 22 ++++----- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 6 +-- l10n/templates/settings.pot | 10 ++-- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/lib.po | 10 ++-- l10n/tr/lib.po | 12 ++--- l10n/uk/lib.po | 18 +++----- l10n/ur_PK/lib.po | 8 +--- l10n/vi/lib.po | 16 +++---- l10n/zh_CN.GB2312/lib.po | 10 ++-- l10n/zh_CN/lib.po | 14 ++---- l10n/zh_HK/lib.po | 8 +--- l10n/zh_TW/lib.po | 18 +++----- lib/l10n/ar.php | 1 - lib/l10n/bg_BG.php | 1 - lib/l10n/ca.php | 1 - lib/l10n/cs_CZ.php | 1 - lib/l10n/da.php | 1 - lib/l10n/de.php | 3 +- lib/l10n/de_DE.php | 3 +- lib/l10n/el.php | 1 - lib/l10n/es.php | 1 - lib/l10n/es_AR.php | 1 - lib/l10n/et_EE.php | 1 - lib/l10n/eu.php | 1 - lib/l10n/fa.php | 1 - lib/l10n/fi_FI.php | 1 - lib/l10n/fr.php | 1 - lib/l10n/gl.php | 1 - lib/l10n/hu_HU.php | 1 - lib/l10n/id.php | 1 - lib/l10n/it.php | 1 - lib/l10n/ja_JP.php | 1 - lib/l10n/ka_GE.php | 1 - lib/l10n/lv.php | 1 - lib/l10n/nl.php | 1 - lib/l10n/pl.php | 1 - lib/l10n/pt_BR.php | 1 - lib/l10n/pt_PT.php | 1 - lib/l10n/ru.php | 1 - lib/l10n/sk_SK.php | 1 - lib/l10n/sl.php | 1 - lib/l10n/sq.php | 1 - lib/l10n/uk.php | 1 - lib/l10n/zh_CN.php | 1 - settings/l10n/cy_GB.php | 5 +- settings/l10n/de.php | 2 +- settings/l10n/de_DE.php | 2 +- settings/l10n/ja_JP.php | 2 +- 140 files changed, 643 insertions(+), 941 deletions(-) diff --git a/apps/files/l10n/cy_GB.php b/apps/files/l10n/cy_GB.php index 762c958f12..2f19a87d57 100644 --- a/apps/files/l10n/cy_GB.php +++ b/apps/files/l10n/cy_GB.php @@ -1,4 +1,7 @@ "Dileu", "Error" => "Gwall", +"Save" => "Cadw", +"Download" => "Llwytho i lawr", "Unshare" => "Dad-rannu" ); diff --git a/apps/files_external/l10n/cy_GB.php b/apps/files_external/l10n/cy_GB.php index a0e1efd4a8..aee5847763 100644 --- a/apps/files_external/l10n/cy_GB.php +++ b/apps/files_external/l10n/cy_GB.php @@ -1,3 +1,4 @@ "Defnyddwyr" +"Users" => "Defnyddwyr", +"Delete" => "Dileu" ); diff --git a/apps/files_sharing/l10n/cy_GB.php b/apps/files_sharing/l10n/cy_GB.php index 00f0b16204..99efe9f734 100644 --- a/apps/files_sharing/l10n/cy_GB.php +++ b/apps/files_sharing/l10n/cy_GB.php @@ -1,4 +1,6 @@ "Cyfrinair", +"Submit" => "Cyflwyno", +"Download" => "Llwytho i lawr", "web services under your control" => "gwasanaethau gwe a reolir gennych" ); diff --git a/apps/files_trashbin/l10n/cy_GB.php b/apps/files_trashbin/l10n/cy_GB.php index 4a264eb936..2f17005337 100644 --- a/apps/files_trashbin/l10n/cy_GB.php +++ b/apps/files_trashbin/l10n/cy_GB.php @@ -1,3 +1,4 @@ "Gwall" +"Error" => "Gwall", +"Delete" => "Dileu" ); diff --git a/core/l10n/cy_GB.php b/core/l10n/cy_GB.php index 6698ce77a3..4d28ae29a9 100644 --- a/core/l10n/cy_GB.php +++ b/core/l10n/cy_GB.php @@ -1,6 +1,11 @@ "Rhannodd defnyddiwr %s ffeil â chi", +"User %s shared a folder with you" => "Rhannodd defnyddiwr %s blygell â chi", +"User %s shared the file \"%s\" with you. It is available for download here: %s" => "Rhannodd defnyddiwr %s ffeil \"%s\" â chi. Gellir ei llwytho lawr o fan hyn: %s", +"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Rhannodd defnyddiwr %s blygell \"%s\" â chi. Gellir ei llwytho lawr o fan hyn: %s", "Category type not provided." => "Math o gategori heb ei ddarparu.", "No category to add?" => "Dim categori i'w ychwanegu?", +"This category already exists: %s" => "Mae'r categori hwn eisoes yn bodoli: %s", "Object type not provided." => "Math o wrthrych heb ei ddarparu.", "%s ID not provided." => "%s ID heb ei ddarparu.", "Error adding %s to favorites." => "Gwall wrth ychwanegu %s at ffefrynnau.", @@ -44,7 +49,12 @@ "Choose" => "Dewisiwch", "Yes" => "Ie", "No" => "Na", +"The object type is not specified." => "Nid yw'r math o wrthrych wedi cael ei nodi.", "Error" => "Gwall", +"The app name is not specified." => "Nid yw enw'r pecyn wedi cael ei nodi.", +"The required file {file} is not installed!" => "Nid yw'r ffeil ofynnol {file} wedi ei gosod!", +"Shared" => "Rhannwyd", +"Share" => "Rhannu", "Error while sharing" => "Gwall wrth rannu", "Error while unsharing" => "Gwall wrth ddad-rannu", "Error while changing permissions" => "Gwall wrth newid caniatâd", @@ -54,6 +64,8 @@ "Share with link" => "Dolen ar gyfer rhannu", "Password protect" => "Diogelu cyfrinair", "Password" => "Cyfrinair", +"Email link to person" => "E-bostio dolen at berson", +"Send" => "Anfon", "Set expiration date" => "Gosod dyddiad dod i ben", "Expiration date" => "Dyddiad dod i ben", "Share via email:" => "Rhannu drwy e-bost:", @@ -70,6 +82,10 @@ "Password protected" => "Diogelwyd â chyfrinair", "Error unsetting expiration date" => "Gwall wrth ddad-osod dyddiad dod i ben", "Error setting expiration date" => "Gwall wrth osod dyddiad dod i ben", +"Sending ..." => "Yn anfon ...", +"Email sent" => "Anfonwyd yr e-bost", +"The update was unsuccessful. Please report this issue to the ownCloud community." => "Methodd y diweddariad. Adroddwch y mater hwn i gymuned ownCloud.", +"The update was successful. Redirecting you to ownCloud now." => "Roedd y diweddariad yn llwyddiannus. Cewch eich ailgyfeirio i ownCloud nawr.", "ownCloud password reset" => "ailosod cyfrinair ownCloud", "Use the following link to reset your password: {link}" => "Defnyddiwch y ddolen hon i ailosod eich cyfrinair: {link}", "You will receive a link to reset your password via Email." => "Byddwch yn derbyn dolen drwy e-bost i ailosod eich cyfrinair.", @@ -91,8 +107,12 @@ "Edit categories" => "Golygu categorïau", "Add" => "Ychwanegu", "Security Warning" => "Rhybudd Diogelwch", +"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Mae eich fersiwn PHP yn agored i ymosodiad NULL Byte (CVE-2006-7243)", +"Please update your PHP installation to use ownCloud securely." => "Diweddarwch eich PHP i ddefnyddio ownCloud yn ddiogel.", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Does dim cynhyrchydd rhifau hap diogel ar gael, galluogwch estyniad PHP OpenSSL.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Heb gynhyrchydd rhifau hap diogel efallai y gall ymosodwr ragweld tocynnau ailosod cyfrinair a meddiannu eich cyfrif.", +"Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Mwy na thebyg fod modd cyrraeddd eich cyfeiriadur data a ffeilau o'r rhyngrwyd oherwydd nid yw'r ffeil .htaccess yn gweithio. ", +"For information how to properly configure your server, please see the documentation." => "Am wybodaeth ar sut i gyflunio'r gweinydd yn gywir, cyfeiriwch at y ddogfennaeth.", "Create an admin account" => "Crewch gyfrif gweinyddol", "Advanced" => "Uwch", "Data folder" => "Plygell data", @@ -112,6 +132,8 @@ "Lost your password?" => "Wedi colli'ch cyfrinair?", "remember" => "cofio", "Log in" => "Mewngofnodi", +"Alternative Logins" => "Mewngofnodiadau Amgen", "prev" => "blaenorol", -"next" => "nesaf" +"next" => "nesaf", +"Updating ownCloud to version %s, this may take a while." => "Yn diweddaru owncloud i fersiwn %s, gall hyn gymryd amser." ); diff --git a/l10n/af_ZA/lib.po b/l10n/af_ZA/lib.po index 1bcdf367fe..6150500229 100644 --- a/l10n/af_ZA/lib.po +++ b/l10n/af_ZA/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -93,10 +93,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/ar/lib.po b/l10n/ar/lib.po index 47401163df..eef5380b76 100644 --- a/l10n/ar/lib.po +++ b/l10n/ar/lib.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Ahmad Matalqah , 2013. +# Matalqah , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -94,10 +94,6 @@ msgstr "اعداد اسم مستخدم للمدير" msgid "Set an admin password." msgstr "اعداد كلمة مرور للمدير" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "تحديد مجلد " - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/be/lib.po b/l10n/be/lib.po index 3a15991192..13d868719d 100644 --- a/l10n/be/lib.po +++ b/l10n/be/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" @@ -93,10 +93,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/bg_BG/lib.po b/l10n/bg_BG/lib.po index ae1ec0aeea..0ae91bad8e 100644 --- a/l10n/bg_BG/lib.po +++ b/l10n/bg_BG/lib.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Kiril , 2013. -# Stefan Ilivanov , 2013. +# Kiril , 2013 +# Stefan Ilivanov , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -95,10 +95,6 @@ msgstr "Въведете потребителско име за админист msgid "Set an admin password." msgstr "Въведете парола за администратор." -#: setup.php:40 -msgid "Specify a data folder." -msgstr "Укажете папка за данни" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/bn_BD/lib.po b/l10n/bn_BD/lib.po index a46f18de27..0509e1a16d 100644 --- a/l10n/bn_BD/lib.po +++ b/l10n/bn_BD/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -93,10 +93,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/ca/lib.po b/l10n/ca/lib.po index 13628a3af4..29f4a9f8ac 100644 --- a/l10n/ca/lib.po +++ b/l10n/ca/lib.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2013. -# , 2012-2013. +# rogerc , 2013 +# rogerc , 2012-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -95,10 +95,6 @@ msgstr "Establiu un nom d'usuari per l'administrador." msgid "Set an admin password." msgstr "Establiu una contrasenya per l'administrador." -#: setup.php:40 -msgid "Specify a data folder." -msgstr "Especifiqueu una carpeta de dades." - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/cs_CZ/lib.po b/l10n/cs_CZ/lib.po index c9a543b6ec..aeba218b37 100644 --- a/l10n/cs_CZ/lib.po +++ b/l10n/cs_CZ/lib.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Martin , 2012. -# Tomáš Chvátal , 2012-2013. +# Martin , 2012 +# Tomáš Chvátal , 2012-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -95,10 +95,6 @@ msgstr "Zadejte uživatelské jméno správce." msgid "Set an admin password." msgstr "Zadejte heslo správce." -#: setup.php:40 -msgid "Specify a data folder." -msgstr "Určete složku dat." - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/cy_GB/core.po b/l10n/cy_GB/core.po index d72aedca2e..70dc34cea5 100644 --- a/l10n/cy_GB/core.po +++ b/l10n/cy_GB/core.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Owen Llywelyn , 2013. +# ubuntucymraeg , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-17 14:10+0000\n" +"Last-Translator: ubuntucymraeg \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,26 +21,26 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "User %s shared a file with you" -msgstr "" +msgstr "Rhannodd defnyddiwr %s ffeil â chi" #: ajax/share.php:99 #, php-format msgid "User %s shared a folder with you" -msgstr "" +msgstr "Rhannodd defnyddiwr %s blygell â chi" #: ajax/share.php:101 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "" +msgstr "Rhannodd defnyddiwr %s ffeil \"%s\" â chi. Gellir ei llwytho lawr o fan hyn: %s" #: ajax/share.php:104 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "" +msgstr "Rhannodd defnyddiwr %s blygell \"%s\" â chi. Gellir ei llwytho lawr o fan hyn: %s" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -53,7 +53,7 @@ msgstr "Dim categori i'w ychwanegu?" #: ajax/vcategories/add.php:37 #, php-format msgid "This category already exists: %s" -msgstr "" +msgstr "Mae'r categori hwn eisoes yn bodoli: %s" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -236,7 +236,7 @@ msgstr "Na" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." -msgstr "" +msgstr "Nid yw'r math o wrthrych wedi cael ei nodi." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 @@ -248,19 +248,19 @@ msgstr "Gwall" #: js/oc-vcategories.js:179 msgid "The app name is not specified." -msgstr "" +msgstr "Nid yw enw'r pecyn wedi cael ei nodi." #: js/oc-vcategories.js:194 msgid "The required file {file} is not installed!" -msgstr "" +msgstr "Nid yw'r ffeil ofynnol {file} wedi ei gosod!" #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" -msgstr "" +msgstr "Rhannwyd" #: js/share.js:90 msgid "Share" -msgstr "" +msgstr "Rhannu" #: js/share.js:125 js/share.js:617 msgid "Error while sharing" @@ -300,11 +300,11 @@ msgstr "Cyfrinair" #: js/share.js:173 msgid "Email link to person" -msgstr "" +msgstr "E-bostio dolen at berson" #: js/share.js:174 msgid "Send" -msgstr "" +msgstr "Anfon" #: js/share.js:178 msgid "Set expiration date" @@ -372,22 +372,22 @@ msgstr "Gwall wrth osod dyddiad dod i ben" #: js/share.js:604 msgid "Sending ..." -msgstr "" +msgstr "Yn anfon ..." #: js/share.js:615 msgid "Email sent" -msgstr "" +msgstr "Anfonwyd yr e-bost" #: js/update.js:14 msgid "" "The update was unsuccessful. Please report this issue to the ownCloud " "community." -msgstr "" +msgstr "Methodd y diweddariad. Adroddwch y mater hwn i gymuned ownCloud." #: js/update.js:18 msgid "The update was successful. Redirecting you to ownCloud now." -msgstr "" +msgstr "Roedd y diweddariad yn llwyddiannus. Cewch eich ailgyfeirio i ownCloud nawr." #: lostpassword/controller.php:48 msgid "ownCloud password reset" @@ -477,11 +477,11 @@ msgstr "Rhybudd Diogelwch" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" -msgstr "" +msgstr "Mae eich fersiwn PHP yn agored i ymosodiad NULL Byte (CVE-2006-7243)" #: templates/installation.php:26 msgid "Please update your PHP installation to use ownCloud securely." -msgstr "" +msgstr "Diweddarwch eich PHP i ddefnyddio ownCloud yn ddiogel." #: templates/installation.php:32 msgid "" @@ -499,14 +499,14 @@ msgstr "Heb gynhyrchydd rhifau hap diogel efallai y gall ymosodwr ragweld tocynn msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." -msgstr "" +msgstr "Mwy na thebyg fod modd cyrraeddd eich cyfeiriadur data a ffeilau o'r rhyngrwyd oherwydd nid yw'r ffeil .htaccess yn gweithio. " #: templates/installation.php:40 msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "" +msgstr "Am wybodaeth ar sut i gyflunio'r gweinydd yn gywir, cyfeiriwch at y ddogfennaeth." #: templates/installation.php:44 msgid "Create an admin account" @@ -520,37 +520,37 @@ msgstr "Uwch" msgid "Data folder" msgstr "Plygell data" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" msgstr "Cyflunio'r gronfa ddata" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" msgstr "ddefnyddir" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" msgstr "Defnyddiwr cronfa ddata" -#: templates/installation.php:143 +#: templates/installation.php:144 msgid "Database password" msgstr "Cyfrinair cronfa ddata" -#: templates/installation.php:148 +#: templates/installation.php:149 msgid "Database name" msgstr "Enw cronfa ddata" -#: templates/installation.php:158 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "Tablespace cronfa ddata" -#: templates/installation.php:165 +#: templates/installation.php:166 msgid "Database host" msgstr "Gwesteiwr cronfa ddata" -#: templates/installation.php:171 +#: templates/installation.php:172 msgid "Finish setup" msgstr "Gorffen sefydlu" @@ -590,7 +590,7 @@ msgstr "Mewngofnodi" #: templates/login.php:49 msgid "Alternative Logins" -msgstr "" +msgstr "Mewngofnodiadau Amgen" #: templates/part.pagenavi.php:3 msgid "prev" @@ -603,4 +603,4 @@ msgstr "nesaf" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "" +msgstr "Yn diweddaru owncloud i fersiwn %s, gall hyn gymryd amser." diff --git a/l10n/cy_GB/files.po b/l10n/cy_GB/files.po index d631320c9e..5a9688dff5 100644 --- a/l10n/cy_GB/files.po +++ b/l10n/cy_GB/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:03+0200\n" +"PO-Revision-Date: 2013-04-17 17:20+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -84,7 +84,7 @@ msgstr "" #: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 msgid "Delete" -msgstr "" +msgstr "Dileu" #: js/fileactions.js:193 msgid "Rename" @@ -249,7 +249,7 @@ msgstr "" #: templates/admin.php:26 msgid "Save" -msgstr "" +msgstr "Cadw" #: templates/index.php:7 msgid "New" @@ -285,7 +285,7 @@ msgstr "" #: templates/index.php:76 msgid "Download" -msgstr "" +msgstr "Llwytho i lawr" #: templates/index.php:88 templates/index.php:89 msgid "Unshare" diff --git a/l10n/cy_GB/files_external.po b/l10n/cy_GB/files_external.po index e6060e38d5..1b5cc6d424 100644 --- a/l10n/cy_GB/files_external.po +++ b/l10n/cy_GB/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-18 02:03+0200\n" +"PO-Revision-Date: 2013-04-17 17:20+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -97,7 +97,7 @@ msgstr "Defnyddwyr" #: templates/settings.php:113 templates/settings.php:114 #: templates/settings.php:149 templates/settings.php:150 msgid "Delete" -msgstr "" +msgstr "Dileu" #: templates/settings.php:129 msgid "Enable User External Storage" diff --git a/l10n/cy_GB/files_sharing.po b/l10n/cy_GB/files_sharing.po index 42530fe4a7..3b6f94ed70 100644 --- a/l10n/cy_GB/files_sharing.po +++ b/l10n/cy_GB/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-18 02:03+0200\n" +"PO-Revision-Date: 2013-04-17 17:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -23,7 +23,7 @@ msgstr "Cyfrinair" #: templates/authenticate.php:6 msgid "Submit" -msgstr "" +msgstr "Cyflwyno" #: templates/public.php:10 #, php-format @@ -37,7 +37,7 @@ msgstr "" #: templates/public.php:19 templates/public.php:43 msgid "Download" -msgstr "" +msgstr "Llwytho i lawr" #: templates/public.php:40 msgid "No preview available for" diff --git a/l10n/cy_GB/files_trashbin.po b/l10n/cy_GB/files_trashbin.po index 22b562fc3c..3797939ab1 100644 --- a/l10n/cy_GB/files_trashbin.po +++ b/l10n/cy_GB/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-18 02:03+0200\n" +"PO-Revision-Date: 2013-04-17 17:20+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -77,7 +77,7 @@ msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" -msgstr "" +msgstr "Dileu" #: templates/part.breadcrumb.php:9 msgid "Deleted Files" diff --git a/l10n/cy_GB/lib.po b/l10n/cy_GB/lib.po index 0b2d290f87..ac97a0a055 100644 --- a/l10n/cy_GB/lib.po +++ b/l10n/cy_GB/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -93,10 +93,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/cy_GB/settings.po b/l10n/cy_GB/settings.po index dc9b6f6a09..ebf288587e 100644 --- a/l10n/cy_GB/settings.po +++ b/l10n/cy_GB/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-17 21:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -64,7 +64,7 @@ msgstr "" #: ajax/setlanguage.php:17 ajax/setlanguage.php:20 msgid "Invalid request" -msgstr "" +msgstr "Cais annilys" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" @@ -143,7 +143,7 @@ msgstr "" #: js/users.js:111 templates/users.php:161 msgid "Delete" -msgstr "" +msgstr "Dileu" #: js/users.js:262 msgid "add group" @@ -312,19 +312,19 @@ msgstr "" msgid "Log level" msgstr "" -#: templates/admin.php:223 +#: templates/admin.php:227 msgid "More" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Less" msgstr "" -#: templates/admin.php:231 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:102 msgid "Version" msgstr "" -#: templates/admin.php:234 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:105 msgid "" "Developed by the ownCloud community, the , 2012. -# Frederik Lassen , 2013. -# Morten Juhl-Johansen Zölde-Fejér , 2012-2013. -# , 2012. -# Thomas , 2013. +# cronner , 2012 +# Frederik Lassen , 2013 +# Morten Juhl-Johansen Zölde-Fejér , 2012-2013 +# osos , 2012 +# cronner , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -98,10 +98,6 @@ msgstr "Angiv et admin brugernavn." msgid "Set an admin password." msgstr "Angiv et admin kodeord." -#: setup.php:40 -msgid "Specify a data folder." -msgstr "Specificer en data mappe." - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/de/core.po b/l10n/de/core.po index e5f6b5d579..ff7be03630 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -3,30 +3,31 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2011-2012. -# , 2011. -# , 2012. -# , 2011. -# I Robot , 2012-2013. -# I Robot , 2012. -# Jan-Christoph Borchardt , 2011. -# , 2012. -# Marcel Kühlhorn , 2012-2013. -# , 2012. -# , 2012. -# , 2012. -# Phi Lieb <>, 2012. -# Susi <>, 2012. -# , 2012. -# , 2012. -# Tristan , 2013. +# goeck , 2011-2012 +# infinity8 , 2011 +# Mirodin , 2012 +# , 2011 +# I Robot , 2012-2013 +# I Robot , 2012 +# Jan-Christoph Borchardt , 2011 +# Lukas Reschke , 2013 +# fmms , 2012 +# Marcel Kühlhorn , 2012-2013 +# thiel , 2012 +# mike.f , 2012 +# JamFX , 2012 +# Phi Lieb <>, 2012 +# Susi <>, 2012 +# , 2012 +# , 2012 +# Mirodin , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-17 12:50+0000\n" +"Last-Translator: Lukas Reschke \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -536,37 +537,37 @@ msgstr "Fortgeschritten" msgid "Data folder" msgstr "Datenverzeichnis" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" msgstr "Datenbank einrichten" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" msgstr "wird verwendet" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" msgstr "Datenbank-Benutzer" -#: templates/installation.php:143 +#: templates/installation.php:144 msgid "Database password" msgstr "Datenbank-Passwort" -#: templates/installation.php:148 +#: templates/installation.php:149 msgid "Database name" msgstr "Datenbank-Name" -#: templates/installation.php:158 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "Datenbank-Tablespace" -#: templates/installation.php:165 +#: templates/installation.php:166 msgid "Database host" msgstr "Datenbank-Host" -#: templates/installation.php:171 +#: templates/installation.php:172 msgid "Finish setup" msgstr "Installation abschließen" diff --git a/l10n/de/files.po b/l10n/de/files.po index 6075d0eff7..c401e3168d 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -3,35 +3,35 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# , 2012. -# I Robot , 2012-2013. -# I Robot , 2012. -# Jan-Christoph Borchardt , 2012. -# Jan-Christoph Borchardt , 2011. -# Jan-Christoph Borchardt , 2011. -# , 2012. -# , 2012. -# Marcel Kühlhorn , 2012-2013. -# , 2013. -# Michael Krell , 2012. -# , 2012. -# , 2012. -# Phi Lieb <>, 2012. -# , 2012. -# Thomas Müller <>, 2012. -# , 2012. -# , 2013. -# , 2013. -# , 2013. -# , 2013. +# goeck , 2012 +# Mirodin , 2012 +# I Robot , 2012-2013 +# I Robot , 2012 +# Jan-Christoph Borchardt , 2012 +# Jan-Christoph Borchardt , 2011 +# Jan-Christoph Borchardt , 2011 +# Lukas Reschke , 2012 +# fmms , 2012 +# Marcel Kühlhorn , 2012-2013 +# thiel , 2013 +# Michael Krell , 2012 +# piccobello , 2012 +# JamFX , 2012 +# Phi Lieb <>, 2012 +# I Robot , 2012 +# Thomas Müller <>, 2012 +# traductor , 2012 +# Linutux , 2013 +# kabum , 2013 +# kabum , 2013 +# Wachhund , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-18 02:03+0200\n" +"PO-Revision-Date: 2013-04-17 07:21+0000\n" +"Last-Translator: Mirodin \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/de/files_trashbin.po b/l10n/de/files_trashbin.po index 7484373ee0..e4aa758e23 100644 --- a/l10n/de/files_trashbin.po +++ b/l10n/de/files_trashbin.po @@ -3,17 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# I Robot , 2013. -# Marcel Kühlhorn , 2013. -# Tristan , 2013. -# , 2013. +# I Robot , 2013 +# Marcel Kühlhorn , 2013 +# Mirodin , 2013 +# Wachhund , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-18 02:03+0200\n" +"PO-Revision-Date: 2013-04-17 07:26+0000\n" +"Last-Translator: Mirodin \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/de/lib.po b/l10n/de/lib.po index 991f7008d7..6e43319234 100644 --- a/l10n/de/lib.po +++ b/l10n/de/lib.po @@ -3,22 +3,22 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# I Robot , 2013. -# I Robot , 2012. -# Jan-Christoph Borchardt , 2012. -# Marcel Kühlhorn , 2012-2013. -# Phi Lieb <>, 2012. -# , 2013. -# , 2012. -# , 2012. -# Tristan , 2013. +# Mirodin , 2012 +# I Robot , 2013 +# I Robot , 2012 +# Jan-Christoph Borchardt , 2012 +# Marcel Kühlhorn , 2012-2013 +# Phi Lieb <>, 2012 +# stefanniedermann , 2013 +# I Robot , 2012 +# traductor , 2012 +# Mirodin , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" @@ -103,10 +103,6 @@ msgstr "Setze Administrator Benutzername." msgid "Set an admin password." msgstr "Setze Administrator Passwort" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "Datei-Verzeichnis angeben." - #: setup.php:55 #, php-format msgid "%s enter the database username." @@ -195,7 +191,7 @@ msgstr "Dein Web-Server ist noch nicht für Datei-Synchronisation bereit, weil d #: setup.php:854 #, php-format msgid "Please double check the installation guides." -msgstr "Bitte prüfe die Instalationsanleitungen." +msgstr "Bitte prüfe die Installationsanleitungen." #: template.php:113 msgid "seconds ago" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index 4c6065c552..0f6b2fc926 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -3,33 +3,33 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2011, 2012. -# , 2012. -# , 2012. -# I Robot , 2012-2013. -# I Robot , 2012. -# Jan-Christoph Borchardt , 2011. -# Jan T , 2012. -# , 2012. -# , 2012. -# Marcel Kühlhorn , 2012-2013. -# , 2012. -# , 2012. -# , 2012. -# , 2012. -# Phi Lieb <>, 2012. -# , 2012. -# , 2012. -# Tristan , 2013. -# , 2013. -# , 2013. +# goeck , 2011, 2012 +# Mirodin , 2012 +# Robin Appelman , 2012 +# I Robot , 2012-2013 +# I Robot , 2012 +# Jan-Christoph Borchardt , 2011 +# Jan T , 2012 +# Lukas Reschke , 2012 +# fmms , 2012 +# Marcel Kühlhorn , 2012-2013 +# thiel , 2012 +# AndryXY , 2012 +# piccobello , 2012 +# JamFX , 2012 +# Phi Lieb <>, 2012 +# I Robot , 2012 +# traductor , 2012 +# Mirodin , 2013 +# kabum , 2013 +# Wachhund , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-17 07:21+0000\n" +"Last-Translator: Mirodin \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -211,7 +211,7 @@ msgstr "Dein Web-Server ist noch nicht für Datei-Synchronisation bereit, weil d #: templates/admin.php:33 #, php-format msgid "Please double check the installation guides." -msgstr "Bitte prüfen Sie die Instalationsanleitungen." +msgstr "Bitte prüfen Sie die Installationsanleitungen." #: templates/admin.php:44 msgid "Module 'fileinfo' missing" @@ -332,19 +332,19 @@ msgstr "Log" msgid "Log level" msgstr "Loglevel" -#: templates/admin.php:223 +#: templates/admin.php:227 msgid "More" msgstr "Mehr" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Less" msgstr "Weniger" -#: templates/admin.php:231 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:102 msgid "Version" msgstr "Version" -#: templates/admin.php:234 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:105 msgid "" "Developed by the ownCloud community, the , 2011-2012. -# , 2011. -# , 2012. -# , 2012. -# , 2012. -# , 2011. -# I Robot , 2013. -# I Robot , 2012. -# Jan-Christoph Borchardt , 2011. -# , 2012. -# Marcel Kühlhorn , 2012-2013. -# , 2012. -# , 2012. -# Phi Lieb <>, 2012. -# , 2013. -# , 2013. -# Susi <>, 2013. -# , 2012. -# , 2013. -# , 2012. -# Tristan , 2013. +# goeck , 2011-2012 +# infinity8 , 2011 +# a.tangemann , 2012 +# Mirodin , 2012 +# deh3nne , 2012 +# george , 2011 +# I Robot , 2013 +# I Robot , 2012 +# Jan-Christoph Borchardt , 2011 +# Lukas Reschke , 2013 +# fmms , 2012 +# Marcel Kühlhorn , 2012-2013 +# mike.f , 2012 +# JamFX , 2012 +# Phi Lieb <>, 2012 +# stefanniedermann , 2013 +# Valermos , 2013 +# Susi <>, 2013 +# I Robot , 2012 +# traductor , 2013 +# traductor , 2012 +# Mirodin , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-17 12:50+0000\n" +"Last-Translator: Lukas Reschke \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -540,37 +541,37 @@ msgstr "Fortgeschritten" msgid "Data folder" msgstr "Datenverzeichnis" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" msgstr "Datenbank einrichten" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" msgstr "wird verwendet" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" msgstr "Datenbank-Benutzer" -#: templates/installation.php:143 +#: templates/installation.php:144 msgid "Database password" msgstr "Datenbank-Passwort" -#: templates/installation.php:148 +#: templates/installation.php:149 msgid "Database name" msgstr "Datenbank-Name" -#: templates/installation.php:158 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "Datenbank-Tablespace" -#: templates/installation.php:165 +#: templates/installation.php:166 msgid "Database host" msgstr "Datenbank-Host" -#: templates/installation.php:171 +#: templates/installation.php:172 msgid "Finish setup" msgstr "Installation abschließen" diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index d1d67461d3..0e5e25200e 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/files.po @@ -3,40 +3,40 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# Andreas Tangemann , 2013. -# , 2012-2013. -# , 2012. -# I Robot , 2012-2013. -# I Robot , 2012. -# Jan-Christoph Borchardt , 2012. -# Jan-Christoph Borchardt , 2011. -# Jan-Christoph Borchardt , 2011. -# , 2012. -# , 2012. -# Marcel Kühlhorn , 2012-2013. -# , 2013. -# Michael Krell , 2012. -# , 2012. -# , 2012. -# Phi Lieb <>, 2012. -# Phillip Schichtel , 2013. -# , 2013. -# , 2013. -# , 2013. -# Susi <>, 2013. -# , 2012. -# Thomas Müller <>, 2012. -# , 2013. -# , 2012. -# Tristan , 2013. +# goeck , 2012 +# a.tangemann , 2013 +# a.tangemann , 2012-2013 +# Mirodin , 2012 +# I Robot , 2012-2013 +# I Robot , 2012 +# Jan-Christoph Borchardt , 2012 +# Jan-Christoph Borchardt , 2011 +# Jan-Christoph Borchardt , 2011 +# Lukas Reschke , 2012 +# fmms , 2012 +# Marcel Kühlhorn , 2012-2013 +# thiel , 2013 +# Michael Krell , 2012 +# piccobello , 2012 +# JamFX , 2012 +# Phi Lieb <>, 2012 +# quick_wango , 2013 +# robN , 2013 +# stefanniedermann , 2013 +# Valermos , 2013 +# Susi <>, 2013 +# I Robot , 2012 +# Thomas Müller <>, 2012 +# traductor , 2013 +# traductor , 2012 +# Mirodin , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-18 02:03+0200\n" +"PO-Revision-Date: 2013-04-17 08:22+0000\n" +"Last-Translator: Mirodin \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/de_DE/lib.po b/l10n/de_DE/lib.po index de5340c6b5..e21abf4d38 100644 --- a/l10n/de_DE/lib.po +++ b/l10n/de_DE/lib.po @@ -3,23 +3,23 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Andreas Tangemann , 2013. -# , 2012. -# , 2012. -# I Robot , 2013. -# Jan-Christoph Borchardt , 2012. -# Marcel Kühlhorn , 2012-2013. -# Phi Lieb <>, 2012. -# , 2013. -# , 2012. -# , 2012. -# Tristan , 2013. +# a.tangemann , 2013 +# a.tangemann , 2012 +# Mirodin , 2012 +# I Robot , 2013 +# Jan-Christoph Borchardt , 2012 +# Marcel Kühlhorn , 2012-2013 +# Phi Lieb <>, 2012 +# stefanniedermann , 2013 +# I Robot , 2012 +# traductor , 2012 +# Mirodin , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" @@ -104,10 +104,6 @@ msgstr "Setze Administrator Benutzername." msgid "Set an admin password." msgstr "Setze Administrator Passwort" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "Datei-Verzeichnis angeben" - #: setup.php:55 #, php-format msgid "%s enter the database username." @@ -196,7 +192,7 @@ msgstr "Ihr Web-Server ist noch nicht für Datei-Synchronisation bereit, weil di #: setup.php:854 #, php-format msgid "Please double check the installation guides." -msgstr "Bitte prüfen Sie die Instalationsanleitungen." +msgstr "Bitte prüfen Sie die Installationsanleitungen." #: template.php:113 msgid "seconds ago" diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index ee05c494b9..718fd022b4 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.po @@ -3,38 +3,38 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2011-2012. -# Andreas Tangemann , 2013. -# , 2012. -# , 2012. -# I Robot , 2012-2013. -# I Robot , 2012. -# Jan-Christoph Borchardt , 2011. -# Jan T , 2012. -# Lukas Reschke , 2013. -# , 2012. -# , 2012. -# Marcel Kühlhorn , 2012-2013. -# , 2012. -# , 2012. -# Phi Lieb <>, 2012. -# Phillip Schichtel , 2013. -# , 2013. -# , 2012. -# , 2013. -# Susi <>, 2013. -# , 2012. -# , 2013. -# , 2012. -# , 2012. -# Tristan , 2013. +# goeck , 2011-2012 +# a.tangemann , 2013 +# Mirodin , 2012 +# Robin Appelman , 2012 +# I Robot , 2012-2013 +# I Robot , 2012 +# Jan-Christoph Borchardt , 2011 +# Jan T , 2012 +# Lukas Reschke , 2013 +# Lukas Reschke , 2012 +# fmms , 2012 +# Marcel Kühlhorn , 2012-2013 +# piccobello , 2012 +# JamFX , 2012 +# Phi Lieb <>, 2012 +# quick_wango , 2013 +# robN , 2013 +# seeed , 2012 +# stefanniedermann , 2013 +# Susi <>, 2013 +# I Robot , 2012 +# traductor , 2013 +# traductor , 2012 +# traductor , 2012 +# Mirodin , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-17 07:20+0000\n" +"Last-Translator: Mirodin \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -216,7 +216,7 @@ msgstr "Ihr Web-Server ist noch nicht für eine Datei-Synchronisation konfigurie #: templates/admin.php:33 #, php-format msgid "Please double check the installation guides." -msgstr "Bitte prüfen Sie die Instalationsanleitungen." +msgstr "Bitte prüfen Sie die Installationsanleitungen." #: templates/admin.php:44 msgid "Module 'fileinfo' missing" @@ -337,19 +337,19 @@ msgstr "Log" msgid "Log level" msgstr "Log-Level" -#: templates/admin.php:223 +#: templates/admin.php:227 msgid "More" msgstr "Mehr" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Less" msgstr "Weniger" -#: templates/admin.php:231 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:102 msgid "Version" msgstr "Version" -#: templates/admin.php:234 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:105 msgid "" "Developed by the ownCloud community, the , 2013. -# Efstathios Iosifidis , 2013. -# Efstathios Iosifidis , 2012. -# , 2013. -# Wasilis Mandratzis , 2013. +# Dimitris M. , 2013 +# Efstathios Iosifidis , 2013 +# Efstathios Iosifidis , 2012 +# xneo1 , 2013 +# Wasilis , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -98,10 +98,6 @@ msgstr "Εισάγετε όνομα χρήστη διαχειριστή." msgid "Set an admin password." msgstr "Εισάγετε συνθηματικό διαχειριστή." -#: setup.php:40 -msgid "Specify a data folder." -msgstr "Καθορίστε τον φάκελο δεδομένων." - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/eo/lib.po b/l10n/eo/lib.po index 4208458ba0..1bd6af554d 100644 --- a/l10n/eo/lib.po +++ b/l10n/eo/lib.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Mariano , 2012. +# Mariano , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -94,10 +94,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/es/lib.po b/l10n/es/lib.po index ca01665741..a30ce7986e 100644 --- a/l10n/es/lib.po +++ b/l10n/es/lib.po @@ -3,20 +3,20 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Agustin Ferrario , 2013. -# , 2013. -# , 2012. -# Marcos , 2013. -# Raul Fernandez Garcia , 2012. -# Ricardo A. Hermosilla Carrillo , 2013. -# Rubén Trujillo , 2012. -# , 2012. +# Agustin Ferrario , 2013 +# juanman , 2013 +# juanman , 2012 +# Marcos , 2013 +# Raul Fernandez Garcia , 2012 +# Ricardo Hermosilla , 2013 +# Rubén Trujillo , 2012 +# scambra , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -101,10 +101,6 @@ msgstr "Configurar un nombre de usuario del administrador" msgid "Set an admin password." msgstr "Configurar la contraseña del administrador." -#: setup.php:40 -msgid "Specify a data folder." -msgstr "Especificar la carpeta de datos." - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/es_AR/lib.po b/l10n/es_AR/lib.po index 6be90480b4..20c71ecabd 100644 --- a/l10n/es_AR/lib.po +++ b/l10n/es_AR/lib.po @@ -3,16 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Agustin Ferrario , 2013. -# CJTess , 2013. -# , 2012. -# Javier Victor Mariano Bruno , 2013. +# Agustin Ferrario , 2013 +# cjtess , 2013 +# cjtess , 2012 +# Javier Victor Mariano Bruno , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -97,10 +97,6 @@ msgstr "Configurar un nombre de administrador" msgid "Set an admin password." msgstr "Configurar una palabra clave de administrador" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "Especificar un directorio de datos" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/et_EE/lib.po b/l10n/et_EE/lib.po index d515bf9a16..19268960f2 100644 --- a/l10n/et_EE/lib.po +++ b/l10n/et_EE/lib.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Pisike Sipelgas , 2013. -# Rivo Zängov , 2012-2013. +# pisike.sipelgas , 2013 +# Rivo Zängov , 2012-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -95,10 +95,6 @@ msgstr "Määra admin kasutajanimi." msgid "Set an admin password." msgstr "Määra admini parool." -#: setup.php:40 -msgid "Specify a data folder." -msgstr "Määra andmete kaust." - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/eu/lib.po b/l10n/eu/lib.po index 593856272c..912f19f241 100644 --- a/l10n/eu/lib.po +++ b/l10n/eu/lib.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2013. -# , 2012. +# asieriko , 2013 +# asieriko , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -95,10 +95,6 @@ msgstr "Ezarri administraziorako erabiltzaile izena." msgid "Set an admin password." msgstr "Ezarri administraziorako pasahitza." -#: setup.php:40 -msgid "Specify a data folder." -msgstr "Zehaztu data karpeta." - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/fa/lib.po b/l10n/fa/lib.po index d1d5f566ef..db4d2de1ce 100644 --- a/l10n/fa/lib.po +++ b/l10n/fa/lib.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Amir Reza Asadi , 2013. -# mahdi Kereshteh , 2013. -# Mohammad Dashtizadeh , 2012. +# Amir Reza Asadi , 2013 +# miki_mika1362 , 2013 +# Mohammad Dashtizadeh , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -96,10 +96,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "پوشه ای برای داده ها مشخص کنید." - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/fi/lib.po b/l10n/fi/lib.po index ced780d1ce..8797335cbc 100644 --- a/l10n/fi/lib.po +++ b/l10n/fi/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" @@ -93,10 +93,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/fi_FI/lib.po b/l10n/fi_FI/lib.po index fc77066a99..187363f2d8 100644 --- a/l10n/fi_FI/lib.po +++ b/l10n/fi_FI/lib.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Jiri Grönroos , 2012-2013. +# Jiri Grönroos , 2012-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -94,10 +94,6 @@ msgstr "Aseta ylläpitäjän käyttäjätunnus." msgid "Set an admin password." msgstr "Aseta ylläpitäjän salasana." -#: setup.php:40 -msgid "Specify a data folder." -msgstr "Määritä datakansio." - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/fr/lib.po b/l10n/fr/lib.po index 24cf1be8ed..915a78cd2a 100644 --- a/l10n/fr/lib.po +++ b/l10n/fr/lib.po @@ -3,16 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Christophe Lherieau , 2013. -# Geoffrey Guerrier , 2012. -# Robert Di Rosa <>, 2013. -# Romain DEP. , 2012-2013. +# Christophe Lherieau , 2013 +# Geoffrey Guerrier , 2012 +# Robert Di Rosa <>, 2013 +# Romain DEP. , 2012-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -97,10 +97,6 @@ msgstr "Spécifiez un nom d'utilisateur pour l'administrateur." msgid "Set an admin password." msgstr "Spécifiez un mot de passe administrateur." -#: setup.php:40 -msgid "Specify a data folder." -msgstr "Spécifiez un répertoire pour les données." - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/gl/lib.po b/l10n/gl/lib.po index b20f32fff2..7795b9dddb 100644 --- a/l10n/gl/lib.po +++ b/l10n/gl/lib.po @@ -3,16 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2013. -# , 2012. -# Miguel Branco , 2012. -# Xosé M. Lamas , 2012-2013. +# mbouzada , 2013 +# mbouzada , 2012 +# Miguel Branco , 2012 +# Xosé M. Lamas , 2012-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -97,10 +97,6 @@ msgstr "Estabeleza un nome de usuario administrador" msgid "Set an admin password." msgstr "Estabeleza un contrasinal de administrador" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "Especifique un cartafol de datos." - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/he/lib.po b/l10n/he/lib.po index de9c88104c..9cc939954e 100644 --- a/l10n/he/lib.po +++ b/l10n/he/lib.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Tomer Cohen , 2012. -# Yaron Shahrabani , 2012. +# Tomer Cohen , 2012 +# Yaron Shahrabani , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -95,10 +95,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/hi/lib.po b/l10n/hi/lib.po index 454e8e165e..d7d72d96af 100644 --- a/l10n/hi/lib.po +++ b/l10n/hi/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -93,10 +93,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/hr/lib.po b/l10n/hr/lib.po index ccd75c2b9e..fa043de4d8 100644 --- a/l10n/hr/lib.po +++ b/l10n/hr/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -93,10 +93,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/hu_HU/lib.po b/l10n/hu_HU/lib.po index 9bb5b3ab64..811a4db402 100644 --- a/l10n/hu_HU/lib.po +++ b/l10n/hu_HU/lib.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Adam Toth , 2012. -# , 2013. -# Laszlo Tornoci , 2013. +# Adam Toth , 2012 +# gyeben , 2013 +# Laszlo Tornoci , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -96,10 +96,6 @@ msgstr "Állítson be egy felhasználói nevet az adminisztrációhoz." msgid "Set an admin password." msgstr "Állítson be egy jelszót az adminisztrációhoz." -#: setup.php:40 -msgid "Specify a data folder." -msgstr "Adja meg az adatokat tartalmazó könyvtár nevét." - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/ia/lib.po b/l10n/ia/lib.po index 8c460ce15e..ac00206559 100644 --- a/l10n/ia/lib.po +++ b/l10n/ia/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -93,10 +93,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/id/lib.po b/l10n/id/lib.po index 2da890b5ee..57352dd2b6 100644 --- a/l10n/id/lib.po +++ b/l10n/id/lib.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Mohamad Hasan Al Banna , 2013. -# , 2012. -# , 2013. +# Mohamad Hasan Al Banna , 2013 +# elmakong , 2012 +# rodin , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -96,10 +96,6 @@ msgstr "Setel nama pengguna admin." msgid "Set an admin password." msgstr "Setel sandi admin." -#: setup.php:40 -msgid "Specify a data folder." -msgstr "Tentukan folder data." - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/is/lib.po b/l10n/is/lib.po index 3d8e511ed1..c978737fb4 100644 --- a/l10n/is/lib.po +++ b/l10n/is/lib.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. +# sveinn , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -94,10 +94,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/it/lib.po b/l10n/it/lib.po index 178f9da6cc..976a9ba859 100644 --- a/l10n/it/lib.po +++ b/l10n/it/lib.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Vincenzo Reale , 2012-2013. +# Vincenzo Reale , 2012-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -94,10 +94,6 @@ msgstr "Imposta un nome utente di amministrazione." msgid "Set an admin password." msgstr "Imposta una password di amministrazione." -#: setup.php:40 -msgid "Specify a data folder." -msgstr "Specifica una cartella dei dati." - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/ja_JP/lib.po b/l10n/ja_JP/lib.po index 047e7df7cb..8b2c637f42 100644 --- a/l10n/ja_JP/lib.po +++ b/l10n/ja_JP/lib.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Daisuke Deguchi , 2012. -# Daisuke Deguchi , 2013. -# YANO Tetsu , 2013. +# Daisuke Deguchi , 2012 +# Daisuke Deguchi , 2013 +# tt yn , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" @@ -96,10 +96,6 @@ msgstr "管理者のユーザ名を設定。" msgid "Set an admin password." msgstr "管理者のパスワードを設定。" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "データフォルダを指定。" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/ja_JP/settings.po b/l10n/ja_JP/settings.po index 2cb5b86b57..065218b575 100644 --- a/l10n/ja_JP/settings.po +++ b/l10n/ja_JP/settings.po @@ -3,18 +3,18 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Daisuke Deguchi , 2012. -# Daisuke Deguchi , 2012-2013. -# , 2012. -# , 2012. -# YANO Tetsu , 2013. +# Daisuke Deguchi , 2012 +# Daisuke Deguchi , 2012-2013 +# tt yn , 2012 +# tt yn , 2012 +# tt yn , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-17 08:10+0000\n" +"Last-Translator: Daisuke Deguchi \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -317,19 +317,19 @@ msgstr "ログ" msgid "Log level" msgstr "ログレベル" -#: templates/admin.php:223 +#: templates/admin.php:227 msgid "More" -msgstr "詳細" +msgstr "もっと見る" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Less" msgstr "閉じる" -#: templates/admin.php:231 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:102 msgid "Version" msgstr "バージョン" -#: templates/admin.php:234 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:105 msgid "" "Developed by the ownCloud community, the , 2013. +# GeoCybers , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -94,10 +94,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/ka_GE/lib.po b/l10n/ka_GE/lib.po index 87dbc9fbb6..ff6c7f4124 100644 --- a/l10n/ka_GE/lib.po +++ b/l10n/ka_GE/lib.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# Romeo Pirtskhalava , 2013. +# drlinux64 , 2012 +# drlinux64 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -95,10 +95,6 @@ msgstr "დააყენეთ ადმინისტრატორის msgid "Set an admin password." msgstr "დააყენეთ ადმინისტრატორის პაროლი." -#: setup.php:40 -msgid "Specify a data folder." -msgstr "მიუთითეთ data ფოლდერი." - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/kn/lib.po b/l10n/kn/lib.po index b921bdf20d..836abc39cd 100644 --- a/l10n/kn/lib.po +++ b/l10n/kn/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" @@ -93,10 +93,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/ko/lib.po b/l10n/ko/lib.po index c70b3eeb9e..2c97ea10db 100644 --- a/l10n/ko/lib.po +++ b/l10n/ko/lib.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# 남자사람 , 2012. -# Park Shinjo , 2013. -# Shinjo Park , 2012. +# 남자사람 , 2012 +# Shinjo Park , 2013 +# Shinjo Park , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -96,10 +96,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/ku_IQ/lib.po b/l10n/ku_IQ/lib.po index 4a9acfed36..ba160fa439 100644 --- a/l10n/ku_IQ/lib.po +++ b/l10n/ku_IQ/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -93,10 +93,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/lb/lib.po b/l10n/lb/lib.po index 39159b7fc2..b1b27935b8 100644 --- a/l10n/lb/lib.po +++ b/l10n/lb/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -93,10 +93,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/lt_LT/lib.po b/l10n/lt_LT/lib.po index 766f8e06e9..a176e307e6 100644 --- a/l10n/lt_LT/lib.po +++ b/l10n/lt_LT/lib.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# Dr. ROX , 2012. +# andrejuseu , 2012 +# Dr. ROX , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -95,10 +95,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/lv/lib.po b/l10n/lv/lib.po index 1d47fb3793..7db941c050 100644 --- a/l10n/lv/lib.po +++ b/l10n/lv/lib.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Rūdolfs Mazurs , 2013. +# Rūdolfs Mazurs , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -94,10 +94,6 @@ msgstr "Iestatiet administratora lietotājvārdu." msgid "Set an admin password." msgstr "Iestatiet administratora paroli." -#: setup.php:40 -msgid "Specify a data folder." -msgstr "Norādiet datu mapi." - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/mk/lib.po b/l10n/mk/lib.po index 6ee3371582..2dfafad88e 100644 --- a/l10n/mk/lib.po +++ b/l10n/mk/lib.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Georgi Stanojevski , 2012. +# Georgi Stanojevski , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -94,10 +94,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/ms_MY/lib.po b/l10n/ms_MY/lib.po index fb311e81a8..d40a40daf2 100644 --- a/l10n/ms_MY/lib.po +++ b/l10n/ms_MY/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -93,10 +93,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/my_MM/lib.po b/l10n/my_MM/lib.po index e6d187a22f..01231da96e 100644 --- a/l10n/my_MM/lib.po +++ b/l10n/my_MM/lib.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Pyae Sone , 2013. +# Pyae Sone , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -94,10 +94,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/nb_NO/lib.po b/l10n/nb_NO/lib.po index ac2d472e3a..5228fc0a44 100644 --- a/l10n/nb_NO/lib.po +++ b/l10n/nb_NO/lib.po @@ -3,17 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Arvid Nornes , 2012. -# , 2012. -# , 2012. -# , 2012. -# , 2012. +# Arvid Nornes , 2012 +# espenbye , 2012 +# hdalgrav , 2012 +# runesudden , 2012 +# sindrejh , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -98,10 +98,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/ne/lib.po b/l10n/ne/lib.po index 3a91dd5e2d..44cf09325b 100644 --- a/l10n/ne/lib.po +++ b/l10n/ne/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" @@ -93,10 +93,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/nl/lib.po b/l10n/nl/lib.po index cddcc75469..36dc7d9638 100644 --- a/l10n/nl/lib.po +++ b/l10n/nl/lib.po @@ -3,16 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# André Koot , 2013. -# , 2012. -# Richard Bos , 2012. -# , 2012. +# André Koot , 2013 +# Len , 2012 +# Richard Bos , 2012 +# bartv , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -97,10 +97,6 @@ msgstr "Stel de gebruikersnaam van de beheerder in." msgid "Set an admin password." msgstr "Stel een beheerderswachtwoord in." -#: setup.php:40 -msgid "Specify a data folder." -msgstr "Geef een datamap op." - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/nn_NO/lib.po b/l10n/nn_NO/lib.po index 483f3ee52e..5e13b5d53a 100644 --- a/l10n/nn_NO/lib.po +++ b/l10n/nn_NO/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -93,10 +93,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/oc/lib.po b/l10n/oc/lib.po index 8ac687287d..df4835c6ea 100644 --- a/l10n/oc/lib.po +++ b/l10n/oc/lib.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. +# tartafione , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -94,10 +94,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/pl/lib.po b/l10n/pl/lib.po index 195db79fa6..dbc02c98d2 100644 --- a/l10n/pl/lib.po +++ b/l10n/pl/lib.po @@ -3,16 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Cyryl Sochacki <>, 2012. -# Cyryl Sochacki , 2012-2013. -# Maciej Tarmas , 2013. -# Marcin Małecki , 2012-2013. +# Cyryl Sochacki , 2012 +# Cyryl Sochacki , 2012-2013 +# Maciej Tarmas , 2013 +# Marcin Małecki , 2012-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -97,10 +97,6 @@ msgstr "Ustaw nazwę administratora." msgid "Set an admin password." msgstr "Ustaw hasło administratora." -#: setup.php:40 -msgid "Specify a data folder." -msgstr "Określ folder danych." - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/pl_PL/lib.po b/l10n/pl_PL/lib.po index 9f3e48faf1..b041eeee30 100644 --- a/l10n/pl_PL/lib.po +++ b/l10n/pl_PL/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" @@ -93,10 +93,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/pt_BR/lib.po b/l10n/pt_BR/lib.po index 7cb9593549..b6f5ca1cf8 100644 --- a/l10n/pt_BR/lib.po +++ b/l10n/pt_BR/lib.po @@ -3,17 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# Frederico Freire Boaventura , 2013. -# , 2012. -# , 2012. -# Rodrigo Tavares , 2013. +# dudanogueira , 2012 +# fboaventura , 2013 +# Schopfer , 2012 +# sedir , 2012 +# Rodrigo Tavares , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -98,10 +98,6 @@ msgstr "Defina um nome de usuário de administrador." msgid "Set an admin password." msgstr "Defina uma senha de administrador." -#: setup.php:40 -msgid "Specify a data folder." -msgstr "Especifique uma pasta de dados." - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/pt_PT/lib.po b/l10n/pt_PT/lib.po index 6e5fe1eea2..0091021228 100644 --- a/l10n/pt_PT/lib.po +++ b/l10n/pt_PT/lib.po @@ -3,16 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012-2013. -# Daniel Pinto , 2013. -# Duarte Velez Grilo , 2012. -# Helder Meneses , 2013. +# Mouxy , 2012-2013 +# Mouxy , 2013 +# Duarte Velez Grilo , 2012 +# Helder Meneses , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -97,10 +97,6 @@ msgstr "Definir um nome de utilizador de administrador" msgid "Set an admin password." msgstr "Definiar uma password de administrador" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "Especificar a pasta para os dados." - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/ro/lib.po b/l10n/ro/lib.po index 1453bbf754..9508b63732 100644 --- a/l10n/ro/lib.po +++ b/l10n/ro/lib.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Dumitru Ursu <>, 2013. -# , 2012. -# , 2012. +# Dimon Pockemon <>, 2013 +# g.ciprian , 2012 +# laurentiucristescu , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -96,10 +96,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/ru/lib.po b/l10n/ru/lib.po index 50cad3c909..e6a61975e2 100644 --- a/l10n/ru/lib.po +++ b/l10n/ru/lib.po @@ -3,20 +3,20 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Denis , 2013. -# Denis , 2012. -# , 2012. -# Mihail Vasiliev , 2012. -# , 2012. -# Sergey , 2013. -# , 2012. -# Дмитрий , 2013. +# Denis , 2013 +# Denis , 2012 +# k0ldbl00d , 2012 +# Mihail Vasiliev , 2012 +# mPolr , 2012 +# m4rkell , 2013 +# VicDeo , 2012 +# Langaru , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -101,10 +101,6 @@ msgstr "Установить имя пользователя для admin." msgid "Set an admin password." msgstr "становит пароль для admin." -#: setup.php:40 -msgid "Specify a data folder." -msgstr "Указать папку данных." - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/ru_RU/lib.po b/l10n/ru_RU/lib.po index 5903c5b4ed..7c5c0870ed 100644 --- a/l10n/ru_RU/lib.po +++ b/l10n/ru_RU/lib.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2013. -# , 2012. -# Дмитрий , 2013. +# AnnaSch , 2013 +# AnnaSch , 2012 +# Langaru , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" @@ -96,10 +96,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/si_LK/lib.po b/l10n/si_LK/lib.po index 6a13f369cf..c785afebd7 100644 --- a/l10n/si_LK/lib.po +++ b/l10n/si_LK/lib.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Anushke Guneratne , 2012. -# , 2012. +# Anushke Guneratne , 2012 +# dinusha , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -95,10 +95,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/sk/lib.po b/l10n/sk/lib.po index 63f7ea5ee0..72fd060bdd 100644 --- a/l10n/sk/lib.po +++ b/l10n/sk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" @@ -93,10 +93,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/sk_SK/lib.po b/l10n/sk_SK/lib.po index bf8820e425..b99a339307 100644 --- a/l10n/sk_SK/lib.po +++ b/l10n/sk_SK/lib.po @@ -3,16 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Marián Hvolka , 2013. -# , 2012. -# Roman Priesol , 2012. -# , 2012. +# mhh , 2013 +# martinb , 2012 +# Roman Priesol , 2012 +# martin , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -97,10 +97,6 @@ msgstr "Zadajte používateľské meno administrátora." msgid "Set an admin password." msgstr "Zadajte heslo administrátora." -#: setup.php:40 -msgid "Specify a data folder." -msgstr "Zadajte priečinok pre dáta." - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/sl/lib.po b/l10n/sl/lib.po index 9814f3e933..bc51adf8f3 100644 --- a/l10n/sl/lib.po +++ b/l10n/sl/lib.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# <>, 2012. -# Matej Urbančič <>, 2013. -# Peter Peroša , 2012. +# mateju <>, 2012 +# mateju <>, 2013 +# Peter Peroša , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -96,10 +96,6 @@ msgstr "Nastavi uporabniško ime skrbnika." msgid "Set an admin password." msgstr "Nastavi geslo skrbnika." -#: setup.php:40 -msgid "Specify a data folder." -msgstr "Določi podatkovno mapo." - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/sq/lib.po b/l10n/sq/lib.po index 6e59fdb660..9629d1e79c 100644 --- a/l10n/sq/lib.po +++ b/l10n/sq/lib.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2013. +# Odeen , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -94,10 +94,6 @@ msgstr "Cakto emrin e administratorit." msgid "Set an admin password." msgstr "Cakto kodin e administratorit." -#: setup.php:40 -msgid "Specify a data folder." -msgstr "Specifiko dosjen e të dhënave." - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/sr/lib.po b/l10n/sr/lib.po index 6032504b5b..95f58fe7f5 100644 --- a/l10n/sr/lib.po +++ b/l10n/sr/lib.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Ivan Petrović , 2012-2013. -# , 2013. -# , 2012. +# Ivan Petrović , 2012-2013 +# Rancher , 2013 +# Rancher , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -96,10 +96,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/sr@latin/lib.po b/l10n/sr@latin/lib.po index 7e046b92c5..2cc4b44f0f 100644 --- a/l10n/sr@latin/lib.po +++ b/l10n/sr@latin/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -93,10 +93,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/sv/lib.po b/l10n/sv/lib.po index e2d9458652..13887eda44 100644 --- a/l10n/sv/lib.po +++ b/l10n/sv/lib.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Magnus Höglund , 2012-2013. -# , 2012. +# Magnus Höglund , 2012-2013 +# Magnus Höglund , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -95,10 +95,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/sw_KE/lib.po b/l10n/sw_KE/lib.po index 3c517fee56..f2bae1c728 100644 --- a/l10n/sw_KE/lib.po +++ b/l10n/sw_KE/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" @@ -93,10 +93,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/ta_LK/lib.po b/l10n/ta_LK/lib.po index 591f805af9..82184ac7e8 100644 --- a/l10n/ta_LK/lib.po +++ b/l10n/ta_LK/lib.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. +# suganthi , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -94,10 +94,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/te/lib.po b/l10n/te/lib.po index b08e968dc7..3123d067aa 100644 --- a/l10n/te/lib.po +++ b/l10n/te/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -93,10 +93,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 5b3e4c4845..298c2a84dd 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -519,37 +519,37 @@ msgstr "" msgid "Data folder" msgstr "" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" msgstr "" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" msgstr "" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" msgstr "" -#: templates/installation.php:143 +#: templates/installation.php:144 msgid "Database password" msgstr "" -#: templates/installation.php:148 +#: templates/installation.php:149 msgid "Database name" msgstr "" -#: templates/installation.php:158 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "" -#: templates/installation.php:165 +#: templates/installation.php:166 msgid "Database host" msgstr "" -#: templates/installation.php:171 +#: templates/installation.php:172 msgid "Finish setup" msgstr "" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index c6e0d93c3d..3f94378ee2 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"POT-Creation-Date: 2013-04-18 02:03+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index eb97fdc9e4..f57c1451a8 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"POT-Creation-Date: 2013-04-18 02:03+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 2325f2f5c6..d5dba8c90c 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"POT-Creation-Date: 2013-04-18 02:03+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 1e66c6470d..9de0f543bf 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"POT-Creation-Date: 2013-04-18 02:03+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index f16cf7e417..5ee9198ae4 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"POT-Creation-Date: 2013-04-18 02:03+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 717570feb2..a59e26f6d4 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"POT-Creation-Date: 2013-04-18 02:03+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index dd874d694a..967c1dfb32 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -93,10 +93,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index a46287856f..3be3146a59 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -312,19 +312,19 @@ msgstr "" msgid "Log level" msgstr "" -#: templates/admin.php:223 +#: templates/admin.php:227 msgid "More" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Less" msgstr "" -#: templates/admin.php:231 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:102 msgid "Version" msgstr "" -#: templates/admin.php:234 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:105 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index 9188e8d5cf..fb8be0843d 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"POT-Creation-Date: 2013-04-18 02:03+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/th_TH/lib.po b/l10n/th_TH/lib.po index 782b27555d..4ede057cbd 100644 --- a/l10n/th_TH/lib.po +++ b/l10n/th_TH/lib.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# AriesAnywhere Anywhere , 2012-2013. +# AriesAnywhere Anywhere , 2012-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -94,10 +94,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/tr/lib.po b/l10n/tr/lib.po index 29d930a27e..d9fca3e2a1 100644 --- a/l10n/tr/lib.po +++ b/l10n/tr/lib.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# ismail yenigul , 2013. -# Necdet Yücel , 2012. +# ismail yenigül , 2013 +# Necdet Yücel , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -95,10 +95,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/uk/lib.po b/l10n/uk/lib.po index f581ae7ae6..d630772076 100644 --- a/l10n/uk/lib.po +++ b/l10n/uk/lib.po @@ -3,17 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# , 2012. -# , 2012. -# , 2013. -# пан Володимир , 2013. +# Dmytro Dzubenko , 2012 +# skoptev , 2012 +# VicDeo , 2012 +# volodya327 , 2013 +# volodya327 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -98,10 +98,6 @@ msgstr "Встановіть ім'я адміністратора." msgid "Set an admin password." msgstr "Встановіть пароль адміністратора." -#: setup.php:40 -msgid "Specify a data folder." -msgstr "Вкажіть теку для даних." - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/ur_PK/lib.po b/l10n/ur_PK/lib.po index ea01e8371f..16489f21cc 100644 --- a/l10n/ur_PK/lib.po +++ b/l10n/ur_PK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -93,10 +93,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/vi/lib.po b/l10n/vi/lib.po index 73937b602b..fc813abbb5 100644 --- a/l10n/vi/lib.po +++ b/l10n/vi/lib.po @@ -3,16 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# , 2012. -# sao sang , 2013. -# Sơn Nguyễn , 2012. +# mattheu_9x , 2012 +# mattheu_9x , 2012 +# saosangm , 2013 +# Sơn Nguyễn , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -97,10 +97,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/zh_CN.GB2312/lib.po b/l10n/zh_CN.GB2312/lib.po index 020ad3c5b1..b8451f60b6 100644 --- a/l10n/zh_CN.GB2312/lib.po +++ b/l10n/zh_CN.GB2312/lib.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# marguerite su , 2012. +# marguerite su , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -94,10 +94,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/zh_CN/lib.po b/l10n/zh_CN/lib.po index 949b3bca45..ed930d2280 100644 --- a/l10n/zh_CN/lib.po +++ b/l10n/zh_CN/lib.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# marguerite su , 2013. -# , 2012. +# hanfeng , 2012 +# marguerite su , 2013 +# leonfeng , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -96,10 +96,6 @@ msgstr "请设置一个管理员用户名。" msgid "Set an admin password." msgstr "请设置一个管理员密码。" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "请指定一个数据目录。" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/zh_HK/lib.po b/l10n/zh_HK/lib.po index e560749ad4..20c4b09967 100644 --- a/l10n/zh_HK/lib.po +++ b/l10n/zh_HK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -93,10 +93,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/zh_TW/lib.po b/l10n/zh_TW/lib.po index 366b628108..07d0bd557f 100644 --- a/l10n/zh_TW/lib.po +++ b/l10n/zh_TW/lib.po @@ -3,17 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Hydriz Scholz , 2013. -# Pellaeon Lin , 2013. -# , 2012. -# , 2012. -# ywang , 2012. +# Hydriz , 2013 +# pellaeon , 2013 +# sofiasu , 2012 +# ywang , 2012 +# ywang , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -98,10 +98,6 @@ msgstr "設置一個管理員用戶名。" msgid "Set an admin password." msgstr "設置一個管理員密碼。" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/lib/l10n/ar.php b/lib/l10n/ar.php index 8b7324f3ff..ae8233f80d 100644 --- a/lib/l10n/ar.php +++ b/lib/l10n/ar.php @@ -18,7 +18,6 @@ "Images" => "صور", "Set an admin username." => "اعداد اسم مستخدم للمدير", "Set an admin password." => "اعداد كلمة مرور للمدير", -"Specify a data folder." => "تحديد مجلد ", "%s enter the database username." => "%s ادخل اسم المستخدم الخاص بقاعدة البيانات.", "%s enter the database name." => "%s ادخل اسم فاعدة البيانات", "%s you may not use dots in the database name" => "%s لا يسمح لك باستخدام نقطه (.) في اسم قاعدة البيانات", diff --git a/lib/l10n/bg_BG.php b/lib/l10n/bg_BG.php index d32e2aadfc..2d4775a89f 100644 --- a/lib/l10n/bg_BG.php +++ b/lib/l10n/bg_BG.php @@ -18,7 +18,6 @@ "Images" => "Снимки", "Set an admin username." => "Въведете потребителско име за администратор.", "Set an admin password." => "Въведете парола за администратор.", -"Specify a data folder." => "Укажете папка за данни", "%s enter the database username." => "%s въведете потребителско име за базата с данни.", "%s enter the database name." => "%s въведете име на базата с данни.", "%s you may not use dots in the database name" => "%s, не можете да ползвате точки в името на базата от данни", diff --git a/lib/l10n/ca.php b/lib/l10n/ca.php index 108bb5c09b..16dc74f40c 100644 --- a/lib/l10n/ca.php +++ b/lib/l10n/ca.php @@ -18,7 +18,6 @@ "Images" => "Imatges", "Set an admin username." => "Establiu un nom d'usuari per l'administrador.", "Set an admin password." => "Establiu una contrasenya per l'administrador.", -"Specify a data folder." => "Especifiqueu una carpeta de dades.", "%s enter the database username." => "%s escriviu el nom d'usuari de la base de dades.", "%s enter the database name." => "%s escriviu el nom de la base de dades.", "%s you may not use dots in the database name" => "%s no podeu usar punts en el nom de la base de dades", diff --git a/lib/l10n/cs_CZ.php b/lib/l10n/cs_CZ.php index d9ec3d82cf..79161c74e8 100644 --- a/lib/l10n/cs_CZ.php +++ b/lib/l10n/cs_CZ.php @@ -18,7 +18,6 @@ "Images" => "Obrázky", "Set an admin username." => "Zadejte uživatelské jméno správce.", "Set an admin password." => "Zadejte heslo správce.", -"Specify a data folder." => "Určete složku dat.", "%s enter the database username." => "Zadejte uživatelské jméno %s databáze.", "%s enter the database name." => "Zadejte název databáze pro %s databáze.", "%s you may not use dots in the database name" => "V názvu databáze %s nesmíte používat tečky.", diff --git a/lib/l10n/da.php b/lib/l10n/da.php index 38ccbbe8e2..4850d0be19 100644 --- a/lib/l10n/da.php +++ b/lib/l10n/da.php @@ -18,7 +18,6 @@ "Images" => "Billeder", "Set an admin username." => "Angiv et admin brugernavn.", "Set an admin password." => "Angiv et admin kodeord.", -"Specify a data folder." => "Specificer en data mappe.", "%s enter the database username." => "%s indtast database brugernavnet.", "%s enter the database name." => "%s indtast database navnet.", "%s you may not use dots in the database name" => "%s du må ikke bruge punktummer i databasenavnet.", diff --git a/lib/l10n/de.php b/lib/l10n/de.php index 3c2069d463..7a680574bf 100644 --- a/lib/l10n/de.php +++ b/lib/l10n/de.php @@ -18,7 +18,6 @@ "Images" => "Bilder", "Set an admin username." => "Setze Administrator Benutzername.", "Set an admin password." => "Setze Administrator Passwort", -"Specify a data folder." => "Datei-Verzeichnis angeben.", "%s enter the database username." => "%s gib den Datenbank-Benutzernamen an.", "%s enter the database name." => "%s gib den Datenbank-Namen an.", "%s you may not use dots in the database name" => "%s Der Datenbank-Name darf keine Punkte enthalten", @@ -36,7 +35,7 @@ "Offending command was: \"%s\", name: %s, password: %s" => "Fehlerhafter Befehl war: \"%s\", Name: %s, Passwort: %s", "MS SQL username and/or password not valid: %s" => "MS SQL Benutzername und/oder Password ungültig: %s", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Dein Web-Server ist noch nicht für Datei-Synchronisation bereit, weil die WebDAV-Schnittstelle vermutlich defekt ist.", -"Please double check the installation guides." => "Bitte prüfe die Instalationsanleitungen.", +"Please double check the installation guides." => "Bitte prüfe die Installationsanleitungen.", "seconds ago" => "Gerade eben", "1 minute ago" => "Vor einer Minute", "%d minutes ago" => "Vor %d Minuten", diff --git a/lib/l10n/de_DE.php b/lib/l10n/de_DE.php index 9978cdf8b3..eb002c97be 100644 --- a/lib/l10n/de_DE.php +++ b/lib/l10n/de_DE.php @@ -18,7 +18,6 @@ "Images" => "Bilder", "Set an admin username." => "Setze Administrator Benutzername.", "Set an admin password." => "Setze Administrator Passwort", -"Specify a data folder." => "Datei-Verzeichnis angeben", "%s enter the database username." => "%s geben Sie den Datenbank-Benutzernamen an.", "%s enter the database name." => "%s geben Sie den Datenbank-Namen an.", "%s you may not use dots in the database name" => "%s Der Datenbank-Name darf keine Punkte enthalten", @@ -36,7 +35,7 @@ "Offending command was: \"%s\", name: %s, password: %s" => "Fehlerhafter Befehl war: \"%s\", Name: %s, Passwort: %s", "MS SQL username and/or password not valid: %s" => "MS SQL Benutzername und/oder Passwort ungültig: %s", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Ihr Web-Server ist noch nicht für Datei-Synchronisation bereit, weil die WebDAV-Schnittstelle vermutlich defekt ist.", -"Please double check the installation guides." => "Bitte prüfen Sie die Instalationsanleitungen.", +"Please double check the installation guides." => "Bitte prüfen Sie die Installationsanleitungen.", "seconds ago" => "Gerade eben", "1 minute ago" => "Vor einer Minute", "%d minutes ago" => "Vor %d Minuten", diff --git a/lib/l10n/el.php b/lib/l10n/el.php index a359909525..63f5d8eb83 100644 --- a/lib/l10n/el.php +++ b/lib/l10n/el.php @@ -18,7 +18,6 @@ "Images" => "Εικόνες", "Set an admin username." => "Εισάγετε όνομα χρήστη διαχειριστή.", "Set an admin password." => "Εισάγετε συνθηματικό διαχειριστή.", -"Specify a data folder." => "Καθορίστε τον φάκελο δεδομένων.", "%s enter the database username." => "%s εισάγετε το όνομα χρήστη της βάσης δεδομένων.", "%s enter the database name." => "%s εισάγετε το όνομα της βάσης δεδομένων.", "%s you may not use dots in the database name" => "%s μάλλον δεν χρησιμοποιείτε τελείες στο όνομα της βάσης δεδομένων", diff --git a/lib/l10n/es.php b/lib/l10n/es.php index 37b15a375c..5b868e2d45 100644 --- a/lib/l10n/es.php +++ b/lib/l10n/es.php @@ -18,7 +18,6 @@ "Images" => "Imágenes", "Set an admin username." => "Configurar un nombre de usuario del administrador", "Set an admin password." => "Configurar la contraseña del administrador.", -"Specify a data folder." => "Especificar la carpeta de datos.", "%s enter the database username." => "%s ingresar el usuario de la base de datos.", "%s enter the database name." => "%s ingresar el nombre de la base de datos", "%s you may not use dots in the database name" => "%s no se puede utilizar puntos en el nombre de la base de datos", diff --git a/lib/l10n/es_AR.php b/lib/l10n/es_AR.php index ff3d47285f..fc25cd6b1d 100644 --- a/lib/l10n/es_AR.php +++ b/lib/l10n/es_AR.php @@ -18,7 +18,6 @@ "Images" => "Imágenes", "Set an admin username." => "Configurar un nombre de administrador", "Set an admin password." => "Configurar una palabra clave de administrador", -"Specify a data folder." => "Especificar un directorio de datos", "%s enter the database username." => "%s Entre el Usuario de la Base de Datos", "%s enter the database name." => "%s Entre el Nombre de la Base de Datos", "%s you may not use dots in the database name" => "%s no puede usar puntos en el nombre de la Base de Datos", diff --git a/lib/l10n/et_EE.php b/lib/l10n/et_EE.php index 6948686b7f..25909e1555 100644 --- a/lib/l10n/et_EE.php +++ b/lib/l10n/et_EE.php @@ -18,7 +18,6 @@ "Images" => "Pildid", "Set an admin username." => "Määra admin kasutajanimi.", "Set an admin password." => "Määra admini parool.", -"Specify a data folder." => "Määra andmete kaust.", "%s enter the database username." => "%s sisesta andmebaasi kasutajatunnus", "%s enter the database name." => "%s sisesta andmebaasi nimi.", "%s you may not use dots in the database name" => "%s punktide kasutamine andmebaasi nimes pole lubatud", diff --git a/lib/l10n/eu.php b/lib/l10n/eu.php index 36eb397e42..fde65572d8 100644 --- a/lib/l10n/eu.php +++ b/lib/l10n/eu.php @@ -18,7 +18,6 @@ "Images" => "Irudiak", "Set an admin username." => "Ezarri administraziorako erabiltzaile izena.", "Set an admin password." => "Ezarri administraziorako pasahitza.", -"Specify a data folder." => "Zehaztu data karpeta.", "%s enter the database username." => "%s sartu datu basearen erabiltzaile izena.", "%s enter the database name." => "%s sartu datu basearen izena.", "%s you may not use dots in the database name" => "%s ezin duzu punturik erabili datu basearen izenean.", diff --git a/lib/l10n/fa.php b/lib/l10n/fa.php index f05195f5b8..b0d423421d 100644 --- a/lib/l10n/fa.php +++ b/lib/l10n/fa.php @@ -14,7 +14,6 @@ "Files" => "پرونده‌ها", "Text" => "متن", "Images" => "تصاویر", -"Specify a data folder." => "پوشه ای برای داده ها مشخص کنید.", "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 installation guides." => "لطفاً دوباره راهنمای نصبرا بررسی کنید.", "seconds ago" => "ثانیه‌ها پیش", diff --git a/lib/l10n/fi_FI.php b/lib/l10n/fi_FI.php index 2c85931e1d..201cae1953 100644 --- a/lib/l10n/fi_FI.php +++ b/lib/l10n/fi_FI.php @@ -18,7 +18,6 @@ "Images" => "Kuvat", "Set an admin username." => "Aseta ylläpitäjän käyttäjätunnus.", "Set an admin password." => "Aseta ylläpitäjän salasana.", -"Specify a data folder." => "Määritä datakansio.", "%s enter the database username." => "%s anna tietokannan käyttäjätunnus.", "%s enter the database name." => "%s anna tietokannan nimi.", "%s you may not use dots in the database name" => "%s et voi käyttää pisteitä tietokannan nimessä", diff --git a/lib/l10n/fr.php b/lib/l10n/fr.php index 9448502df6..ffc2945046 100644 --- a/lib/l10n/fr.php +++ b/lib/l10n/fr.php @@ -18,7 +18,6 @@ "Images" => "Images", "Set an admin username." => "Spécifiez un nom d'utilisateur pour l'administrateur.", "Set an admin password." => "Spécifiez un mot de passe administrateur.", -"Specify a data folder." => "Spécifiez un répertoire pour les données.", "%s enter the database username." => "%s entrez le nom d'utilisateur de la base de données.", "%s enter the database name." => "%s entrez le nom de la base de données.", "%s you may not use dots in the database name" => "%s vous nez pouvez pas utiliser de points dans le nom de la base de données", diff --git a/lib/l10n/gl.php b/lib/l10n/gl.php index a11724fef4..d38bf8329d 100644 --- a/lib/l10n/gl.php +++ b/lib/l10n/gl.php @@ -18,7 +18,6 @@ "Images" => "Imaxes", "Set an admin username." => "Estabeleza un nome de usuario administrador", "Set an admin password." => "Estabeleza un contrasinal de administrador", -"Specify a data folder." => "Especifique un cartafol de datos.", "%s enter the database username." => "%s introduza o nome de usuario da base de datos", "%s enter the database name." => "%s introduza o nome da base de datos", "%s you may not use dots in the database name" => "%s non se poden empregar puntos na base de datos", diff --git a/lib/l10n/hu_HU.php b/lib/l10n/hu_HU.php index 537066c6fe..4621c5074b 100644 --- a/lib/l10n/hu_HU.php +++ b/lib/l10n/hu_HU.php @@ -18,7 +18,6 @@ "Images" => "Képek", "Set an admin username." => "Állítson be egy felhasználói nevet az adminisztrációhoz.", "Set an admin password." => "Állítson be egy jelszót az adminisztrációhoz.", -"Specify a data folder." => "Adja meg az adatokat tartalmazó könyvtár nevét.", "%s enter the database username." => "%s adja meg az adatbázist elérő felhasználó login nevét.", "%s enter the database name." => "%s adja meg az adatbázis nevét.", "%s you may not use dots in the database name" => "%s az adatbázis neve nem tartalmazhat pontot", diff --git a/lib/l10n/id.php b/lib/l10n/id.php index b34fa0ac59..7eb26c5eb8 100644 --- a/lib/l10n/id.php +++ b/lib/l10n/id.php @@ -18,7 +18,6 @@ "Images" => "Gambar", "Set an admin username." => "Setel nama pengguna admin.", "Set an admin password." => "Setel sandi admin.", -"Specify a data folder." => "Tentukan folder data.", "%s enter the database username." => "%s masukkan nama pengguna basis data.", "%s enter the database name." => "%s masukkan nama basis data.", "%s you may not use dots in the database name" => "%sAnda tidak boleh menggunakan karakter titik pada nama basis data", diff --git a/lib/l10n/it.php b/lib/l10n/it.php index 297f1efde0..847f767fa7 100644 --- a/lib/l10n/it.php +++ b/lib/l10n/it.php @@ -18,7 +18,6 @@ "Images" => "Immagini", "Set an admin username." => "Imposta un nome utente di amministrazione.", "Set an admin password." => "Imposta una password di amministrazione.", -"Specify a data folder." => "Specifica una cartella dei dati.", "%s enter the database username." => "%s digita il nome utente del database.", "%s enter the database name." => "%s digita il nome del database.", "%s you may not use dots in the database name" => "%s non dovresti utilizzare punti nel nome del database", diff --git a/lib/l10n/ja_JP.php b/lib/l10n/ja_JP.php index 5906c7f7a1..18d0833792 100644 --- a/lib/l10n/ja_JP.php +++ b/lib/l10n/ja_JP.php @@ -18,7 +18,6 @@ "Images" => "画像", "Set an admin username." => "管理者のユーザ名を設定。", "Set an admin password." => "管理者のパスワードを設定。", -"Specify a data folder." => "データフォルダを指定。", "%s enter the database username." => "%s のデータベースのユーザ名を入力してください。", "%s enter the database name." => "%s のデータベース名を入力してください。", "%s you may not use dots in the database name" => "%s ではデータベース名にドットを利用できないかもしれません。", diff --git a/lib/l10n/ka_GE.php b/lib/l10n/ka_GE.php index 26b356b634..ffdf549f48 100644 --- a/lib/l10n/ka_GE.php +++ b/lib/l10n/ka_GE.php @@ -18,7 +18,6 @@ "Images" => "სურათები", "Set an admin username." => "დააყენეთ ადმინისტრატორის სახელი.", "Set an admin password." => "დააყენეთ ადმინისტრატორის პაროლი.", -"Specify a data folder." => "მიუთითეთ data ფოლდერი.", "%s enter the database username." => "%s შეიყვანეთ ბაზის იუზერნეიმი.", "%s enter the database name." => "%s შეიყვანეთ ბაზის სახელი.", "%s you may not use dots in the database name" => "%s არ მიუთითოთ წერტილი ბაზის სახელში", diff --git a/lib/l10n/lv.php b/lib/l10n/lv.php index c73d306ca0..3879391407 100644 --- a/lib/l10n/lv.php +++ b/lib/l10n/lv.php @@ -18,7 +18,6 @@ "Images" => "Attēli", "Set an admin username." => "Iestatiet administratora lietotājvārdu.", "Set an admin password." => "Iestatiet administratora paroli.", -"Specify a data folder." => "Norādiet datu mapi.", "%s enter the database username." => "%s ievadiet datubāzes lietotājvārdu.", "%s enter the database name." => "%s ievadiet datubāzes nosaukumu.", "%s you may not use dots in the database name" => "%s datubāžu nosaukumos nedrīkst izmantot punktus", diff --git a/lib/l10n/nl.php b/lib/l10n/nl.php index 10a4060e11..f7cc6ad899 100644 --- a/lib/l10n/nl.php +++ b/lib/l10n/nl.php @@ -18,7 +18,6 @@ "Images" => "Afbeeldingen", "Set an admin username." => "Stel de gebruikersnaam van de beheerder in.", "Set an admin password." => "Stel een beheerderswachtwoord in.", -"Specify a data folder." => "Geef een datamap op.", "%s enter the database username." => "%s opgeven database gebruikersnaam.", "%s enter the database name." => "%s opgeven databasenaam.", "%s you may not use dots in the database name" => "%s er mogen geen puntjes in de databasenaam voorkomen", diff --git a/lib/l10n/pl.php b/lib/l10n/pl.php index 9a1a5e836c..c508794c42 100644 --- a/lib/l10n/pl.php +++ b/lib/l10n/pl.php @@ -18,7 +18,6 @@ "Images" => "Obrazy", "Set an admin username." => "Ustaw nazwę administratora.", "Set an admin password." => "Ustaw hasło administratora.", -"Specify a data folder." => "Określ folder danych.", "%s enter the database username." => "%s wpisz nazwę użytkownika do bazy", "%s enter the database name." => "%s wpisz nazwę bazy.", "%s you may not use dots in the database name" => "%s nie można używać kropki w nazwie bazy danych", diff --git a/lib/l10n/pt_BR.php b/lib/l10n/pt_BR.php index d4f410d888..8196b43be2 100644 --- a/lib/l10n/pt_BR.php +++ b/lib/l10n/pt_BR.php @@ -18,7 +18,6 @@ "Images" => "Imagens", "Set an admin username." => "Defina um nome de usuário de administrador.", "Set an admin password." => "Defina uma senha de administrador.", -"Specify a data folder." => "Especifique uma pasta de dados.", "%s enter the database username." => "%s insira o nome de usuário do banco de dados.", "%s enter the database name." => "%s insira o nome do banco de dados.", "%s you may not use dots in the database name" => "%s você não pode usar pontos no nome do banco de dados", diff --git a/lib/l10n/pt_PT.php b/lib/l10n/pt_PT.php index 2c813f5b07..12470686e7 100644 --- a/lib/l10n/pt_PT.php +++ b/lib/l10n/pt_PT.php @@ -18,7 +18,6 @@ "Images" => "Imagens", "Set an admin username." => "Definir um nome de utilizador de administrador", "Set an admin password." => "Definiar uma password de administrador", -"Specify a data folder." => "Especificar a pasta para os dados.", "%s enter the database username." => "%s introduza o nome de utilizador da base de dados", "%s enter the database name." => "%s introduza o nome da base de dados", "%s you may not use dots in the database name" => "%s não é permitido utilizar pontos (.) no nome da base de dados", diff --git a/lib/l10n/ru.php b/lib/l10n/ru.php index 25a88d5efc..6f351cd458 100644 --- a/lib/l10n/ru.php +++ b/lib/l10n/ru.php @@ -18,7 +18,6 @@ "Images" => "Изображения", "Set an admin username." => "Установить имя пользователя для admin.", "Set an admin password." => "становит пароль для admin.", -"Specify a data folder." => "Указать папку данных.", "%s enter the database username." => "%s введите имя пользователя базы данных.", "%s enter the database name." => "%s введите имя базы данных.", "%s you may not use dots in the database name" => "%s Вы не можете использовать точки в имени базы данных", diff --git a/lib/l10n/sk_SK.php b/lib/l10n/sk_SK.php index 8c9ce61622..2ab255ef8f 100644 --- a/lib/l10n/sk_SK.php +++ b/lib/l10n/sk_SK.php @@ -18,7 +18,6 @@ "Images" => "Obrázky", "Set an admin username." => "Zadajte používateľské meno administrátora.", "Set an admin password." => "Zadajte heslo administrátora.", -"Specify a data folder." => "Zadajte priečinok pre dáta.", "%s enter the database username." => "Zadajte používateľské meno %s databázy..", "%s enter the database name." => "Zadajte názov databázy pre %s databázy.", "%s you may not use dots in the database name" => "V názve databázy %s nemôžete používať bodky", diff --git a/lib/l10n/sl.php b/lib/l10n/sl.php index a2e1719de8..8775cdd030 100644 --- a/lib/l10n/sl.php +++ b/lib/l10n/sl.php @@ -18,7 +18,6 @@ "Images" => "Slike", "Set an admin username." => "Nastavi uporabniško ime skrbnika.", "Set an admin password." => "Nastavi geslo skrbnika.", -"Specify a data folder." => "Določi podatkovno mapo.", "%s enter the database username." => "%s - vnos uporabniškega imena podatkovne zbirke.", "%s enter the database name." => "%s - vnos imena podatkovne zbirke.", "%s you may not use dots in the database name" => "%s - v imenu podatkovne zbirke ni dovoljeno uporabljati pik.", diff --git a/lib/l10n/sq.php b/lib/l10n/sq.php index 743c52850a..649af3c5c2 100644 --- a/lib/l10n/sq.php +++ b/lib/l10n/sq.php @@ -18,7 +18,6 @@ "Images" => "Foto", "Set an admin username." => "Cakto emrin e administratorit.", "Set an admin password." => "Cakto kodin e administratorit.", -"Specify a data folder." => "Specifiko dosjen e të dhënave.", "%s enter the database username." => "% shkruani përdoruesin e database-it.", "%s enter the database name." => "%s shkruani emrin e database-it.", "%s you may not use dots in the database name" => "%s nuk mund të përdorni pikat tek emri i database-it", diff --git a/lib/l10n/uk.php b/lib/l10n/uk.php index 68f7151d15..9dfc16c346 100644 --- a/lib/l10n/uk.php +++ b/lib/l10n/uk.php @@ -18,7 +18,6 @@ "Images" => "Зображення", "Set an admin username." => "Встановіть ім'я адміністратора.", "Set an admin password." => "Встановіть пароль адміністратора.", -"Specify a data folder." => "Вкажіть теку для даних.", "%s enter the database username." => "%s введіть ім'я користувача бази даних.", "%s enter the database name." => "%s введіть назву бази даних.", "%s you may not use dots in the database name" => "%s не можна використовувати крапки в назві бази даних", diff --git a/lib/l10n/zh_CN.php b/lib/l10n/zh_CN.php index b79fdfcca1..2dea94dec3 100644 --- a/lib/l10n/zh_CN.php +++ b/lib/l10n/zh_CN.php @@ -18,7 +18,6 @@ "Images" => "图片", "Set an admin username." => "请设置一个管理员用户名。", "Set an admin password." => "请设置一个管理员密码。", -"Specify a data folder." => "请指定一个数据目录。", "%s enter the database username." => "%s 输入数据库用户名。", "%s enter the database name." => "%s 输入数据库名称。", "%s you may not use dots in the database name" => "%s 您不能在数据库名称中使用英文句号。", diff --git a/settings/l10n/cy_GB.php b/settings/l10n/cy_GB.php index f90e531f12..5aaa954463 100644 --- a/settings/l10n/cy_GB.php +++ b/settings/l10n/cy_GB.php @@ -1,6 +1,9 @@ "Cais annilys", "Error" => "Gwall", +"Delete" => "Dileu", "Security Warning" => "Rhybudd Diogelwch", "Password" => "Cyfrinair", -"New password" => "Cyfrinair newydd" +"New password" => "Cyfrinair newydd", +"Other" => "Arall" ); diff --git a/settings/l10n/de.php b/settings/l10n/de.php index cb7d08cba9..1ff3e45f69 100644 --- a/settings/l10n/de.php +++ b/settings/l10n/de.php @@ -39,7 +39,7 @@ "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Dein Datenverzeichnis und Deine Datein sind vielleicht vom Internet aus erreichbar. Die .htaccess Datei, die ownCloud verwendet, arbeitet nicht richtig. Wir schlagen Dir dringend vor, dass Du Deinen Webserver so konfigurierst, dass das Datenverzeichnis nicht länger erreichbar ist oder, dass Du Dein Datenverzeichnis aus dem Dokumenten-root des Webservers bewegst.", "Setup Warning" => "Einrichtungswarnung", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Dein Web-Server ist noch nicht für Datei-Synchronisation bereit, weil die WebDAV-Schnittstelle vermutlich defekt ist.", -"Please double check the installation guides." => "Bitte prüfen Sie die Instalationsanleitungen.", +"Please double check the installation guides." => "Bitte prüfen Sie die Installationsanleitungen.", "Module 'fileinfo' missing" => "Modul 'fileinfo' fehlt ", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Das PHP-Modul 'fileinfo' fehlt. Wir empfehlen dieses Modul zu aktivieren um die besten Resultate bei der Erkennung der Dateitypen zu erreichen.", "Locale not working" => "Ländereinstellung funktioniert nicht", diff --git a/settings/l10n/de_DE.php b/settings/l10n/de_DE.php index d6e068059b..b1f121aa97 100644 --- a/settings/l10n/de_DE.php +++ b/settings/l10n/de_DE.php @@ -39,7 +39,7 @@ "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Ihr Datenverzeichnis und Ihre Dateien sind wahrscheinlich über das Internet erreichbar. Die von ownCloud bereitgestellte .htaccess Datei funktioniert nicht. Wir empfehlen Ihnen dringend, Ihren Webserver so zu konfigurieren, dass das Datenverzeichnis nicht mehr über das Internet erreichbar ist. Alternativ können Sie auch das Datenverzeichnis aus dem Dokumentenverzeichnis des Webservers verschieben.", "Setup Warning" => "Einrichtungswarnung", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Ihr Web-Server ist noch nicht für eine Datei-Synchronisation konfiguriert, weil die WebDAV-Schnittstelle vermutlich defekt ist.", -"Please double check the installation guides." => "Bitte prüfen Sie die Instalationsanleitungen.", +"Please double check the installation guides." => "Bitte prüfen Sie die Installationsanleitungen.", "Module 'fileinfo' missing" => "Das Modul 'fileinfo' fehlt", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Das PHP-Modul 'fileinfo' fehlt. Wir empfehlen Ihnen dieses Modul zu aktivieren, um die besten Resultate bei der Bestimmung der Dateitypen zu erzielen.", "Locale not working" => "Die Lokalisierung funktioniert nicht", diff --git a/settings/l10n/ja_JP.php b/settings/l10n/ja_JP.php index 132b4ee437..c5aa0ddec7 100644 --- a/settings/l10n/ja_JP.php +++ b/settings/l10n/ja_JP.php @@ -65,7 +65,7 @@ "Please connect to this ownCloud instance via HTTPS to enable or disable the SSL enforcement." => "常にSSL接続を有効/無効にするために、HTTPS経由でこの ownCloud に接続して下さい。", "Log" => "ログ", "Log level" => "ログレベル", -"More" => "詳細", +"More" => "もっと見る", "Less" => "閉じる", "Version" => "バージョン", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "ownCloud コミュニティにより開発されています。 ソースコードは、AGPL ライセンスの下で提供されています。",