diff options
author | tomneedham <tom@owncloud.com> | 2014-01-04 13:46:08 +0000 |
---|---|---|
committer | tomneedham <tom@owncloud.com> | 2014-01-04 13:46:08 +0000 |
commit | 1824ae12225a32d29d5738215f169c1aa3534e8b (patch) | |
tree | 328c3f3c8cf9819174872d687c3d3a00dd0040ca | |
parent | ac85dea267261a58ae815c257098a3ae6ed42b80 (diff) | |
parent | aaa48576eec42388bc923a60aeb9c92ef2ff9ca4 (diff) | |
download | nextcloud-server-1824ae12225a32d29d5738215f169c1aa3534e8b.tar.gz nextcloud-server-1824ae12225a32d29d5738215f169c1aa3534e8b.zip |
Merge branch 'master' into fix-5388-master
563 files changed, 15968 insertions, 7076 deletions
diff --git a/apps/files/ajax/newfile.php b/apps/files/ajax/newfile.php index c327d2b9f94..ec5b716fb2a 100644 --- a/apps/files/ajax/newfile.php +++ b/apps/files/ajax/newfile.php @@ -53,13 +53,13 @@ $result = array( ); if(trim($filename) === '') { - $result['data'] = array('message' => $l10n->t('File name cannot be empty.')); + $result['data'] = array('message' => (string)$l10n->t('File name cannot be empty.')); OCP\JSON::error($result); exit(); } if(strpos($filename, '/') !== false) { - $result['data'] = array('message' => $l10n->t('File name must not contain "/". Please choose a different name.')); + $result['data'] = array('message' => (string)$l10n->t('File name must not contain "/". Please choose a different name.')); OCP\JSON::error($result); exit(); } @@ -68,7 +68,7 @@ if(strpos($filename, '/') !== false) { $target = $dir.'/'.$filename; if (\OC\Files\Filesystem::file_exists($target)) { - $result['data'] = array('message' => $l10n->t( + $result['data'] = array('message' => (string)$l10n->t( 'The name %s is already used in the folder %s. Please choose a different name.', array($filename, $dir)) ); @@ -78,20 +78,32 @@ if (\OC\Files\Filesystem::file_exists($target)) { if($source) { if(substr($source, 0, 8)!='https://' and substr($source, 0, 7)!='http://') { - OCP\JSON::error(array('data' => array( 'message' => $l10n->t('Not a valid source') ))); + OCP\JSON::error(array('data' => array('message' => $l10n->t('Not a valid source')))); + exit(); + } + + if (!ini_get('allow_url_fopen')) { + $eventSource->send('error', array('message' => $l10n->t('Server is not allowed to open URLs, please check the server configuration'))); + $eventSource->close(); exit(); } $ctx = stream_context_create(null, array('notification' =>'progress')); - $sourceStream=fopen($source, 'rb', false, $ctx); - $result=\OC\Files\Filesystem::file_put_contents($target, $sourceStream); + $sourceStream=@fopen($source, 'rb', false, $ctx); + $result = 0; + if (is_resource($sourceStream)) { + $result=\OC\Files\Filesystem::file_put_contents($target, $sourceStream); + } if($result) { $meta = \OC\Files\Filesystem::getFileInfo($target); $mime=$meta['mimetype']; $id = $meta['fileid']; - $eventSource->send('success', array('mime'=>$mime, 'size'=>\OC\Files\Filesystem::filesize($target), 'id' => $id, 'etag' => $meta['etag'])); + $eventSource->send('success', array('mime' => $mime, 'size' => \OC\Files\Filesystem::filesize($target), 'id' => $id, 'etag' => $meta['etag'])); } else { - $eventSource->send('error', $l10n->t('Error while downloading %s to %s', array($source, $target))); + $eventSource->send('error', array('message' => $l10n->t('Error while downloading %s to %s', array($source, $target)))); + } + if (is_resource($sourceStream)) { + fclose($sourceStream); } $eventSource->close(); exit(); diff --git a/apps/files/js/file-upload.js b/apps/files/js/file-upload.js index e9663353f74..196817432d5 100644 --- a/apps/files/js/file-upload.js +++ b/apps/files/js/file-upload.js @@ -658,7 +658,12 @@ $(document).ready(function() { }); eventSource.listen('error',function(error) { $('#uploadprogressbar').fadeOut(); - alert(error); + var message = (error && error.message) || t('core', 'Error fetching URL'); + OC.Notification.show(message); + //hide notification after 10 sec + setTimeout(function() { + OC.Notification.hide(); + }, 10000); }); break; } diff --git a/apps/files/l10n/ak.php b/apps/files/l10n/ak.php new file mode 100644 index 00000000000..f229792722d --- /dev/null +++ b/apps/files/l10n/ak.php @@ -0,0 +1,7 @@ +<?php +$TRANSLATIONS = array( +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), +"_Uploading %n file_::_Uploading %n files_" => array("","") +); +$PLURAL_FORMS = "nplurals=2; plural=n > 1;"; diff --git a/apps/files/l10n/cs_CZ.php b/apps/files/l10n/cs_CZ.php index 75698f569e5..44e0fdae1f1 100644 --- a/apps/files/l10n/cs_CZ.php +++ b/apps/files/l10n/cs_CZ.php @@ -6,6 +6,7 @@ $TRANSLATIONS = array( "File name must not contain \"/\". Please choose a different name." => "Název souboru nesmí obsahovat \"/\". Vyberte prosím jiné jméno.", "The name %s is already used in the folder %s. Please choose a different name." => "Název %s ve složce %s již existuje. Vyberte prosím jiné jméno.", "Not a valid source" => "Neplatný zdroj", +"Server is not allowed to open URLs, please check the server configuration" => "Server není oprávněn otevírat adresy URL. Ověřte, prosím, konfiguraci serveru.", "Error while downloading %s to %s" => "Chyba při stahování %s do %s", "Error when creating the file" => "Chyba při vytváření souboru", "Folder name cannot be empty." => "Název složky nemůže být prázdný.", @@ -36,6 +37,7 @@ $TRANSLATIONS = array( "{new_name} already exists" => "{new_name} již existuje", "Could not create file" => "Nepodařilo se vytvořit soubor", "Could not create folder" => "Nepodařilo se vytvořit složku", +"Error fetching URL" => "Chyba při načítání URL", "Share" => "Sdílet", "Delete permanently" => "Trvale odstranit", "Rename" => "Přejmenovat", diff --git a/apps/files/l10n/da.php b/apps/files/l10n/da.php index 93c9cb75925..9b7722444a8 100644 --- a/apps/files/l10n/da.php +++ b/apps/files/l10n/da.php @@ -3,6 +3,15 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "Kunne ikke flytte %s - der findes allerede en fil med dette navn", "Could not move %s" => "Kunne ikke flytte %s", "File name cannot be empty." => "Filnavnet kan ikke stå tomt.", +"File name must not contain \"/\". Please choose a different name." => "Filnavnet må ikke indeholde \"/\". Vælg venligst et andet navn.", +"The name %s is already used in the folder %s. Please choose a different name." => "Navnet %s er allerede i brug i mappen %s. Vælg venligst et andet navn.", +"Not a valid source" => "Ikke en gyldig kilde", +"Server is not allowed to open URLs, please check the server configuration" => "Server har ikke tilladelse til at åbne URL'er. Kontroller venligst serverens indstillinger", +"Error while downloading %s to %s" => "Fejl ved hentning af %s til %s", +"Error when creating the file" => "Fejl ved oprettelse af fil", +"Folder name cannot be empty." => "Mappenavnet kan ikke være tomt.", +"Folder name must not contain \"/\". Please choose a different name." => "Mappenavnet må ikke indeholde \"/\". Vælg venligst et andet navn.", +"Error when creating the folder" => "Fejl ved oprettelse af mappen", "Unable to set upload directory." => "Ude af stand til at vælge upload mappe.", "Invalid Token" => "Ugyldig Token ", "No file was uploaded. Unknown error" => "Ingen fil blev uploadet. Ukendt fejl.", @@ -23,13 +32,20 @@ $TRANSLATIONS = array( "Upload cancelled." => "Upload afbrudt.", "Could not get result from server." => "Kunne ikke hente resultat fra server.", "File upload is in progress. Leaving the page now will cancel the upload." => "Fil upload kører. Hvis du forlader siden nu, vil uploadet blive annuleret.", +"URL cannot be empty" => "URL kan ikke være tom", +"In the home folder 'Shared' is a reserved filename" => "Navnet 'Shared' er reserveret i hjemmemappen.", "{new_name} already exists" => "{new_name} eksisterer allerede", +"Could not create file" => "Kunne ikke oprette fil", +"Could not create folder" => "Kunne ikke oprette mappe", +"Error fetching URL" => "Fejl ved URL", "Share" => "Del", "Delete permanently" => "Slet permanent", "Rename" => "Omdøb", "Pending" => "Afventer", +"Could not rename file" => "Kunne ikke omdøbe filen", "replaced {new_name} with {old_name}" => "erstattede {new_name} med {old_name}", "undo" => "fortryd", +"Error deleting file." => "Fejl ved sletnign af fil.", "_%n folder_::_%n folders_" => array("%n mappe","%n mapper"), "_%n file_::_%n files_" => array("%n fil","%n filer"), "{dirs} and {files}" => "{dirs} og {files}", @@ -38,6 +54,8 @@ $TRANSLATIONS = array( "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ugyldigt navn, '\\', '/', '<', '>', ':' | '?', '\"', '', og '*' er ikke tilladt.", "Your storage is full, files can not be updated or synced anymore!" => "Din opbevaringsplads er fyldt op, filer kan ikke opdateres eller synkroniseres længere!", "Your storage is almost full ({usedSpacePercent}%)" => "Din opbevaringsplads er næsten fyldt op ({usedSpacePercent}%)", +"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "Krypteringsprogrammet er aktiveret, men din nøgle er ikke igangsat. Log venligst ud og ind igen.", +"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Ugyldig privat nøgle for krypteringsprogrammet. Opdater venligst dit kodeord for den private nøgle i dine personlige indstillinger. Det kræves for at få adgang til dine krypterede filer.", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Krypteringen blev deaktiveret, men dine filer er stadig krypteret. Gå venligst til dine personlige indstillinger for at dekryptere dine filer. ", "Your download is being prepared. This might take some time if the files are big." => "Dit download forberedes. Dette kan tage lidt tid ved større filer.", "Error moving file" => "Fejl ved flytning af fil", @@ -45,6 +63,7 @@ $TRANSLATIONS = array( "Name" => "Navn", "Size" => "Størrelse", "Modified" => "Ændret", +"Invalid folder name. Usage of 'Shared' is reserved." => "Ugyldig mappenavn. 'Shared' er reserveret.", "%s could not be renamed" => "%s kunne ikke omdøbes", "Upload" => "Upload", "File handling" => "Filhåndtering", @@ -56,12 +75,14 @@ $TRANSLATIONS = array( "Maximum input size for ZIP files" => "Maksimal størrelse på ZIP filer", "Save" => "Gem", "New" => "Ny", +"New text file" => "Ny tekstfil", "Text file" => "Tekstfil", "New folder" => "Ny Mappe", "Folder" => "Mappe", "From link" => "Fra link", "Deleted files" => "Slettede filer", "Cancel upload" => "Fortryd upload", +"You don’t have permission to upload or create files here" => "Du har ikke tilladelse til at uploade eller oprette filer her", "Nothing in here. Upload something!" => "Her er tomt. Upload noget!", "Download" => "Download", "Delete" => "Slet", diff --git a/apps/files/l10n/de.php b/apps/files/l10n/de.php index 4617eaef6fd..b209fee88ae 100644 --- a/apps/files/l10n/de.php +++ b/apps/files/l10n/de.php @@ -6,6 +6,7 @@ $TRANSLATIONS = array( "File name must not contain \"/\". Please choose a different name." => "Der Dateiname darf kein \"/\" enthalten. Bitte wähle einen anderen Namen.", "The name %s is already used in the folder %s. Please choose a different name." => "Der Name %s wird bereits im Ordner %s benutzt. Bitte wähle einen anderen Namen.", "Not a valid source" => "Keine gültige Quelle", +"Server is not allowed to open URLs, please check the server configuration" => "Dem Server ist das Öffnen von URLs nicht erlaubt, bitte die Serverkonfiguration prüfen", "Error while downloading %s to %s" => "Fehler beim Herunterladen von %s nach %s", "Error when creating the file" => "Fehler beim Erstellen der Datei", "Folder name cannot be empty." => "Der Ordner-Name darf nicht leer sein.", @@ -36,6 +37,7 @@ $TRANSLATIONS = array( "{new_name} already exists" => "{new_name} existiert bereits", "Could not create file" => "Die Datei konnte nicht erstellt werden", "Could not create folder" => "Der Ordner konnte nicht erstellt werden", +"Error fetching URL" => "Fehler beim Abrufen der URL", "Share" => "Teilen", "Delete permanently" => "Endgültig löschen", "Rename" => "Umbenennen", diff --git a/apps/files/l10n/de_DE.php b/apps/files/l10n/de_DE.php index 2502b540cd8..76cdce00e4c 100644 --- a/apps/files/l10n/de_DE.php +++ b/apps/files/l10n/de_DE.php @@ -6,6 +6,7 @@ $TRANSLATIONS = array( "File name must not contain \"/\". Please choose a different name." => "Der Dateiname darf kein \"/\" enthalten. Bitte wählen Sie einen anderen Namen.", "The name %s is already used in the folder %s. Please choose a different name." => "Der Name %s wird bereits im Ordner %s benutzt. Bitte wählen Sie einen anderen Namen.", "Not a valid source" => "Keine gültige Quelle", +"Server is not allowed to open URLs, please check the server configuration" => "Dem Server ist das Öffnen von URLs nicht erlaubt, bitte die Serverkonfiguration prüfen", "Error while downloading %s to %s" => "Fehler beim Herunterladen von %s nach %s", "Error when creating the file" => "Fehler beim Erstellen der Datei", "Folder name cannot be empty." => "Der Ordner-Name darf nicht leer sein.", @@ -36,6 +37,7 @@ $TRANSLATIONS = array( "{new_name} already exists" => "{new_name} existiert bereits", "Could not create file" => "Die Datei konnte nicht erstellt werden", "Could not create folder" => "Der Ordner konnte nicht erstellt werden", +"Error fetching URL" => "Fehler beim Abrufen der URL", "Share" => "Teilen", "Delete permanently" => "Endgültig löschen", "Rename" => "Umbenennen", diff --git a/apps/files/l10n/el.php b/apps/files/l10n/el.php index cab7b2c6e31..9efe1af7dd3 100644 --- a/apps/files/l10n/el.php +++ b/apps/files/l10n/el.php @@ -3,6 +3,15 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "Αδυναμία μετακίνησης του %s - υπάρχει ήδη αρχείο με αυτό το όνομα", "Could not move %s" => "Αδυναμία μετακίνησης του %s", "File name cannot be empty." => "Το όνομα αρχείου δεν μπορεί να είναι κενό.", +"File name must not contain \"/\". Please choose a different name." => "Το όνομα αρχείου δεν μπορεί να περιέχει \"/\". Παρακαλώ επιλέξτε ένα διαφορετικό όνομα. ", +"The name %s is already used in the folder %s. Please choose a different name." => "Το όνομα %s χρησιμοποιείτε ήδη στον φάκελο %s. Παρακαλώ επιλέξτε ένα άλλο όνομα.", +"Not a valid source" => "Μη έγκυρη πηγή", +"Server is not allowed to open URLs, please check the server configuration" => "Ο διακομιστής δεν επιτρέπεται να ανοίγει URL, παρακαλώ ελέγξτε τις ρυθμίσεις του διακομιστή", +"Error while downloading %s to %s" => "Σφάλμα κατά τη λήψη του %s στο %s", +"Error when creating the file" => "Σφάλμα κατά τη δημιουργία του αρχείου", +"Folder name cannot be empty." => "Το όνομα φακέλου δεν μπορεί να είναι κενό.", +"Folder name must not contain \"/\". Please choose a different name." => "Το όνομα φακέλου δεν μπορεί να περιέχει \"/\". Παρακαλώ επιλέξτε ένα διαφορετικό όνομα. ", +"Error when creating the folder" => "Σφάλμα δημιουργίας φακέλου", "Unable to set upload directory." => "Αδυναμία ορισμού καταλόγου αποστολής.", "Invalid Token" => "Μη έγκυρο Token", "No file was uploaded. Unknown error" => "Δεν ανέβηκε κάποιο αρχείο. Άγνωστο σφάλμα", @@ -14,25 +23,39 @@ $TRANSLATIONS = array( "Missing a temporary folder" => "Λείπει ο προσωρινός φάκελος", "Failed to write to disk" => "Αποτυχία εγγραφής στο δίσκο", "Not enough storage available" => "Μη επαρκής διαθέσιμος αποθηκευτικός χώρος", +"Upload failed. Could not get file info." => "Η φόρτωση απέτυχε. Αδυναμία λήψης πληροφοριών αρχείων.", +"Upload failed. Could not find uploaded file" => "Η φόρτωση απέτυχε. Αδυναμία εύρεσης αρχείου προς φόρτωση.", "Invalid directory." => "Μη έγκυρος φάκελος.", "Files" => "Αρχεία", +"Unable to upload {filename} as it is a directory or has 0 bytes" => "Αδυναμία φόρτωσης {filename} καθώς είναι κατάλογος αρχείων ή έχει 0 bytes", "Not enough space available" => "Δεν υπάρχει αρκετός διαθέσιμος χώρος", "Upload cancelled." => "Η αποστολή ακυρώθηκε.", +"Could not get result from server." => "Αδυναμία λήψης αποτελέσματος από το διακομιστή.", "File upload is in progress. Leaving the page now will cancel the upload." => "Η αποστολή του αρχείου βρίσκεται σε εξέλιξη. Το κλείσιμο της σελίδας θα ακυρώσει την αποστολή.", +"URL cannot be empty" => "Η URL δεν πρέπει να είναι κενή", +"In the home folder 'Shared' is a reserved filename" => "Στον αρχικό φάκελο το όνομα 'Shared' διατηρείται από το σύστημα", "{new_name} already exists" => "{new_name} υπάρχει ήδη", +"Could not create file" => "Αδυναμία δημιουργίας αρχείου", +"Could not create folder" => "Αδυναμία δημιουργίας φακέλου", +"Error fetching URL" => "Σφάλμα φόρτωσης URL", "Share" => "Διαμοιρασμός", "Delete permanently" => "Μόνιμη διαγραφή", "Rename" => "Μετονομασία", "Pending" => "Εκκρεμεί", +"Could not rename file" => "Αδυναμία μετονομασίας αρχείου", "replaced {new_name} with {old_name}" => "αντικαταστάθηκε το {new_name} με {old_name}", "undo" => "αναίρεση", +"Error deleting file." => "Σφάλμα διαγραφής αρχείου.", "_%n folder_::_%n folders_" => array("%n φάκελος","%n φάκελοι"), "_%n file_::_%n files_" => array("%n αρχείο","%n αρχεία"), +"{dirs} and {files}" => "{Κατάλογοι αρχείων} και {αρχεία}", "_Uploading %n file_::_Uploading %n files_" => array("Ανέβασμα %n αρχείου","Ανέβασμα %n αρχείων"), "'.' is an invalid file name." => "'.' είναι μη έγκυρο όνομα αρχείου.", "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}%)", +"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "Η εφαρμογή κρυπτογράφησης είναι ενεργοποιημένη αλλά τα κλειδιά σας δεν έχουν καταγραφεί, παρακαλώ αποσυνδεθείτε και επανασυνδεθείτε.", +"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Άκυρο προσωπικό κλειδί για την εφαρμογή κρυπτογράφησης. Παρακαλώ ενημερώστε τον κωδικό του προσωπικού κλειδίου σας στις προσωπικές ρυθμίσεις για να επανακτήσετε πρόσβαση στα κρυπτογραφημένα σας αρχεία.", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Η κρυπτογράφηση απενεργοποιήθηκε, αλλά τα αρχεία σας είναι ακόμα κρυπτογραφημένα. Παρακαλούμε απενεργοποιήσετε την κρυπτογράφηση αρχείων από τις προσωπικές σας ρυθμίσεις", "Your download is being prepared. This might take some time if the files are big." => "Η λήψη προετοιμάζεται. Αυτό μπορεί να πάρει ώρα εάν τα αρχεία έχουν μεγάλο μέγεθος.", "Error moving file" => "Σφάλμα κατά τη μετακίνηση του αρχείου", @@ -40,6 +63,7 @@ $TRANSLATIONS = array( "Name" => "Όνομα", "Size" => "Μέγεθος", "Modified" => "Τροποποιήθηκε", +"Invalid folder name. Usage of 'Shared' is reserved." => "Άκυρο όνομα φακέλου. Η χρήση του 'Shared' διατηρείται από το σύστημα.", "%s could not be renamed" => "Αδυναμία μετονομασίας του %s", "Upload" => "Μεταφόρτωση", "File handling" => "Διαχείριση αρχείων", @@ -51,12 +75,14 @@ $TRANSLATIONS = array( "Maximum input size for ZIP files" => "Μέγιστο μέγεθος για αρχεία ZIP", "Save" => "Αποθήκευση", "New" => "Νέο", +"New text file" => "Νέο αρχείο κειμένου", "Text file" => "Αρχείο κειμένου", "New folder" => "Νέος κατάλογος", "Folder" => "Φάκελος", "From link" => "Από σύνδεσμο", "Deleted files" => "Διαγραμμένα αρχεία", "Cancel upload" => "Ακύρωση αποστολής", +"You don’t have permission to upload or create files here" => "Δεν έχετε δικαιώματα φόρτωσης ή δημιουργίας αρχείων εδώ", "Nothing in here. Upload something!" => "Δεν υπάρχει τίποτα εδώ. Ανεβάστε κάτι!", "Download" => "Λήψη", "Delete" => "Διαγραφή", diff --git a/apps/files/l10n/en_GB.php b/apps/files/l10n/en_GB.php index e45c4bf4ede..ac93aa68abb 100644 --- a/apps/files/l10n/en_GB.php +++ b/apps/files/l10n/en_GB.php @@ -6,6 +6,7 @@ $TRANSLATIONS = array( "File name must not contain \"/\". Please choose a different name." => "File name must not contain \"/\". Please choose a different name.", "The name %s is already used in the folder %s. Please choose a different name." => "The name %s is already used in the folder %s. Please choose a different name.", "Not a valid source" => "Not a valid source", +"Server is not allowed to open URLs, please check the server configuration" => "Server is not allowed to open URLs, please check the server configuration", "Error while downloading %s to %s" => "Error whilst downloading %s to %s", "Error when creating the file" => "Error when creating the file", "Folder name cannot be empty." => "Folder name cannot be empty.", @@ -36,6 +37,7 @@ $TRANSLATIONS = array( "{new_name} already exists" => "{new_name} already exists", "Could not create file" => "Could not create file", "Could not create folder" => "Could not create folder", +"Error fetching URL" => "Error fetching URL", "Share" => "Share", "Delete permanently" => "Delete permanently", "Rename" => "Rename", diff --git a/apps/files/l10n/es.php b/apps/files/l10n/es.php index 84e11df6818..bfbb80e8962 100644 --- a/apps/files/l10n/es.php +++ b/apps/files/l10n/es.php @@ -6,6 +6,7 @@ $TRANSLATIONS = array( "File name must not contain \"/\". Please choose a different name." => "El nombre del archivo, NO puede contener el simbolo\"/\", por favor elija un nombre diferente.", "The name %s is already used in the folder %s. Please choose a different name." => "El nombre %s ya está en uso por la carpeta %s. Por favor elija uno diferente.", "Not a valid source" => "No es un origen válido", +"Server is not allowed to open URLs, please check the server configuration" => "El servidor no puede acceder URLs; revise la configuración del servidor.", "Error while downloading %s to %s" => "Error mientras se descargaba %s a %s", "Error when creating the file" => "Error al crear el archivo", "Folder name cannot be empty." => "El nombre de la carpeta no puede estar vacío.", @@ -36,6 +37,7 @@ $TRANSLATIONS = array( "{new_name} already exists" => "{new_name} ya existe", "Could not create file" => "No se pudo crear el archivo", "Could not create folder" => "No se pudo crear la carpeta", +"Error fetching URL" => "Error al descargar URL.", "Share" => "Compartir", "Delete permanently" => "Eliminar permanentemente", "Rename" => "Renombrar", diff --git a/apps/files/l10n/es_CL.php b/apps/files/l10n/es_CL.php new file mode 100644 index 00000000000..6f97758878f --- /dev/null +++ b/apps/files/l10n/es_CL.php @@ -0,0 +1,9 @@ +<?php +$TRANSLATIONS = array( +"Files" => "Archivos", +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), +"_Uploading %n file_::_Uploading %n files_" => array("",""), +"Upload" => "Subir" +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/es_MX.php b/apps/files/l10n/es_MX.php index 0157af093e9..0b7571defc7 100644 --- a/apps/files/l10n/es_MX.php +++ b/apps/files/l10n/es_MX.php @@ -1,7 +1,95 @@ <?php $TRANSLATIONS = array( -"_%n folder_::_%n folders_" => array("",""), -"_%n file_::_%n files_" => array("",""), -"_Uploading %n file_::_Uploading %n files_" => array("","") +"Could not move %s - File with this name already exists" => "No se pudo mover %s - Ya existe un archivo con ese nombre.", +"Could not move %s" => "No se pudo mover %s", +"File name cannot be empty." => "El nombre de archivo no puede estar vacío.", +"File name must not contain \"/\". Please choose a different name." => "El nombre del archivo, NO puede contener el simbolo\"/\", por favor elija un nombre diferente.", +"The name %s is already used in the folder %s. Please choose a different name." => "El nombre %s ya está en uso por la carpeta %s. Por favor elija uno diferente.", +"Not a valid source" => "No es un origen válido", +"Server is not allowed to open URLs, please check the server configuration" => "El servidor no puede acceder URLs; revise la configuración del servidor.", +"Error while downloading %s to %s" => "Error mientras se descargaba %s a %s", +"Error when creating the file" => "Error al crear el archivo", +"Folder name cannot be empty." => "El nombre de la carpeta no puede estar vacío.", +"Folder name must not contain \"/\". Please choose a different name." => "El nombre de la carpeta, NO puede contener el simbolo\"/\", por favor elija un nombre diferente.", +"Error when creating the folder" => "Error al crear la carpeta.", +"Unable to set upload directory." => "Incapaz de crear directorio de subida.", +"Invalid Token" => "Token Inválido", +"No file was uploaded. Unknown error" => "No se subió ningún archivo. Error desconocido", +"There is no error, the file uploaded with success" => "No hubo ningún problema, el archivo se subió con éxito", +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "El archivo subido sobrepasa la directiva 'upload_max_filesize' en php.ini:", +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "El archivo subido sobrepasa la directiva 'MAX_FILE_SIZE' especificada en el formulario HTML", +"The uploaded file was only partially uploaded" => "El archivo subido fue sólo subido parcialmente", +"No file was uploaded" => "No se subió ningún archivo", +"Missing a temporary folder" => "Falta la carpeta temporal", +"Failed to write to disk" => "Falló al escribir al disco", +"Not enough storage available" => "No hay suficiente espacio disponible", +"Upload failed. Could not get file info." => "Actualización fallida. No se pudo obtener información del archivo.", +"Upload failed. Could not find uploaded file" => "Actualización fallida. No se pudo encontrar el archivo subido", +"Invalid directory." => "Directorio inválido.", +"Files" => "Archivos", +"Unable to upload {filename} as it is a directory or has 0 bytes" => "No ha sido posible subir {filename} porque es un directorio o tiene 0 bytes", +"Not enough space available" => "No hay suficiente espacio disponible", +"Upload cancelled." => "Subida cancelada.", +"Could not get result from server." => "No se pudo obtener respuesta del servidor.", +"File upload is in progress. Leaving the page now will cancel the upload." => "La subida del archivo está en proceso. Si sale de la página ahora, la subida será cancelada.", +"URL cannot be empty" => "La dirección URL no puede estar vacía", +"In the home folder 'Shared' is a reserved filename" => "En la carpeta de inicio, 'Shared' es un nombre reservado", +"{new_name} already exists" => "{new_name} ya existe", +"Could not create file" => "No se pudo crear el archivo", +"Could not create folder" => "No se pudo crear la carpeta", +"Error fetching URL" => "Error al descargar URL.", +"Share" => "Compartir", +"Delete permanently" => "Eliminar permanentemente", +"Rename" => "Renombrar", +"Pending" => "Pendiente", +"Could not rename file" => "No se pudo renombrar el archivo", +"replaced {new_name} with {old_name}" => "reemplazado {new_name} con {old_name}", +"undo" => "deshacer", +"Error deleting file." => "Error borrando el archivo.", +"_%n folder_::_%n folders_" => array("%n carpeta","%n carpetas"), +"_%n file_::_%n files_" => array("%n archivo","%n archivos"), +"{dirs} and {files}" => "{dirs} y {files}", +"_Uploading %n file_::_Uploading %n files_" => array("Subiendo %n archivo","Subiendo %n archivos"), +"'.' is an invalid file name." => "'.' no es un nombre de archivo válido.", +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nombre inválido, los caracteres \"\\\", \"/\", \"<\", \">\", \":\", \"\", \"|\" \"?\" y \"*\" no están permitidos ", +"Your storage is full, files can not be updated or synced anymore!" => "Su almacenamiento está lleno, ¡los archivos no se actualizarán ni sincronizarán más!", +"Your storage is almost full ({usedSpacePercent}%)" => "Su almacenamiento está casi lleno ({usedSpacePercent}%)", +"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "La aplicación de crifrado está habilitada pero tus claves no han sido inicializadas, por favor, cierra la sesión y vuelva a iniciarla de nuevo.", +"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "La clave privada no es válida para la aplicación de cifrado. Por favor, actualiza la contraseña de tu clave privada en tus ajustes personales para recuperar el acceso a tus archivos cifrados.", +"Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "El cifrado ha sido deshabilitado pero tus archivos permanecen cifrados. Por favor, ve a tus ajustes personales para descifrar tus archivos.", +"Your download is being prepared. This might take some time if the files are big." => "Su descarga está siendo preparada. Esto podría tardar algo de tiempo si los archivos son grandes.", +"Error moving file" => "Error moviendo archivo", +"Error" => "Error", +"Name" => "Nombre", +"Size" => "Tamaño", +"Modified" => "Modificado", +"Invalid folder name. Usage of 'Shared' is reserved." => "Nombre de carpeta inválido. El uso de \"Shared\" esta reservado.", +"%s could not be renamed" => "%s no pudo ser renombrado", +"Upload" => "Subir", +"File handling" => "Administración de archivos", +"Maximum upload size" => "Tamaño máximo de subida", +"max. possible: " => "máx. posible:", +"Needed for multi-file and folder downloads." => "Necesario para multi-archivo y descarga de carpetas", +"Enable ZIP-download" => "Habilitar descarga en ZIP", +"0 is unlimited" => "0 significa ilimitado", +"Maximum input size for ZIP files" => "Tamaño máximo para archivos ZIP de entrada", +"Save" => "Guardar", +"New" => "Nuevo", +"New text file" => "Nuevo archivo de texto", +"Text file" => "Archivo de texto", +"New folder" => "Nueva carpeta", +"Folder" => "Carpeta", +"From link" => "Desde enlace", +"Deleted files" => "Archivos eliminados", +"Cancel upload" => "Cancelar subida", +"You don’t have permission to upload or create files here" => "No tienes permisos para subir o crear archivos aquí.", +"Nothing in here. Upload something!" => "No hay nada aquí. ¡Suba algo!", +"Download" => "Descargar", +"Delete" => "Eliminar", +"Upload too large" => "Subida demasido grande", +"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Los archivos que estás intentando subir sobrepasan el tamaño máximo permitido en este servidor.", +"Files are being scanned, please wait." => "Los archivos están siendo escaneados, por favor espere.", +"Current scanning" => "Escaneo actual", +"Upgrading filesystem cache..." => "Actualizando caché del sistema de archivos..." ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/fi_FI.php b/apps/files/l10n/fi_FI.php index 2c7327b0f39..d1241b77da0 100644 --- a/apps/files/l10n/fi_FI.php +++ b/apps/files/l10n/fi_FI.php @@ -6,6 +6,7 @@ $TRANSLATIONS = array( "File name must not contain \"/\". Please choose a different name." => "Tiedoston nimessä ei saa olla merkkiä \"/\". Valitse toinen nimi.", "The name %s is already used in the folder %s. Please choose a different name." => "Nimi %s on jo käytössä kansiossa %s. Valitse toinen nimi.", "Not a valid source" => "Virheellinen lähde", +"Server is not allowed to open URLs, please check the server configuration" => "Palvelimen ei ole lupa avata verkko-osoitteita. Tarkista palvelimen asetukset", "Error while downloading %s to %s" => "Virhe ladatessa kohdetta %s sijaintiin %s", "Error when creating the file" => "Virhe tiedostoa luotaessa", "Folder name cannot be empty." => "Kansion nimi ei voi olla tyhjä.", @@ -32,6 +33,7 @@ $TRANSLATIONS = array( "{new_name} already exists" => "{new_name} on jo olemassa", "Could not create file" => "Tiedoston luominen epäonnistui", "Could not create folder" => "Kansion luominen epäonnistui", +"Error fetching URL" => "Virhe noutaessa verkko-osoitetta", "Share" => "Jaa", "Delete permanently" => "Poista pysyvästi", "Rename" => "Nimeä uudelleen", diff --git a/apps/files/l10n/fr.php b/apps/files/l10n/fr.php index c493e2d5537..73b89434778 100644 --- a/apps/files/l10n/fr.php +++ b/apps/files/l10n/fr.php @@ -6,6 +6,7 @@ $TRANSLATIONS = array( "File name must not contain \"/\". Please choose a different name." => "Le nom de fichier ne doit pas contenir \"/\". Merci de choisir un nom différent.", "The name %s is already used in the folder %s. Please choose a different name." => "Le nom %s est déjà utilisé dans le dossier %s. Merci de choisir un nom différent.", "Not a valid source" => "La source n'est pas valide", +"Server is not allowed to open URLs, please check the server configuration" => "Le serveur n'est pas autorisé à ouvrir des URL, veuillez vérifier la configuration du serveur", "Error while downloading %s to %s" => "Erreur pendant le téléchargement de %s à %s", "Error when creating the file" => "Erreur pendant la création du fichier", "Folder name cannot be empty." => "Le nom de dossier ne peux pas être vide.", @@ -36,6 +37,7 @@ $TRANSLATIONS = array( "{new_name} already exists" => "{new_name} existe déjà", "Could not create file" => "Impossible de créer le fichier", "Could not create folder" => "Impossible de créer le dossier", +"Error fetching URL" => "Erreur d'accès à l'URL", "Share" => "Partager", "Delete permanently" => "Supprimer de façon définitive", "Rename" => "Renommer", diff --git a/apps/files/l10n/gl.php b/apps/files/l10n/gl.php index c2d8d9b7d1e..1d22691d93c 100644 --- a/apps/files/l10n/gl.php +++ b/apps/files/l10n/gl.php @@ -6,6 +6,7 @@ $TRANSLATIONS = array( "File name must not contain \"/\". Please choose a different name." => "O nome do ficheiro non pode conter «/». Escolla outro nome.", "The name %s is already used in the folder %s. Please choose a different name." => "Xa existe o nome %s no cartafol %s. Escolla outro nome.", "Not a valid source" => "Esta orixe non é correcta", +"Server is not allowed to open URLs, please check the server configuration" => "O servidor non ten permisos para abrir os enderezos URL, comprobe a configuración do servidor", "Error while downloading %s to %s" => "Produciuse un erro ao descargar %s en %s", "Error when creating the file" => "Produciuse un erro ao crear o ficheiro", "Folder name cannot be empty." => "O nome de cartafol non pode estar baleiro.", @@ -36,6 +37,7 @@ $TRANSLATIONS = array( "{new_name} already exists" => "Xa existe un {new_name}", "Could not create file" => "Non foi posíbel crear o ficheiro", "Could not create folder" => "Non foi posíbel crear o cartafol", +"Error fetching URL" => "Produciuse un erro ao obter o URL", "Share" => "Compartir", "Delete permanently" => "Eliminar permanentemente", "Rename" => "Renomear", diff --git a/apps/files/l10n/hu_HU.php b/apps/files/l10n/hu_HU.php index f2150f05994..22c3926ed1c 100644 --- a/apps/files/l10n/hu_HU.php +++ b/apps/files/l10n/hu_HU.php @@ -6,6 +6,7 @@ $TRANSLATIONS = array( "File name must not contain \"/\". Please choose a different name." => "Az állomány neve nem tartalmazhatja a \"/\" karaktert. Kérem válasszon másik nevet!", "The name %s is already used in the folder %s. Please choose a different name." => "A %s név már létezik a %s mappában. Kérem válasszon másik nevet!", "Not a valid source" => "A kiinduló állomány érvénytelen", +"Server is not allowed to open URLs, please check the server configuration" => "A kiszolgálón nincs engedélyezve URL-ek megnyitása, kérem ellenőrizze a beállításokat", "Error while downloading %s to %s" => "Hiba történt miközben %s-t letöltöttük %s-be", "Error when creating the file" => "Hiba történt az állomány létrehozásakor", "Folder name cannot be empty." => "A mappa neve nem maradhat kitöltetlenül", @@ -36,6 +37,7 @@ $TRANSLATIONS = array( "{new_name} already exists" => "{new_name} már létezik", "Could not create file" => "Az állomány nem hozható létre", "Could not create folder" => "A mappa nem hozható létre", +"Error fetching URL" => "A megadott URL-ről nem sikerül adatokat kapni", "Share" => "Megosztás", "Delete permanently" => "Végleges törlés", "Rename" => "Átnevezés", @@ -43,6 +45,7 @@ $TRANSLATIONS = array( "Could not rename file" => "Az állomány nem nevezhető át", "replaced {new_name} with {old_name}" => "{new_name} fájlt kicseréltük ezzel: {old_name}", "undo" => "visszavonás", +"Error deleting file." => "Hiba a file törlése közben.", "_%n folder_::_%n folders_" => array("%n mappa","%n mappa"), "_%n file_::_%n files_" => array("%n állomány","%n állomány"), "{dirs} and {files}" => "{dirs} és {files}", @@ -72,6 +75,7 @@ $TRANSLATIONS = array( "Maximum input size for ZIP files" => "ZIP-fájlok maximális kiindulási mérete", "Save" => "Mentés", "New" => "Új", +"New text file" => "Új szöveges file", "Text file" => "Szövegfájl", "New folder" => "Új mappa", "Folder" => "Mappa", diff --git a/apps/files/l10n/it.php b/apps/files/l10n/it.php index 335ae416567..2a10e9977f4 100644 --- a/apps/files/l10n/it.php +++ b/apps/files/l10n/it.php @@ -6,6 +6,7 @@ $TRANSLATIONS = array( "File name must not contain \"/\". Please choose a different name." => "Il nome del file non può contenere il carattere \"/\". Scegli un nome diverso.", "The name %s is already used in the folder %s. Please choose a different name." => "Il nome %s è attualmente in uso nella cartella %s. Scegli un nome diverso.", "Not a valid source" => "Non è una sorgente valida", +"Server is not allowed to open URLs, please check the server configuration" => "Al server non è permesso aprire URL, controlla la configurazione del server", "Error while downloading %s to %s" => "Errore durante lo scaricamento di %s su %s", "Error when creating the file" => "Errore durante la creazione del file", "Folder name cannot be empty." => "Il nome della cartella non può essere vuoto.", @@ -36,6 +37,7 @@ $TRANSLATIONS = array( "{new_name} already exists" => "{new_name} esiste già", "Could not create file" => "Impossibile creare il file", "Could not create folder" => "Impossibile creare la cartella", +"Error fetching URL" => "Errore durante il recupero dello URL", "Share" => "Condividi", "Delete permanently" => "Elimina definitivamente", "Rename" => "Rinomina", diff --git a/apps/files/l10n/ja_JP.php b/apps/files/l10n/ja_JP.php index dd556151864..8019b825d3c 100644 --- a/apps/files/l10n/ja_JP.php +++ b/apps/files/l10n/ja_JP.php @@ -6,6 +6,7 @@ $TRANSLATIONS = array( "File name must not contain \"/\". Please choose a different name." => "ファイル名には \"/\" を含めることはできません。別の名前を選択してください。", "The name %s is already used in the folder %s. Please choose a different name." => "%s はフォルダ %s ないですでに使われています。別の名前を選択してください。", "Not a valid source" => "有効なソースではありません", +"Server is not allowed to open URLs, please check the server configuration" => "サーバーは、URLを開くことは許されません。サーバーの設定をチェックしてください。", "Error while downloading %s to %s" => "%s から %s へのダウンロードエラー", "Error when creating the file" => "ファイルの生成エラー", "Folder name cannot be empty." => "フォルダ名は空にできません", @@ -36,6 +37,7 @@ $TRANSLATIONS = array( "{new_name} already exists" => "{new_name} はすでに存在しています", "Could not create file" => "ファイルを作成できませんでした", "Could not create folder" => "フォルダを作成できませんでした", +"Error fetching URL" => "URL取得エラー", "Share" => "共有", "Delete permanently" => "完全に削除する", "Rename" => "名前の変更", diff --git a/apps/files/l10n/ko.php b/apps/files/l10n/ko.php index fbb80b7bfa1..35a9f2fb85c 100644 --- a/apps/files/l10n/ko.php +++ b/apps/files/l10n/ko.php @@ -1,11 +1,20 @@ <?php $TRANSLATIONS = array( -"Could not move %s - File with this name already exists" => "%s 항목을 이동시키지 못하였음 - 파일 이름이 이미 존재함", -"Could not move %s" => "%s 항목을 이딩시키지 못하였음", +"Could not move %s - File with this name already exists" => "항목 %s을(를) 이동시킬 수 없음 - 같은 이름의 파일이 이미 존재함", +"Could not move %s" => "항목 %s을(를) 이동시킬 수 없음", "File name cannot be empty." => "파일 이름이 비어 있을 수 없습니다.", -"Unable to set upload directory." => "업로드 디렉터리를 정할수 없습니다", +"File name must not contain \"/\". Please choose a different name." => "파일 이름에는 \"/\"가 들어갈 수 없습니다. 다른 이름을 사용하십시오.", +"The name %s is already used in the folder %s. Please choose a different name." => "이름 %s이(가) 폴더 %s에서 이미 사용 중입니다. 다른 이름을 사용하십시오.", +"Not a valid source" => "올바르지 않은 원본", +"Server is not allowed to open URLs, please check the server configuration" => "서버에서 URL을 열 수 없습니다. 서버 설정을 확인하십시오", +"Error while downloading %s to %s" => "%s을(를) %s(으)로 다운로드하는 중 오류 발생", +"Error when creating the file" => "파일 생성 중 오류 발생", +"Folder name cannot be empty." => "폴더 이름이 비어있을 수 없습니다.", +"Folder name must not contain \"/\". Please choose a different name." => "폴더 이름에는 \"/\"가 들어갈 수 없습니다. 다른 이름을 사용하십시오.", +"Error when creating the folder" => "폴더 생성 중 오류 발생", +"Unable to set upload directory." => "업로드 디렉터리를 설정할 수 없습니다.", "Invalid Token" => "잘못된 토큰", -"No file was uploaded. Unknown error" => "파일이 업로드되지 않았습니다. 알 수 없는 오류입니다", +"No file was uploaded. Unknown error" => "파일이 업로드 되지 않았습니다. 알 수 없는 오류입니다", "There is no error, the file uploaded with success" => "파일 업로드에 성공하였습니다.", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "업로드한 파일이 php.ini의 upload_max_filesize보다 큽니다:", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "업로드한 파일 크기가 HTML 폼의 MAX_FILE_SIZE보다 큼", @@ -14,38 +23,48 @@ $TRANSLATIONS = array( "Missing a temporary folder" => "임시 폴더가 없음", "Failed to write to disk" => "디스크에 쓰지 못했습니다", "Not enough storage available" => "저장소가 용량이 충분하지 않습니다.", -"Upload failed. Could not get file info." => "업로드에 실패했습니다. 파일 정보를 가져올수 없습니다.", -"Upload failed. Could not find uploaded file" => "업로드에 실패했습니다. 업로드할 파일을 찾을수 없습니다", +"Upload failed. Could not get file info." => "업로드에 실패했습니다. 파일 정보를 가져올 수 없습니다.", +"Upload failed. Could not find uploaded file" => "업로드에 실패했습니다. 업로드할 파일을 찾을 수 없습니다", "Invalid directory." => "올바르지 않은 디렉터리입니다.", "Files" => "파일", -"Unable to upload {filename} as it is a directory or has 0 bytes" => "{filename}을 업로드 할수 없습니다. 폴더이거나 0 바이트 파일입니다.", +"Unable to upload {filename} as it is a directory or has 0 bytes" => "{filename}을(를) 업로드할 수 없습니다. 폴더이거나 0 바이트 파일입니다.", "Not enough space available" => "여유 공간이 부족합니다", "Upload cancelled." => "업로드가 취소되었습니다.", -"Could not get result from server." => "서버에서 결과를 가져올수 없습니다.", +"Could not get result from server." => "서버에서 결과를 가져올 수 없습니다.", "File upload is in progress. Leaving the page now will cancel the upload." => "파일 업로드가 진행 중입니다. 이 페이지를 벗어나면 업로드가 취소됩니다.", +"URL cannot be empty" => "URL이 비어있을 수 없음", +"In the home folder 'Shared' is a reserved filename" => "'공유됨'은 홈 폴더의 예약된 파일 이름임", "{new_name} already exists" => "{new_name}이(가) 이미 존재함", +"Could not create file" => "파일을 만들 수 없음", +"Could not create folder" => "폴더를 만들 수 없음", +"Error fetching URL" => "URL을 가져올 수 없음", "Share" => "공유", -"Delete permanently" => "영원히 삭제", +"Delete permanently" => "영구히 삭제", "Rename" => "이름 바꾸기", "Pending" => "대기 중", +"Could not rename file" => "이름을 변경할 수 없음", "replaced {new_name} with {old_name}" => "{old_name}이(가) {new_name}(으)로 대체됨", -"undo" => "되돌리기", -"_%n folder_::_%n folders_" => array("폴더 %n"), -"_%n file_::_%n files_" => array("파일 %n 개"), +"undo" => "실행 취소", +"Error deleting file." => "파일 삭제 오류.", +"_%n folder_::_%n folders_" => array("폴더 %n개"), +"_%n file_::_%n files_" => array("파일 %n개"), "{dirs} and {files}" => "{dirs} 그리고 {files}", -"_Uploading %n file_::_Uploading %n files_" => array("%n 개의 파일을 업로드중"), -"'.' is an invalid file name." => "'.' 는 올바르지 않은 파일 이름 입니다.", +"_Uploading %n file_::_Uploading %n files_" => array("파일 %n개 업로드 중"), +"'.' is an invalid file name." => "'.' 는 올바르지 않은 파일 이름입니다.", "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}%)", -"Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "암호화는 해제되어 있지만, 파일은 아직 암호화 되어 있습니다. 개인 설저에 가셔서 암호를 해제하십시오", -"Your download is being prepared. This might take some time if the files are big." => "다운로드가 준비 중입니다. 파일 크기가 크다면 시간이 오래 걸릴 수도 있습니다.", +"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "암호화 앱이 활성화되어 있지만 키가 초기화되지 않았습니다. 로그아웃한 후 다시 로그인하십시오", +"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "암호화 앱의 개인 키가 잘못되었습니다. 암호화된 파일에 다시 접근하려면 개인 설정에서 개인 키 암호를 업데이트해야 합니다.", +"Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "암호화는 해제되어 있지만, 파일은 아직 암호화되어 있습니다. 개인 설정에서 파일을 복호화하십시오.", +"Your download is being prepared. This might take some time if the files are big." => "다운로드 준비 중입니다. 파일 크기가 크면 시간이 오래 걸릴 수도 있습니다.", "Error moving file" => "파일 이동 오류", "Error" => "오류", "Name" => "이름", "Size" => "크기", "Modified" => "수정됨", -"%s could not be renamed" => "%s 의 이름을 변경할수 없습니다", +"Invalid folder name. Usage of 'Shared' is reserved." => "폴더 이름이 잘못되었습니다. '공유됨'은 예약된 폴더 이름입니다.", +"%s could not be renamed" => "%s의 이름을 변경할 수 없습니다", "Upload" => "업로드", "File handling" => "파일 처리", "Maximum upload size" => "최대 업로드 크기", @@ -56,12 +75,14 @@ $TRANSLATIONS = array( "Maximum input size for ZIP files" => "ZIP 파일 최대 크기", "Save" => "저장", "New" => "새로 만들기", +"New text file" => "새 텍스트 파일", "Text file" => "텍스트 파일", "New folder" => "새 폴더", "Folder" => "폴더", "From link" => "링크에서", -"Deleted files" => "파일 삭제됨", +"Deleted files" => "삭제된 파일", "Cancel upload" => "업로드 취소", +"You don’t have permission to upload or create files here" => "여기에 파일을 업로드하거나 만들 권한이 없습니다", "Nothing in here. Upload something!" => "내용이 없습니다. 업로드할 수 있습니다!", "Download" => "다운로드", "Delete" => "삭제", diff --git a/apps/files/l10n/nl.php b/apps/files/l10n/nl.php index 9edee862cbf..a391e25b952 100644 --- a/apps/files/l10n/nl.php +++ b/apps/files/l10n/nl.php @@ -6,6 +6,7 @@ $TRANSLATIONS = array( "File name must not contain \"/\". Please choose a different name." => "De bestandsnaam mag geen \"/\" bevatten. Kies een andere naam.", "The name %s is already used in the folder %s. Please choose a different name." => "De naam %s bestaat al in map %s. Kies een andere naam.", "Not a valid source" => "Geen geldige bron", +"Server is not allowed to open URLs, please check the server configuration" => "Server mag geen URS's openen, controleer de server configuratie", "Error while downloading %s to %s" => "Fout bij downloaden %s naar %s", "Error when creating the file" => "Fout bij creëren bestand", "Folder name cannot be empty." => "Mapnaam mag niet leeg zijn.", @@ -36,6 +37,7 @@ $TRANSLATIONS = array( "{new_name} already exists" => "{new_name} bestaat al", "Could not create file" => "Kon bestand niet creëren", "Could not create folder" => "Kon niet creëren map", +"Error fetching URL" => "Fout bij ophalen URL", "Share" => "Delen", "Delete permanently" => "Verwijder definitief", "Rename" => "Hernoem", diff --git a/apps/files/l10n/pl.php b/apps/files/l10n/pl.php index 0ebae8f45c8..031bd508700 100644 --- a/apps/files/l10n/pl.php +++ b/apps/files/l10n/pl.php @@ -6,6 +6,7 @@ $TRANSLATIONS = array( "File name must not contain \"/\". Please choose a different name." => "Nazwa pliku nie może zawierać \"/\". Proszę wybrać inną nazwę.", "The name %s is already used in the folder %s. Please choose a different name." => "Nazwa %s jest już używana w folderze %s. Proszę wybrać inną nazwę.", "Not a valid source" => "Niepoprawne źródło", +"Server is not allowed to open URLs, please check the server configuration" => "Serwer nie mógł otworzyć adresów URL, należy sprawdzić konfigurację serwera", "Error while downloading %s to %s" => "Błąd podczas pobierania %s do %S", "Error when creating the file" => "Błąd przy tworzeniu pliku", "Folder name cannot be empty." => "Nazwa folderu nie może być pusta.", @@ -36,6 +37,7 @@ $TRANSLATIONS = array( "{new_name} already exists" => "{new_name} już istnieje", "Could not create file" => "Nie można utworzyć pliku", "Could not create folder" => "Nie można utworzyć folderu", +"Error fetching URL" => "Błąd przy pobieraniu adresu URL", "Share" => "Udostępnij", "Delete permanently" => "Trwale usuń", "Rename" => "Zmień nazwę", diff --git a/apps/files/l10n/pt_BR.php b/apps/files/l10n/pt_BR.php index 4f193611710..f84dcfcd488 100644 --- a/apps/files/l10n/pt_BR.php +++ b/apps/files/l10n/pt_BR.php @@ -6,6 +6,7 @@ $TRANSLATIONS = array( "File name must not contain \"/\". Please choose a different name." => "O nome do arquivo não deve conter \"/\". Por favor, escolha um nome diferente.", "The name %s is already used in the folder %s. Please choose a different name." => "O nome %s já é usado na pasta %s. Por favor, escolha um nome diferente.", "Not a valid source" => "Não é uma fonte válida", +"Server is not allowed to open URLs, please check the server configuration" => "Não é permitido ao servidor abrir URLs, por favor verificar a configuração do servidor.", "Error while downloading %s to %s" => "Erro ao baixar %s para %s", "Error when creating the file" => "Erro ao criar o arquivo", "Folder name cannot be empty." => "O nome da pasta não pode estar vazio.", @@ -36,6 +37,7 @@ $TRANSLATIONS = array( "{new_name} already exists" => "{new_name} já existe", "Could not create file" => "Não foi possível criar o arquivo", "Could not create folder" => "Não foi possível criar a pasta", +"Error fetching URL" => "Erro ao buscar URL", "Share" => "Compartilhar", "Delete permanently" => "Excluir permanentemente", "Rename" => "Renomear", diff --git a/apps/files/l10n/ru.php b/apps/files/l10n/ru.php index cede72f26e7..968da63aaca 100644 --- a/apps/files/l10n/ru.php +++ b/apps/files/l10n/ru.php @@ -6,6 +6,7 @@ $TRANSLATIONS = array( "File name must not contain \"/\". Please choose a different name." => "Имя файла не должно содержать символ \"/\". Пожалуйста, выберите другое имя.", "The name %s is already used in the folder %s. Please choose a different name." => "Имя %s уже используется в папке %s. Пожалуйста выберите другое имя.", "Not a valid source" => "Неправильный источник", +"Server is not allowed to open URLs, please check the server configuration" => "Сервер не позволяет открывать URL-адреса, пожалуйста, проверьте настройки сервера", "Error while downloading %s to %s" => "Ошибка при загрузке %s в %s", "Error when creating the file" => "Ошибка при создании файла", "Folder name cannot be empty." => "Имя папки не может быть пустым.", @@ -36,6 +37,7 @@ $TRANSLATIONS = array( "{new_name} already exists" => "{new_name} уже существует", "Could not create file" => "Не удалось создать файл", "Could not create folder" => "Не удалось создать папку", +"Error fetching URL" => "Ошибка получения URL", "Share" => "Открыть доступ", "Delete permanently" => "Удалено навсегда", "Rename" => "Переименовать", diff --git a/apps/files/l10n/sl.php b/apps/files/l10n/sl.php index 421792f3218..037e5f6b6b0 100644 --- a/apps/files/l10n/sl.php +++ b/apps/files/l10n/sl.php @@ -6,6 +6,7 @@ $TRANSLATIONS = array( "File name must not contain \"/\". Please choose a different name." => "Ime datoteke ne sme vsebovati znaka \"/\". Določiti je treba drugo ime.", "The name %s is already used in the folder %s. Please choose a different name." => "Ime %s je že v mapi %s že v uporabi. Izbrati je treba drugo ime.", "Not a valid source" => "Vir ni veljaven", +"Server is not allowed to open URLs, please check the server configuration" => "Odpiranje naslovov URL preko strežnika ni dovoljeno. Preverite nastavitve strežnika.", "Error while downloading %s to %s" => "Napaka med prejemanjem %s v mapo %s", "Error when creating the file" => "Napaka med ustvarjanjem datoteke", "Folder name cannot be empty." => "Ime mape ne more biti prazna vrednost.", @@ -36,6 +37,7 @@ $TRANSLATIONS = array( "{new_name} already exists" => "{new_name} že obstaja", "Could not create file" => "Ni mogoče ustvariti datoteke", "Could not create folder" => "Ni mogoče ustvariti mape", +"Error fetching URL" => "Napaka pridobivanja naslova URL", "Share" => "Souporaba", "Delete permanently" => "Izbriši dokončno", "Rename" => "Preimenuj", diff --git a/apps/files/l10n/tr.php b/apps/files/l10n/tr.php index 9ede20634a4..a9e0935b74e 100644 --- a/apps/files/l10n/tr.php +++ b/apps/files/l10n/tr.php @@ -6,6 +6,7 @@ $TRANSLATIONS = array( "File name must not contain \"/\". Please choose a different name." => "Dosya adı \"/\" içermemelidir. Lütfen farklı bir isim seçin.", "The name %s is already used in the folder %s. Please choose a different name." => "%s ismi zaten %s klasöründe kullanılıyor. Lütfen farklı bir isim seçin.", "Not a valid source" => "Geçerli bir kaynak değil", +"Server is not allowed to open URLs, please check the server configuration" => "Sunucunun adresleri açma izi yok, lütfen sunucu yapılandırmasını denetleyin", "Error while downloading %s to %s" => "%s, %s içine indirilirken hata", "Error when creating the file" => "Dosya oluşturulurken hata", "Folder name cannot be empty." => "Klasör adı boş olamaz.", @@ -36,6 +37,7 @@ $TRANSLATIONS = array( "{new_name} already exists" => "{new_name} zaten mevcut", "Could not create file" => "Dosya oluşturulamadı", "Could not create folder" => "Klasör oluşturulamadı", +"Error fetching URL" => "Adres getirilirken hata", "Share" => "Paylaş", "Delete permanently" => "Kalıcı olarak sil", "Rename" => "İsim değiştir.", @@ -50,11 +52,11 @@ $TRANSLATIONS = array( "_Uploading %n file_::_Uploading %n files_" => array("%n dosya yükleniyor","%n dosya yükleniyor"), "'.' is an invalid file name." => "'.' geçersiz bir dosya adı.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Geçersiz isim, '\\', '/', '<', '>', ':', '\"', '|', '?' ve '*' karakterlerine izin verilmemektedir.", -"Your storage is full, files can not be updated or synced anymore!" => "Depolama alanınız dolu, artık dosyalar güncellenmeyecek yada senkronizasyon edilmeyecek.", +"Your storage is full, files can not be updated or synced anymore!" => "Depolama alanınız dolu, artık dosyalar güncellenmeyecek veya eşitlenmeyecek.", "Your storage is almost full ({usedSpacePercent}%)" => "Depolama alanınız neredeyse dolu ({usedSpacePercent}%)", "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "Şifreleme Uygulaması etkin ancak anahtarlarınız başlatılmamış. Lütfen oturumu kapatıp yeniden açın", "Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Şifreleme Uygulaması için geçersiz özel anahtar. Lütfen şifreli dosyalarınıza erişimi tekrar kazanabilmek için kişisel ayarlarınızdan özel anahtar parolanızı güncelleyin.", -"Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Şifreleme işlemi durduruldu ancak dosyalarınız şifreli. Dosyalarınızın şifresini kaldırmak için lütfen kişisel ayarlar kısmına geçiniz.", +"Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Şifreleme işlemi durduruldu ancak dosyalarınız şifreli. Dosyalarınızın şifresini kaldırmak için lütfen kişisel ayarlar kısmına geçin.", "Your download is being prepared. This might take some time if the files are big." => "İndirmeniz hazırlanıyor. Dosya büyük ise biraz zaman alabilir.", "Error moving file" => "Dosya taşıma hatası", "Error" => "Hata", @@ -68,9 +70,9 @@ $TRANSLATIONS = array( "Maximum upload size" => "Maksimum yükleme boyutu", "max. possible: " => "mümkün olan en fazla: ", "Needed for multi-file and folder downloads." => "Çoklu dosya ve dizin indirmesi için gerekli.", -"Enable ZIP-download" => "ZIP indirmeyi aktif et", +"Enable ZIP-download" => "ZIP indirmeyi etkinleştir", "0 is unlimited" => "0 limitsiz demektir", -"Maximum input size for ZIP files" => "ZIP dosyaları için en fazla girdi sayısı", +"Maximum input size for ZIP files" => "ZIP dosyaları için en fazla girdi boyutu", "Save" => "Kaydet", "New" => "Yeni", "New text file" => "Yeni metin dosyası", diff --git a/apps/files/templates/part.breadcrumb.php b/apps/files/templates/part.breadcrumb.php index 9db27eb9b29..90d07d4336c 100644 --- a/apps/files/templates/part.breadcrumb.php +++ b/apps/files/templates/part.breadcrumb.php @@ -1,10 +1,8 @@ -<?php if(count($_["breadcrumb"])):?> - <div class="crumb" data-dir=''> - <a href="<?php print_unescaped($_['baseURL']); ?>"> - <img src="<?php print_unescaped(OCP\image_path('core', 'places/home.svg'));?>" class="svg" /> - </a> - </div> -<?php endif;?> +<div class="crumb <?php if(!count($_["breadcrumb"])) p('last');?>" data-dir=''> + <a href="<?php print_unescaped($_['baseURL']); ?>"> + <img src="<?php print_unescaped(OCP\image_path('core', 'places/home.svg'));?>" class="svg" /> + </a> +</div> <?php for($i=0; $i<count($_["breadcrumb"]); $i++): $crumb = $_["breadcrumb"][$i]; $dir = \OCP\Util::encodePath($crumb["dir"]); ?> diff --git a/apps/files_encryption/hooks/hooks.php b/apps/files_encryption/hooks/hooks.php index 7b13ae2a1d0..09d5687e226 100644 --- a/apps/files_encryption/hooks/hooks.php +++ b/apps/files_encryption/hooks/hooks.php @@ -30,6 +30,9 @@ use OC\Files\Filesystem; */
class Hooks {
+ // file for which we want to rename the keys after the rename operation was successful
+ private static $renamedFiles = array();
+
/**
* @brief Startup encryption backend upon user login
* @note This method should never be called for users using client side encryption
@@ -480,6 +483,18 @@ class Hooks { }
/**
+ * @brief mark file as renamed so that we know the original source after the file was renamed
+ * @param array $params with the old path and the new path
+ */
+ public static function preRename($params) {
+ $util = new Util(new \OC_FilesystemView('/'), \OCP\User::getUser());
+ list($ownerOld, $pathOld) = $util->getUidAndFilename($params['oldpath']);
+ self::$renamedFiles[$params['oldpath']] = array(
+ 'uid' => $ownerOld,
+ 'path' => $pathOld);
+ }
+
+ /**
* @brief after a file is renamed, rename its keyfile and share-keys also fix the file size and fix also the sharing
* @param array with oldpath and newpath
*
@@ -501,19 +516,32 @@ class Hooks { $userId = \OCP\User::getUser();
$util = new Util($view, $userId);
+ if (isset(self::$renamedFiles[$params['oldpath']]['uid']) &&
+ isset(self::$renamedFiles[$params['oldpath']]['path'])) {
+ $ownerOld = self::$renamedFiles[$params['oldpath']]['uid'];
+ $pathOld = self::$renamedFiles[$params['oldpath']]['path'];
+ } else {
+ \OCP\Util::writeLog('Encryption library', "can't get path and owner from the file before it was renamed", \OCP\Util::ERROR);
+ return false;
+ }
+
+ list($ownerNew, $pathNew) = $util->getUidAndFilename($params['newpath']);
+
// Format paths to be relative to user files dir
- if ($util->isSystemWideMountPoint($params['oldpath'])) {
- $baseDir = 'files_encryption/';
- $oldKeyfilePath = $baseDir . 'keyfiles/' . $params['oldpath'];
+ if ($util->isSystemWideMountPoint($pathOld)) {
+ $oldKeyfilePath = 'files_encryption/keyfiles/' . $pathOld;
+ $oldShareKeyPath = 'files_encryption/share-keys/' . $pathOld;
} else {
- $baseDir = $userId . '/' . 'files_encryption/';
- $oldKeyfilePath = $baseDir . 'keyfiles/' . $params['oldpath'];
+ $oldKeyfilePath = $ownerOld . '/' . 'files_encryption/keyfiles/' . $pathOld;
+ $oldShareKeyPath = $ownerOld . '/' . 'files_encryption/share-keys/' . $pathOld;
}
- if ($util->isSystemWideMountPoint($params['newpath'])) {
- $newKeyfilePath = $baseDir . 'keyfiles/' . $params['newpath'];
+ if ($util->isSystemWideMountPoint($pathNew)) {
+ $newKeyfilePath = 'files_encryption/keyfiles/' . $pathNew;
+ $newShareKeyPath = 'files_encryption/share-keys/' . $pathNew;
} else {
- $newKeyfilePath = $baseDir . 'keyfiles/' . $params['newpath'];
+ $newKeyfilePath = $ownerNew . '/files_encryption/keyfiles/' . $pathNew;
+ $newShareKeyPath = $ownerNew . '/files_encryption/share-keys/' . $pathNew;
}
// add key ext if this is not an folder
@@ -522,11 +550,11 @@ class Hooks { $newKeyfilePath .= '.key';
// handle share-keys
- $localKeyPath = $view->getLocalFile($baseDir . 'share-keys/' . $params['oldpath']);
+ $localKeyPath = $view->getLocalFile($oldShareKeyPath);
$escapedPath = Helper::escapeGlobPattern($localKeyPath);
$matches = glob($escapedPath . '*.shareKey');
foreach ($matches as $src) {
- $dst = \OC\Files\Filesystem::normalizePath(str_replace($params['oldpath'], $params['newpath'], $src));
+ $dst = \OC\Files\Filesystem::normalizePath(str_replace($pathOld, $pathNew, $src));
// create destination folder if not exists
if (!file_exists(dirname($dst))) {
@@ -538,15 +566,13 @@ class Hooks { } else {
// handle share-keys folders
- $oldShareKeyfilePath = $baseDir . 'share-keys/' . $params['oldpath'];
- $newShareKeyfilePath = $baseDir . 'share-keys/' . $params['newpath'];
// create destination folder if not exists
- if (!$view->file_exists(dirname($newShareKeyfilePath))) {
- $view->mkdir(dirname($newShareKeyfilePath), 0750, true);
+ if (!$view->file_exists(dirname($newShareKeyPath))) {
+ $view->mkdir(dirname($newShareKeyPath), 0750, true);
}
- $view->rename($oldShareKeyfilePath, $newShareKeyfilePath);
+ $view->rename($oldShareKeyPath, $newShareKeyPath);
}
// Rename keyfile so it isn't orphaned
@@ -561,18 +587,17 @@ class Hooks { }
// build the path to the file
- $newPath = '/' . $userId . '/files' . $params['newpath'];
- $newPathRelative = $params['newpath'];
+ $newPath = '/' . $ownerNew . '/files' . $pathNew;
if ($util->fixFileSize($newPath)) {
// get sharing app state
$sharingEnabled = \OCP\Share::isEnabled();
// get users
- $usersSharing = $util->getSharingUsersArray($sharingEnabled, $newPathRelative);
+ $usersSharing = $util->getSharingUsersArray($sharingEnabled, $pathNew);
// update sharing-keys
- $util->setSharedFileKeyfiles($session, $usersSharing, $newPathRelative);
+ $util->setSharedFileKeyfiles($session, $usersSharing, $pathNew);
}
\OC_FileProxy::$enabled = $proxyStatus;
diff --git a/apps/files_encryption/l10n/da.php b/apps/files_encryption/l10n/da.php index 9d307f1064d..9e4290534c0 100644 --- a/apps/files_encryption/l10n/da.php +++ b/apps/files_encryption/l10n/da.php @@ -8,19 +8,27 @@ $TRANSLATIONS = array( "Could not change the password. Maybe the old password was not correct." => "Kunne ikke ændre kodeordet. Måske var det gamle kodeord ikke korrekt.", "Private key password successfully updated." => "Privat nøgle kodeord succesfuldt opdateret.", "Could not update the private key password. Maybe the old password was not correct." => "Kunne ikke opdatere det private nøgle kodeord-. Måske var det gamle kodeord forkert.", +"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." => "Krypteringsprogrammet er ikke igangsat. Det kan skyldes at krypteringsprogrammet er blevet genaktiveret under din session. Prøv at logge ud og ind igen for at aktivere krypteringsprogrammet. ", +"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Din private nøgle er ikke gyldig. Sandsynligvis er dit kodeord blevet ændret uden for %s (f.eks dit firmas adressebog). Du kan opdatere din private nøglekode i dine personlige indstillinger for at genskabe adgang til dine krypterede filer.", +"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." => "Kan ikke kryptere denne fil, sandsynligvis fordi felen er delt. Bed venligst filens ejer om at dele den med dig på ny.", +"Unknown error please check your system settings or contact your administrator" => "Ukendt fejl. Kontroller venligst dit system eller kontakt din administrator", "Missing requirements." => "Manglende betingelser.", "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Sørg for at PHP 5.3.3 eller nyere er installeret og at OpenSSL sammen med PHP-udvidelsen er aktiveret og korrekt konfigureret. Indtil videre er krypteringsprogrammet deaktiveret.", "Following users are not set up for encryption:" => "Følgende brugere er ikke sat op til kryptering:", +"Initial encryption started... This can take some time. Please wait." => "Førstegangskryptering er påbegyndt... Dette kan tage nogen tid. Vent venligst.", "Saving..." => "Gemmer...", +"Go directly to your " => "Gå direkte til din ", "personal settings" => "Personlige indstillinger", "Encryption" => "Kryptering", "Enable recovery key (allow to recover users files in case of password loss):" => "Aktiver gendannelsesnøgle (Tillad gendannelse af brugerfiler i tilfælde af tab af kodeord):", "Recovery key password" => "Gendannelsesnøgle kodeord", +"Repeat Recovery key password" => "Gentag gendannelse af nøglekoden", "Enabled" => "Aktiveret", "Disabled" => "Deaktiveret", "Change recovery key password:" => "Skift gendannelsesnøgle kodeord:", "Old Recovery key password" => "Gammel Gendannelsesnøgle kodeord", "New Recovery key password" => "Ny Gendannelsesnøgle kodeord", +"Repeat New Recovery key password" => "Gentag dannelse af ny gendannaleses nøglekode", "Change Password" => "Skift Kodeord", "Your private key password no longer match your log-in password:" => "Dit private nøgle kodeord stemmer ikke længere overens med dit login kodeord:", "Set your old private key password to your current log-in password." => "Sæt dit gamle private nøgle kodeord til at være dit nuværende login kodeord. ", diff --git a/apps/files_encryption/l10n/el.php b/apps/files_encryption/l10n/el.php index 6b21122027a..22c1095e284 100644 --- a/apps/files_encryption/l10n/el.php +++ b/apps/files_encryption/l10n/el.php @@ -8,20 +8,30 @@ $TRANSLATIONS = array( "Could not change the password. Maybe the old password was not correct." => "Αποτυχία αλλαγής κωδικού ίσως ο παλιός κωδικός να μην ήταν σωστός.", "Private key password successfully updated." => "Το Προσωπικό κλειδί πρόσβασης ενημερώθηκε επιτυχώς", "Could not update the private key password. Maybe the old password was not correct." => "Αποτυχία ενημέρωσης του κωδικού για το προσωπικό κλειδί. Ενδεχομένως ο παλιός κωδικός δεν ήταν σωστός.", +"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." => "Η εφαρμογή κρυπτογράφησης δεν έχει εκκινήσει! Ίσως η εφαρμογή κρυπτογράφησης επανενεργοποιήθηκε κατά τη διάρκεια της τρέχουσας σύνδεσής σας. Παρακαλώ προσπαθήστε να αποσυνδεθείτε και να ξανασυνδεθείτε για να εκκινήσετε την εφαρμογή κρυπτογράφησης.", +"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Το προσωπικό σας κλειδί δεν είναι έγκυρο! Πιθανόν ο κωδικός σας να άλλαξε έξω από το %s (π.χ. τη λίστα διευθύνσεων της εταιρείας σας). Μπορείτε να ενημερώσετε το προσωπικό σας κλειδί επαναφοράς κωδικού στις προσωπικές σας ρυθμίσεις για να επανακτήσετε πρόσβαση στα κρυπτογραφημένα σας αρχεία.", +"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." => "Δεν ήταν δυνατό να αποκρυπτογραφηθεί αυτό το αρχείο, πιθανόν πρόκειται για κοινόχρηστο αρχείο. Παρακαλώ ζητήστε από τον ιδιοκτήτη του αρχείου να το ξαναμοιραστεί μαζί σας.", "Unknown error please check your system settings or contact your administrator" => "Άγνωστο σφάλμα, παρακαλώ ελέγξτε τις ρυθμίσεις συστήματος ή επικοινωνήστε με τον διαχειριστή σας ", "Missing requirements." => "Προαπαιτούμενα που απουσιάζουν.", "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Παρακαλώ επιβεβαιώστε ότι η PHP 5.3.3 ή νεότερη είναι εγκατεστημένη και ότι το OpenSSL μαζί με το PHP extension είναι ενεργοποιήμένο και έχει ρυθμιστεί σωστά. Προς το παρόν, η εφαρμογή κρυπτογράφησης είναι απενεργοποιημένη.", "Following users are not set up for encryption:" => "Οι κάτωθι χρήστες δεν έχουν ρυθμιστεί για κρυπογράφηση:", +"Initial encryption started... This can take some time. Please wait." => "Η αρχική κρυπτογράφηση άρχισε... Αυτό μπορεί να πάρει κάποια ώρα. Παρακαλώ περιμένετε.", "Saving..." => "Γίνεται αποθήκευση...", "Go directly to your " => "Πηγαίνε απευθείας στο ", "personal settings" => "προσωπικές ρυθμίσεις", "Encryption" => "Κρυπτογράφηση", +"Enable recovery key (allow to recover users files in case of password loss):" => "Ενεργοποίηση κλειδιού ανάκτησης (επιτρέψτε την ανάκτηση αρχείων χρηστών σε περίπτωση απώλειας κωδικού):", "Recovery key password" => "Επαναφορά κωδικού κλειδιού", +"Repeat Recovery key password" => "Επαναλάβετε το κλειδί επαναφοράς κωδικού", "Enabled" => "Ενεργοποιημένο", "Disabled" => "Απενεργοποιημένο", +"Change recovery key password:" => "Αλλαγή κλειδιού επαναφοράς κωδικού:", +"Old Recovery key password" => "Παλιό κλειδί επαναφοράς κωδικού", "New Recovery key password" => "Νέο κλειδί επαναφοράς κωδικού", +"Repeat New Recovery key password" => "Επαναλάβετε νέο κλειδί επαναφοράς κωδικού", "Change Password" => "Αλλαγή Κωδικού Πρόσβασης", "Your private key password no longer match your log-in password:" => "Ο κωδικός του προσωπικού κλειδιού δεν ταιριάζει πλέον με τον κωδικό σύνδεσής σας:", +"Set your old private key password to your current log-in password." => "Ορίστε το παλιό σας προσωπικό κλειδί ως τον τρέχων κωδικό πρόσβασης.", " If you don't remember your old password you can ask your administrator to recover your files." => "Εάν δεν θυμάστε τον παλιό σας κωδικό μπορείτε να ζητήσετε από τον διαχειριστή σας να επανακτήσει τα αρχεία σας.", "Old log-in password" => "Παλαιό συνθηματικό εισόδου", "Current log-in password" => "Τρέχον συνθηματικό πρόσβασης", diff --git a/apps/files_encryption/l10n/es_MX.php b/apps/files_encryption/l10n/es_MX.php new file mode 100644 index 00000000000..3906e3cacbe --- /dev/null +++ b/apps/files_encryption/l10n/es_MX.php @@ -0,0 +1,44 @@ +<?php +$TRANSLATIONS = array( +"Recovery key successfully enabled" => "Se ha habilitado la recuperación de archivos", +"Could not enable recovery key. Please check your recovery key password!" => "No se pudo habilitar la clave de recuperación. Por favor compruebe su contraseña.", +"Recovery key successfully disabled" => "Clave de recuperación deshabilitada", +"Could not disable recovery key. Please check your recovery key password!" => "No se pudo deshabilitar la clave de recuperación. Por favor compruebe su contraseña!", +"Password successfully changed." => "Su contraseña ha sido cambiada", +"Could not change the password. Maybe the old password was not correct." => "No se pudo cambiar la contraseña. Compruebe que la contraseña actual sea correcta.", +"Private key password successfully updated." => "Contraseña de clave privada actualizada con éxito.", +"Could not update the private key password. Maybe the old password was not correct." => "No se pudo cambiar la contraseña. Puede que la contraseña antigua no sea correcta.", +"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." => "¡La aplicación de cifrado no ha sido inicializada! Quizá fue restablecida durante tu sesión. Por favor intenta cerrar la sesión y volver a iniciarla para inicializar la aplicación de cifrado.", +"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "¡Su clave privada no es válida! Tal vez su contraseña ha sido cambiada desde fuera. de %s (Ej:Su directorio corporativo). Puede actualizar la contraseña de su clave privada en sus opciones personales para recuperar el acceso a sus archivos.", +"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." => "No fue posible descifrar este archivo, probablemente se trate de un archivo compartido. Solicite al propietario del mismo que vuelva a compartirlo con usted.", +"Unknown error please check your system settings or contact your administrator" => "Error desconocido. Verifique la configuración de su sistema o póngase en contacto con su administrador", +"Missing requirements." => "Requisitos incompletos.", +"Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Por favor, asegúrese de que PHP 5.3.3 o posterior está instalado y que la extensión OpenSSL de PHP está habilitada y configurada correctamente. Por el momento, la aplicación de cifrado ha sido deshabilitada.", +"Following users are not set up for encryption:" => "Los siguientes usuarios no han sido configurados para el cifrado:", +"Initial encryption started... This can take some time. Please wait." => "Encriptación iniciada... Esto puede tomar un tiempo. Por favor espere.", +"Saving..." => "Guardando...", +"Go directly to your " => "Ir directamente a su", +"personal settings" => "opciones personales", +"Encryption" => "Cifrado", +"Enable recovery key (allow to recover users files in case of password loss):" => "Habilitar la clave de recuperación (permite recuperar los archivos del usuario en caso de pérdida de la contraseña);", +"Recovery key password" => "Contraseña de clave de recuperación", +"Repeat Recovery key password" => "Repite la contraseña de clave de recuperación", +"Enabled" => "Habilitar", +"Disabled" => "Deshabilitado", +"Change recovery key password:" => "Cambiar la contraseña de la clave de recuperación", +"Old Recovery key password" => "Antigua clave de recuperación", +"New Recovery key password" => "Nueva clave de recuperación", +"Repeat New Recovery key password" => "Repetir la nueva clave de recuperación", +"Change Password" => "Cambiar contraseña", +"Your private key password no longer match your log-in password:" => "Su contraseña de clave privada ya no coincide con su contraseña de acceso:", +"Set your old private key password to your current log-in password." => "Establecer la contraseña de su antigua clave privada a su contraseña actual de acceso.", +" If you don't remember your old password you can ask your administrator to recover your files." => "Si no recuerda su antigua contraseña puede pedir a su administrador que le recupere sus archivos.", +"Old log-in password" => "Contraseña de acceso antigua", +"Current log-in password" => "Contraseña de acceso actual", +"Update Private Key Password" => "Actualizar Contraseña de Clave Privada", +"Enable password recovery:" => "Habilitar la recuperación de contraseña:", +"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" => "Habilitar esta opción le permitirá volver a tener acceso a sus archivos cifrados en caso de pérdida de contraseña", +"File recovery settings updated" => "Opciones de recuperación de archivos actualizada", +"Could not update file recovery" => "No se pudo actualizar la recuperación de archivos" +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_encryption/l10n/hu_HU.php b/apps/files_encryption/l10n/hu_HU.php index a8e5a009539..163011ff80b 100644 --- a/apps/files_encryption/l10n/hu_HU.php +++ b/apps/files_encryption/l10n/hu_HU.php @@ -1,38 +1,44 @@ <?php $TRANSLATIONS = array( -"Recovery key successfully enabled" => "Visszaállítási kulcs sikeresen bekapcsolva", -"Could not enable recovery key. Please check your recovery key password!" => "Visszaállítási kulcsot nem lehetett engedélyezni. Ellenörizd a visszaállítási kulcsod jelszavát!", -"Recovery key successfully disabled" => "Visszaállítási kulcs sikeresen kikapcsolva", -"Could not disable recovery key. Please check your recovery key password!" => "Visszaállítási kulcsot nem lehetett kikapcsolni. Ellenörizd a visszaállítási kulcsod jelszavát!", -"Password successfully changed." => "Jelszó sikeresen megváltoztatva.", +"Recovery key successfully enabled" => "A helyreállítási kulcs sikeresen bekapcsolva", +"Could not enable recovery key. Please check your recovery key password!" => "A helyreállítási kulcsot nem lehetett engedélyezni. Ellenőrizze a helyreállítási kulcsa jelszavát!", +"Recovery key successfully disabled" => "A helyreállítási kulcs sikeresen kikapcsolva", +"Could not disable recovery key. Please check your recovery key password!" => "A helyreállítási kulcsot nem lehetett kikapcsolni. Ellenőrizze a helyreállítási kulcsa jelszavát!", +"Password successfully changed." => "A jelszót sikeresen megváltoztattuk.", "Could not change the password. Maybe the old password was not correct." => "A jelszót nem lehet megváltoztatni! Lehet, hogy hibás volt a régi jelszó.", -"Private key password successfully updated." => "Privát kulcs jelszava sikeresen frissült.", -"Could not update the private key password. Maybe the old password was not correct." => "A privát kulcs jelszavát nem lehetet frissiteni. Lehet, hogy hibás volt a régi jelszó.", -"Unknown error please check your system settings or contact your administrator" => "Ismeretlen hiba. Ellenörizd a rendszer beállításokat vagy keresd meg az adminisztrátort", +"Private key password successfully updated." => "A személyes kulcsának jelszava frissítésre került.", +"Could not update the private key password. Maybe the old password was not correct." => "A személyes kulcsa jelszavát nem lehetett frissíteni. Lehet, hogy hibás volt a régi jelszó.", +"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." => "A titkosítási modul nincs elindítva! Talán a munkafolyamat közben került engedélyezésre. Kérjük jelentkezzen ki majd ismét jelentkezzen be, hogy a titkosítási modul megfelelően elinduljon!", +"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Az állományok titkosításához használt titkos kulcsa érvénytelen. Valószínűleg a %s rendszeren kívül változtatta meg a jelszavát (pl. a munkahelyi címtárban). A személyes beállításoknál frissítheti a titkos kulcsát, hogy ismét elérhesse a titkosított állományait.", +"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." => "Az állományt nem sikerült dekódolni, valószínűleg ez egy megosztott fájl. Kérje meg az állomány tulajdonosát, hogy újra ossza meg Önnel ezt az állományt!", +"Unknown error please check your system settings or contact your administrator" => "Ismeretlen hiba. Ellenőrizze a rendszer beállításait vagy forduljon a rendszergazdához!", "Missing requirements." => "Hiányzó követelmények.", -"Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Kérlek győződj meg arról, hogy PHP 5.3.3 vagy annál frissebb van telepítve, valamint a PHP-hez tartozó OpenSSL bővítmény be van-e kapcsolva és az helyesen van-e konfigurálva! Ki lett kapcsolva ideiglenesen a titkosító alkalmazás.", +"Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Kérem gondoskodjon arról, hogy PHP 5.3.3 vagy annál frissebb legyen telepítve, továbbá az OpenSSL a megfelelő PHP-bővítménnyel együtt rendelkezésre álljon és helyesen legyen konfigurálva! A titkosító modul egyelőre kikapcsolásra került.", "Following users are not set up for encryption:" => "A következő felhasználók nem állították be a titkosítást:", -"Initial encryption started... This can take some time. Please wait." => "Első titkosítás elkezdődött... Ez eltarhat hosszabb ideig. Kérlek várj.", +"Initial encryption started... This can take some time. Please wait." => "A titkosítási folyamat megkezdődött... Ez hosszabb ideig is eltarthat. Kérem várjon.", "Saving..." => "Mentés...", -"Go directly to your " => "Rövid úton a dolgaidhoz", +"Go directly to your " => "Ugrás ide:", "personal settings" => "személyes beállítások", "Encryption" => "Titkosítás", +"Enable recovery key (allow to recover users files in case of password loss):" => "A helyreállítási kulcs beállítása (lehetővé teszi a felhasználók állományainak visszaállítását, ha elfelejtik a jelszavukat):", "Recovery key password" => "A helyreállítási kulcs jelszava", -"Repeat Recovery key password" => "Ismételd a Helyreállítási kulcs jelszavát", +"Repeat Recovery key password" => "Ismételje meg a helyreállítási kulcs jelszavát", "Enabled" => "Bekapcsolva", "Disabled" => "Kikapcsolva", "Change recovery key password:" => "A helyreállítási kulcs jelszavának módosítása:", "Old Recovery key password" => "Régi Helyreállítási Kulcs Jelszava", "New Recovery key password" => "Új Helyreállítási kulcs jelszava", -"Repeat New Recovery key password" => "Ismételd az Új Helyreállítási kulcs jelszavát", +"Repeat New Recovery key password" => "Ismételje meg az új helyreállítási kulcs jelszavát", "Change Password" => "Jelszó megváltoztatása", -"Your private key password no longer match your log-in password:" => "A privát kulcs jelszavad mostantól nem azonos a belépési jelszavaddal:", -"Set your old private key password to your current log-in password." => "Állítsd vissza a régi privát kulcs jelszavát a jelenlegi bejelentkezési jelszavadra.", -" If you don't remember your old password you can ask your administrator to recover your files." => "Ha nem emlékszel a régi jelszavadra akkor keresed meg a rendszeradminisztátort a file-jaid visszaállításával kapcsolatban.", +"Your private key password no longer match your log-in password:" => "A személyes kulcs jelszava mostantól nem azonos a belépési jelszavával:", +"Set your old private key password to your current log-in password." => "Állítsuk be a személyes kulcs jelszavát a jelenlegi bejelentkezési jelszavunkra.", +" If you don't remember your old password you can ask your administrator to recover your files." => "Ha nem emlékszik a régi jelszavára akkor megkérheti a rendszergazdát, hogy állítsa vissza az állományait.", "Old log-in password" => "Régi bejelentkezési jelszó", "Current log-in password" => "Jelenlegi bejelentkezési jelszó", -"Update Private Key Password" => "Privát kulcs jelszó frissítése", +"Update Private Key Password" => "A személyest kulcs jelszó frissítése", "Enable password recovery:" => "Jelszó-visszaállítás bekapcsolása", -"File recovery settings updated" => "File helyreállítási beállításai frissültek" +"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" => "Ez az opció lehetővé teszi, hogy a titkosított állományok tartalmát visszanyerjük abban az esetben, ha elfelejti a jelszavát", +"File recovery settings updated" => "A fájlhelyreállítási beállítások frissültek", +"Could not update file recovery" => "A fájlhelyreállítás nem frissíthető" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_encryption/l10n/ko.php b/apps/files_encryption/l10n/ko.php index cf06136c9b6..d91e861ca5d 100644 --- a/apps/files_encryption/l10n/ko.php +++ b/apps/files_encryption/l10n/ko.php @@ -1,26 +1,44 @@ <?php $TRANSLATIONS = array( -"Recovery key successfully enabled" => "복구키가 성공적으로 활성화 되었습니다", -"Could not enable recovery key. Please check your recovery key password!" => "복구키를 활성화 할수 없습니다. 복구키의 비밀번호를 확인해주세요!", -"Recovery key successfully disabled" => "복구키가 성공적으로 비활성화 되었습니다", -"Could not disable recovery key. Please check your recovery key password!" => "복구키를 비활성화 할수 없습니다. 복구키의 비밀번호를 확인해주세요!", +"Recovery key successfully enabled" => "복구 키가 성공적으로 활성화되었습니다", +"Could not enable recovery key. Please check your recovery key password!" => "복구 키를 활성화 할 수 없습니다. 복구 키의 암호를 확인해 주세요!", +"Recovery key successfully disabled" => "복구 키가 성공적으로 비활성화 되었습니다", +"Could not disable recovery key. Please check your recovery key password!" => "복구 키를 비활성화 할 수 없습니다. 복구 키의 암호를 확인해주세요!", "Password successfully changed." => "암호가 성공적으로 변경되었습니다", -"Could not change the password. Maybe the old password was not correct." => "암호를 변경할수 없습니다. 아마도 예전 암호가 정확하지 않은것 같습니다.", -"Private key password successfully updated." => "개인키 암호가 성공적으로 업데이트 됨.", +"Could not change the password. Maybe the old password was not correct." => "암호를 변경할 수 없습니다. 예전 암호가 정확하지 않은 것 같습니다.", +"Private key password successfully updated." => "개인 키 암호가 성공적으로 업데이트 됨.", +"Could not update the private key password. Maybe the old password was not correct." => "개인 키 암호를 업데이트할 수 없습니다. 이전 암호가 올바르지 않은 것 같습니다.", +"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." => "암호화 앱이 초기화되지 않았습니다! 암호화 앱이 다시 활성화된 것 같습니다. 암호화 앱을 초기화하려면 로그아웃했다 다시 로그인하십시오.", +"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "개인 키가 올바르지 않습니다! 암호가 %s(예: 회사 디렉터리) 외부에서 변경된 것 같습니다. 암호화된 파일에 다시 접근하려면 개인 설정에서 개인 키 암호를 수정하십시오.", +"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." => "이 파일을 복호화할 수 없습니다. 공유된 파일일 수도 있습니다. 파일 소유자에게 공유를 다시 요청하십시오.", +"Unknown error please check your system settings or contact your administrator" => "알 수 없는 오류. 시스템 설정을 확인하거나 관리자에게 문의하십시오.", +"Missing requirements." => "요구 사항이 부족합니다.", +"Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "PHP 5.3.3 이상 설치 여부, PHP의 OpenSSL 확장 기능 활성화 및 설정 여부를 확인하십시오. 암호화 앱이 비활성화 되었습니다.", +"Following users are not set up for encryption:" => "다음 사용자는 암호화를 사용할 수 없습니다:", +"Initial encryption started... This can take some time. Please wait." => "초기 암호화가 시작되었습니다... 시간이 걸릴 수도 있으니 기다려 주십시오.", "Saving..." => "저장 중...", +"Go directly to your " => "다음으로 바로 가기: ", "personal settings" => "개인 설정", "Encryption" => "암호화", -"Recovery key password" => "키 비밀번호 복구", +"Enable recovery key (allow to recover users files in case of password loss):" => "복구 키 사용 (암호를 잊었을 때 파일을 복구할 수 있도록 함):", +"Recovery key password" => "복구 키 암호", +"Repeat Recovery key password" => "복구 키 암호 재입력", "Enabled" => "활성화", "Disabled" => "비활성화", -"Change recovery key password:" => "복구 키 비밀번호 변경", -"Old Recovery key password" => "예전 복구 키 비밀번호", -"New Recovery key password" => "새 복구 키 비밀번호", +"Change recovery key password:" => "복구 키 암호 변경:", +"Old Recovery key password" => "이전 복구 키 암호", +"New Recovery key password" => "새 복구 키 암호", +"Repeat New Recovery key password" => "새 복구 키 암호 재입력", "Change Password" => "암호 변경", -"Old log-in password" => "예전 로그인 암호", +"Your private key password no longer match your log-in password:" => "개인 키 암호와 로그인 암호가 일치하지 않습니다:", +"Set your old private key password to your current log-in password." => "이전 개인 키 암호를 현재 로그인 암호로 설정하십시오.", +" If you don't remember your old password you can ask your administrator to recover your files." => " 이전 암호가 기억나지 않으면 시스템 관리자에게 파일 복구를 요청하십시오.", +"Old log-in password" => "이전 로그인 암호", "Current log-in password" => "현재 로그인 암호", "Update Private Key Password" => "개인 키 암호 업데이트", +"Enable password recovery:" => "암호 복구 사용:", +"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" => "이 옵션을 사용하면 암호를 잊었을 때 암호화된 파일에 다시 접근할 수 있습니다", "File recovery settings updated" => "파일 복구 설정 업데이트됨", -"Could not update file recovery" => "파일 복구를 업데이트 할수 없습니다" +"Could not update file recovery" => "파일 복구를 업데이트할 수 없습니다" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_encryption/lib/helper.php b/apps/files_encryption/lib/helper.php index 17bcac5c585..5dcb05fa196 100755 --- a/apps/files_encryption/lib/helper.php +++ b/apps/files_encryption/lib/helper.php @@ -29,6 +29,8 @@ namespace OCA\Encryption; */ class Helper { + private static $tmpFileMapping; // Map tmp files to files in data/user/files + /** * @brief register share related hooks * @@ -59,6 +61,7 @@ class Helper { */ public static function registerFilesystemHooks() { + \OCP\Util::connectHook('OC_Filesystem', 'rename', 'OCA\Encryption\Hooks', 'preRename'); \OCP\Util::connectHook('OC_Filesystem', 'post_rename', 'OCA\Encryption\Hooks', 'postRename'); } @@ -274,7 +277,7 @@ class Helper { $split = explode('/', $trimmed); // it is not a file relative to data/user/files - if (count($split) < 2 || $split[1] !== 'files') { + if (count($split) < 2 || ($split[1] !== 'files' && $split[1] !== 'cache')) { return false; } @@ -423,5 +426,27 @@ class Helper { public static function escapeGlobPattern($path) { return preg_replace('/(\*|\?|\[)/', '[$1]', $path); } + + /** + * @brief remember from which file the tmp file (getLocalFile() call) was created + * @param string $tmpFile path of tmp file + * @param string $originalFile path of the original file relative to data/ + */ + public static function addTmpFileToMapper($tmpFile, $originalFile) { + self::$tmpFileMapping[$tmpFile] = $originalFile; + } + + /** + * @brief get the path of the original file + * @param string $tmpFile path of the tmp file + * @return mixed path of the original file or false + */ + public static function getPathFromTmpFile($tmpFile) { + if (isset(self::$tmpFileMapping[$tmpFile])) { + return self::$tmpFileMapping[$tmpFile]; + } + + return false; + } } diff --git a/apps/files_encryption/lib/proxy.php b/apps/files_encryption/lib/proxy.php index 5ba3bfa784f..41f352d853a 100644 --- a/apps/files_encryption/lib/proxy.php +++ b/apps/files_encryption/lib/proxy.php @@ -114,6 +114,15 @@ class Proxy extends \OC_FileProxy { // get encrypted content $data = $view->file_get_contents($tmpPath); + // update file cache for target file + $tmpFileInfo = $view->getFileInfo($tmpPath); + $fileInfo = $view->getFileInfo($path); + if (is_array($fileInfo) && is_array($tmpFileInfo)) { + $fileInfo['encrypted'] = true; + $fileInfo['unencrypted_size'] = $tmpFileInfo['size']; + $view->putFileInfo($path, $fileInfo); + } + // remove our temp file $view->deleteAll('/' . \OCP\User::getUser() . '/cache/' . $cacheFolder); @@ -182,8 +191,11 @@ class Proxy extends \OC_FileProxy { */ public function preUnlink($path) { - // let the trashbin handle this - if (\OCP\App::isEnabled('files_trashbin')) { + $relPath = Helper::stripUserFilesPath($path); + + // skip this method if the trash bin is enabled or if we delete a file + // outside of /data/user/files + if (\OCP\App::isEnabled('files_trashbin') || $relPath === false) { return true; } @@ -197,10 +209,7 @@ class Proxy extends \OC_FileProxy { $util = new Util($view, $userId); - // get relative path - $relativePath = \OCA\Encryption\Helper::stripUserFilesPath($path); - - list($owner, $ownerPath) = $util->getUidAndFilename($relativePath); + list($owner, $ownerPath) = $util->getUidAndFilename($relPath); // Delete keyfile & shareKey so it isn't orphaned if (!Keymanager::deleteFileKey($view, $ownerPath)) { diff --git a/apps/files_encryption/lib/stream.php b/apps/files_encryption/lib/stream.php index 7a37d2200a4..b3bf34ddb82 100644 --- a/apps/files_encryption/lib/stream.php +++ b/apps/files_encryption/lib/stream.php @@ -64,6 +64,9 @@ class Stream { private $publicKey; private $encKeyfile; private $newFile; // helper var, we only need to write the keyfile for new files + private $isLocalTmpFile = false; // do we operate on a local tmp file + private $localTmpFile; // path of local tmp file + /** * @var \OC\Files\View */ @@ -91,13 +94,18 @@ class Stream { $this->rootView = new \OC_FilesystemView('/'); } - $this->session = new \OCA\Encryption\Session($this->rootView); $this->privateKey = $this->session->getPrivateKey(); - // rawPath is relative to the data directory - $this->rawPath = \OC\Files\Filesystem::normalizePath(str_replace('crypt://', '', $path)); + $normalizedPath = \OC\Files\Filesystem::normalizePath(str_replace('crypt://', '', $path)); + if ($originalFile = Helper::getPathFromTmpFile($normalizedPath)) { + $this->rawPath = $originalFile; + $this->isLocalTmpFile = true; + $this->localTmpFile = $normalizedPath; + } else { + $this->rawPath = $normalizedPath; + } $this->userId = Helper::getUser($this->rawPath); @@ -141,10 +149,14 @@ class Stream { \OCA\Encryption\Helper::redirectToErrorPage($this->session); } - $this->size = $this->rootView->filesize($this->rawPath, $mode); + $this->size = $this->rootView->filesize($this->rawPath); } - $this->handle = $this->rootView->fopen($this->rawPath, $mode); + if ($this->isLocalTmpFile) { + $this->handle = fopen($this->localTmpFile, $mode); + } else { + $this->handle = $this->rootView->fopen($this->rawPath, $mode); + } \OC_FileProxy::$enabled = $proxyStatus; @@ -164,14 +176,25 @@ class Stream { } /** + * @brief Returns the current position of the file pointer + * @return int position of the file pointer + */ + public function stream_tell() { + return ftell($this->handle); + } + + /** * @param $offset * @param int $whence + * @return bool true if fseek was successful, otherwise false */ public function stream_seek($offset, $whence = SEEK_SET) { $this->flush(); - fseek($this->handle, $offset, $whence); + // this wrapper needs to return "true" for success. + // the fseek call itself returns 0 on succeess + return !fseek($this->handle, $offset, $whence); } @@ -477,7 +500,7 @@ class Stream { if ($this->privateKey === false) { // cleanup - if ($this->meta['mode'] !== 'r' && $this->meta['mode'] !== 'rb') { + if ($this->meta['mode'] !== 'r' && $this->meta['mode'] !== 'rb' && !$this->isLocalTmpFile) { // Disable encryption proxy to prevent recursive calls $proxyStatus = \OC_FileProxy::$enabled; @@ -498,6 +521,7 @@ class Stream { if ( $this->meta['mode'] !== 'r' && $this->meta['mode'] !== 'rb' && + $this->isLocalTmpFile === false && $this->size > 0 && $this->unencryptedSize > 0 ) { diff --git a/apps/files_encryption/lib/util.php b/apps/files_encryption/lib/util.php index bf7c49504a2..8a5dfabeec1 100644 --- a/apps/files_encryption/lib/util.php +++ b/apps/files_encryption/lib/util.php @@ -241,11 +241,9 @@ class Util { if (\OCP\DB::isError($result)) { \OCP\Util::writeLog('Encryption library', \OC_DB::getErrorMessage($result), \OCP\Util::ERROR); } else { - if ($result->numRows() > 0) { - $row = $result->fetchRow(); - if (isset($row['recovery_enabled'])) { - $recoveryEnabled[] = $row['recovery_enabled']; - } + $row = $result->fetchRow(); + if ($row && isset($row['recovery_enabled'])) { + $recoveryEnabled[] = $row['recovery_enabled']; } } @@ -289,7 +287,7 @@ class Util { $sql = 'UPDATE `*PREFIX*encryption` SET `recovery_enabled` = ? WHERE `uid` = ?'; $args = array( - $enabled, + $enabled ? '1' : '0', $this->userId ); @@ -415,69 +413,42 @@ class Util { } /** - * @brief Fetch the last lines of a file efficiently - * @note Safe to use on large files; does not read entire file to memory - * @note Derivative of http://tekkie.flashbit.net/php/tail-functionality-in-php - */ - public function tail($filename, $numLines) { - - \OC_FileProxy::$enabled = false; - - $text = ''; - $pos = -1; - $handle = $this->view->fopen($filename, 'r'); - - while ($numLines > 0) { - - --$pos; - - if (fseek($handle, $pos, SEEK_END) !== 0) { - - rewind($handle); - $numLines = 0; - - } elseif (fgetc($handle) === "\n") { - - --$numLines; - - } - - $block_size = (-$pos) % 8192; - if ($block_size === 0 || $numLines === 0) { - - $text = fread($handle, ($block_size === 0 ? 8192 : $block_size)) . $text; - - } - } - - fclose($handle); - - \OC_FileProxy::$enabled = true; - - return $text; - } - - /** * @brief Check if a given path identifies an encrypted file * @param string $path * @return boolean */ public function isEncryptedPath($path) { - $relPath = Helper::getPathToRealFile($path); - - if ($relPath === false) { - $relPath = Helper::stripUserFilesPath($path); - } - - $fileKey = Keymanager::getFileKey($this->view, $this, $relPath); + // Disable encryption proxy so data retrieved is in its + // original form + $proxyStatus = \OC_FileProxy::$enabled; + \OC_FileProxy::$enabled = false; - if ($fileKey === false) { - return false; + // we only need 24 byte from the last chunk + $data = ''; + $handle = $this->view->fopen($path, 'r'); + if (is_resource($handle)) { + // suppress fseek warining, we handle the case that fseek doesn't + // work in the else branch + if (@fseek($handle, -24, SEEK_END) === 0) { + $data = fgets($handle); + } else { + // if fseek failed on the storage we create a local copy from the file + // and read this one + fclose($handle); + $localFile = $this->view->getLocalFile($path); + $handle = fopen($localFile, 'r'); + if (is_resource($handle) && fseek($handle, -24, SEEK_END) === 0) { + $data = fgets($handle); + } + } + fclose($handle); } - return true; + // re-enable proxy + \OC_FileProxy::$enabled = $proxyStatus; + return Crypt::isCatfileContent($data); } /** @@ -523,7 +494,20 @@ class Util { $lastChunckPos = ($lastChunkNr * 8192); // seek to end - fseek($stream, $lastChunckPos); + if (@fseek($stream, $lastChunckPos) === -1) { + // storage doesn't support fseek, we need a local copy + fclose($stream); + $localFile = $this->view->getLocalFile($path); + Helper::addTmpFileToMapper($localFile, $path); + $stream = fopen('crypt://' . $localFile, "r"); + if (fseek($stream, $lastChunckPos) === -1) { + // if fseek also fails on the local storage, than + // there is nothing we can do + fclose($stream); + \OCP\Util::writeLog('Encryption library', 'couldn\'t determine size of "' . $path, \OCP\Util::ERROR); + return $result; + } + } // get the content of the last chunk $lastChunkContent = fread($stream, $lastChunkSize); @@ -985,8 +969,8 @@ class Util { if (\OCP\DB::isError($result)) { \OCP\Util::writeLog('Encryption library', \OC_DB::getErrorMessage($result), \OCP\Util::ERROR); } else { - if ($result->numRows() > 0) { - $row = $result->fetchRow(); + $row = $result->fetchRow(); + if ($row) { $path = substr($row['path'], strlen('files')); } } @@ -1266,11 +1250,9 @@ class Util { if (\OCP\DB::isError($result)) { \OCP\Util::writeLog('Encryption library', \OC_DB::getErrorMessage($result), \OCP\Util::ERROR); } else { - if ($result->numRows() > 0) { - $row = $result->fetchRow(); - if (isset($row['migration_status'])) { - $migrationStatus[] = $row['migration_status']; - } + $row = $result->fetchRow(); + if ($row && isset($row['migration_status'])) { + $migrationStatus[] = $row['migration_status']; } } @@ -1450,9 +1432,7 @@ class Util { if (\OCP\DB::isError($result)) { \OCP\Util::writeLog('Encryption library', \OC_DB::getErrorMessage($result), \OCP\Util::ERROR); } else { - if ($result->numRows() > 0) { - $row = $result->fetchRow(); - } + $row = $result->fetchRow(); } return $row; @@ -1476,9 +1456,7 @@ class Util { if (\OCP\DB::isError($result)) { \OCP\Util::writeLog('Encryption library', \OC_DB::getErrorMessage($result), \OCP\Util::ERROR); } else { - if ($result->numRows() > 0) { - $row = $result->fetchRow(); - } + $row = $result->fetchRow(); } return $row; @@ -1497,18 +1475,16 @@ class Util { $result = $query->execute(array($id)); - $source = array(); + $source = null; if (\OCP\DB::isError($result)) { \OCP\Util::writeLog('Encryption library', \OC_DB::getErrorMessage($result), \OCP\Util::ERROR); } else { - if ($result->numRows() > 0) { - $source = $result->fetchRow(); - } + $source = $result->fetchRow(); } $fileOwner = false; - if (isset($source['parent'])) { + if ($source && isset($source['parent'])) { $parent = $source['parent']; @@ -1518,16 +1494,14 @@ class Util { $result = $query->execute(array($parent)); - $item = array(); + $item = null; if (\OCP\DB::isError($result)) { \OCP\Util::writeLog('Encryption library', \OC_DB::getErrorMessage($result), \OCP\Util::ERROR); } else { - if ($result->numRows() > 0) { - $item = $result->fetchRow(); - } + $item = $result->fetchRow(); } - if (isset($item['parent'])) { + if ($item && isset($item['parent'])) { $parent = $item['parent']; diff --git a/apps/files_encryption/tests/helper.php b/apps/files_encryption/tests/helper.php index cd2be70a8fe..4b46e976b81 100644 --- a/apps/files_encryption/tests/helper.php +++ b/apps/files_encryption/tests/helper.php @@ -8,6 +8,7 @@ require_once __DIR__ . '/../lib/helper.php'; +require_once __DIR__ . '/util.php'; use OCA\Encryption; @@ -16,6 +17,18 @@ use OCA\Encryption; */ class Test_Encryption_Helper extends \PHPUnit_Framework_TestCase { + const TEST_ENCRYPTION_HELPER_USER1 = "test-helper-user1"; + + public static function setUpBeforeClass() { + // create test user + \Test_Encryption_Util::loginHelper(\Test_Encryption_Helper::TEST_ENCRYPTION_HELPER_USER1, true); + } + + public static function tearDownAfterClass() { + // cleanup test user + \OC_User::deleteUser(\Test_Encryption_Helper::TEST_ENCRYPTION_HELPER_USER1); + } + /** * @medium */ @@ -64,4 +77,28 @@ class Test_Encryption_Helper extends \PHPUnit_Framework_TestCase { $this->assertEquals($relativePath, Encryption\Helper::getPathToRealFile($cachePath)); } + function testGetUser() { + + $path1 = "/" . self::TEST_ENCRYPTION_HELPER_USER1 . "/files/foo/bar.txt"; + $path2 = "/" . self::TEST_ENCRYPTION_HELPER_USER1 . "/cache/foo/bar.txt"; + $path3 = "/" . self::TEST_ENCRYPTION_HELPER_USER1 . "/thumbnails/foo"; + $path4 ="/" . "/" . self::TEST_ENCRYPTION_HELPER_USER1; + + // if we are logged-in every path should return the currently logged-in user + $this->assertEquals(self::TEST_ENCRYPTION_HELPER_USER1, Encryption\Helper::getUser($path3)); + + // now log out + \Test_Encryption_Util::logoutHelper(); + + // now we should only get the user from /user/files and user/cache paths + $this->assertEquals(self::TEST_ENCRYPTION_HELPER_USER1, Encryption\Helper::getUser($path1)); + $this->assertEquals(self::TEST_ENCRYPTION_HELPER_USER1, Encryption\Helper::getUser($path2)); + + $this->assertFalse(Encryption\Helper::getUser($path3)); + $this->assertFalse(Encryption\Helper::getUser($path4)); + + // Log-in again + \Test_Encryption_Util::loginHelper(\Test_Encryption_Helper::TEST_ENCRYPTION_HELPER_USER1); + } + } diff --git a/apps/files_encryption/tests/proxy.php b/apps/files_encryption/tests/proxy.php index a22f12411f4..419f95e1a38 100644 --- a/apps/files_encryption/tests/proxy.php +++ b/apps/files_encryption/tests/proxy.php @@ -44,8 +44,10 @@ class Test_Encryption_Proxy extends \PHPUnit_Framework_TestCase { /** * @var \OC_FilesystemView */ - public $view; + public $view; // view in /data/user/files + public $rootView; // view on /data/user public $data; + public $filename; public static function setUpBeforeClass() { // reset backend @@ -74,9 +76,12 @@ class Test_Encryption_Proxy extends \PHPUnit_Framework_TestCase { // init filesystem view $this->view = new \OC_FilesystemView('/'. \Test_Encryption_Proxy::TEST_ENCRYPTION_PROXY_USER1 . '/files'); + $this->rootView = new \OC_FilesystemView('/'. \Test_Encryption_Proxy::TEST_ENCRYPTION_PROXY_USER1 ); // init short data $this->data = 'hats'; + $this->filename = 'enc_proxy_tests-' . time() . '.txt'; + } public static function tearDownAfterClass() { @@ -90,21 +95,71 @@ class Test_Encryption_Proxy extends \PHPUnit_Framework_TestCase { */ function testPostFileSize() { - // generate filename - $filename = 'tmp-' . time() . '.txt'; - - $this->view->file_put_contents($filename, $this->data); + $this->view->file_put_contents($this->filename, $this->data); \OC_FileProxy::$enabled = false; - $unencryptedSize = $this->view->filesize($filename); + $unencryptedSize = $this->view->filesize($this->filename); \OC_FileProxy::$enabled = true; - $encryptedSize = $this->view->filesize($filename); + $encryptedSize = $this->view->filesize($this->filename); $this->assertTrue($encryptedSize !== $unencryptedSize); + // cleanup + $this->view->unlink($this->filename); + + } + + function testPreUnlinkWithoutTrash() { + + // remember files_trashbin state + $stateFilesTrashbin = OC_App::isEnabled('files_trashbin'); + + // we want to tests with app files_trashbin enabled + \OC_App::disable('files_trashbin'); + + $this->view->file_put_contents($this->filename, $this->data); + + // create a dummy file that we can delete something outside of data/user/files + $this->rootView->file_put_contents("dummy.txt", $this->data); + + // check if all keys are generated + $this->assertTrue($this->rootView->file_exists( + '/files_encryption/share-keys/' + . $this->filename . '.' . \Test_Encryption_Proxy::TEST_ENCRYPTION_PROXY_USER1 . '.shareKey')); + $this->assertTrue($this->rootView->file_exists( + '/files_encryption/keyfiles/' . $this->filename . '.key')); + + + // delete dummy file outside of data/user/files + $this->rootView->unlink("dummy.txt"); + + // all keys should still exist + $this->assertTrue($this->rootView->file_exists( + '/files_encryption/share-keys/' + . $this->filename . '.' . \Test_Encryption_Proxy::TEST_ENCRYPTION_PROXY_USER1 . '.shareKey')); + $this->assertTrue($this->rootView->file_exists( + '/files_encryption/keyfiles/' . $this->filename . '.key')); + + + // delete the file in data/user/files + $this->view->unlink($this->filename); + + // now also the keys should be gone + $this->assertFalse($this->rootView->file_exists( + '/files_encryption/share-keys/' + . $this->filename . '.' . \Test_Encryption_Proxy::TEST_ENCRYPTION_PROXY_USER1 . '.shareKey')); + $this->assertFalse($this->rootView->file_exists( + '/files_encryption/keyfiles/' . $this->filename . '.key')); + + if ($stateFilesTrashbin) { + OC_App::enable('files_trashbin'); + } + else { + OC_App::disable('files_trashbin'); + } } } diff --git a/apps/files_encryption/tests/share.php b/apps/files_encryption/tests/share.php index 6a29d2428dc..e55427620a6 100755 --- a/apps/files_encryption/tests/share.php +++ b/apps/files_encryption/tests/share.php @@ -649,9 +649,7 @@ class Test_Encryption_Share extends \PHPUnit_Framework_TestCase { * @large */ function testRecoveryFile() { - $this->markTestIncomplete( - 'No idea what\'s wrong here, this works perfectly in real-world. removeRecoveryKeys(\'/\') L709 removes correctly the keys, but for some reasons afterwards also the top-level folder "share-keys" is gone...' - ); + // login as admin \Test_Encryption_Util::loginHelper(\Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER1); @@ -754,13 +752,13 @@ class Test_Encryption_Share extends \PHPUnit_Framework_TestCase { * @large */ function testRecoveryForUser() { - $this->markTestIncomplete( - 'This test drives Jenkins crazy - "Cannot modify header information - headers already sent" - line 811' - ); + // login as admin \Test_Encryption_Util::loginHelper(\Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER1); - \OCA\Encryption\Helper::adminEnableRecovery(null, 'test123'); + $result = \OCA\Encryption\Helper::adminEnableRecovery(null, 'test123'); + $this->assertTrue($result); + $recoveryKeyId = OC_Appconfig::getValue('files_encryption', 'recoveryKeyId'); // login as user2 @@ -771,6 +769,9 @@ class Test_Encryption_Share extends \PHPUnit_Framework_TestCase { // enable recovery for admin $this->assertTrue($util->setRecoveryForUser(1)); + // add recovery keys for existing files (e.g. the auto-generated welcome.txt) + $util->addRecoveryKeys(); + // create folder structure $this->view->mkdir('/' . \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER2 . '/files' . $this->folder1); $this->view->mkdir( @@ -809,6 +810,10 @@ class Test_Encryption_Share extends \PHPUnit_Framework_TestCase { // change password \OC_User::setPassword(\Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER2, 'test', 'test123'); + $params = array('uid' => \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER2, + 'password' => 'test', + 'recoveryPassword' => 'test123'); + \OCA\Encryption\Hooks::setPassphrase($params); // login as user2 \Test_Encryption_Util::loginHelper(\Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER2, false, 'test'); @@ -823,8 +828,8 @@ class Test_Encryption_Share extends \PHPUnit_Framework_TestCase { $this->assertEquals($this->dataShort, $retrievedCryptedFile2); // cleanup - $this->view->unlink('/' . \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER2 . '/files' . $this->folder1); - $this->view->unlink('/' . \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER2 . '/files' . $this->filename); + $this->view->unlink('/' . \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER2 . '/files/' . $this->folder1); + $this->view->unlink('/' . \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER2 . '/files/' . $this->filename); // check if share key for user and recovery exists $this->assertFalse($this->view->file_exists( @@ -889,8 +894,8 @@ class Test_Encryption_Share extends \PHPUnit_Framework_TestCase { } catch (Exception $e) { $this->assertEquals(0, strpos($e->getMessage(), "Following users are not set up for encryption")); } - - + + // login as admin \Test_Encryption_Util::loginHelper(\Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER1); diff --git a/apps/files_encryption/tests/stream.php b/apps/files_encryption/tests/stream.php index 530ee3a7b2d..2767bbe512b 100644 --- a/apps/files_encryption/tests/stream.php +++ b/apps/files_encryption/tests/stream.php @@ -180,4 +180,43 @@ class Test_Encryption_Stream extends \PHPUnit_Framework_TestCase { // tear down $view->unlink($filename); } + + /** + * @medium + * @brief test if stream wrapper can read files outside from the data folder + */ + function testStreamFromLocalFile() { + + $filename = '/' . $this->userId . '/files/' . 'tmp-' . time().'.txt'; + + $tmpFilename = "/tmp/" . time() . ".txt"; + + // write an encrypted file + $cryptedFile = $this->view->file_put_contents($filename, $this->dataShort); + + // Test that data was successfully written + $this->assertTrue(is_int($cryptedFile)); + + // create a copy outside of the data folder in /tmp + $proxyStatus = \OC_FileProxy::$enabled; + \OC_FileProxy::$enabled = false; + $encryptedContent = $this->view->file_get_contents($filename); + \OC_FileProxy::$enabled = $proxyStatus; + + file_put_contents($tmpFilename, $encryptedContent); + + \OCA\Encryption\Helper::addTmpFileToMapper($tmpFilename, $filename); + + // try to read the file from /tmp + $handle = fopen("crypt://".$tmpFilename, "r"); + $contentFromTmpFile = stream_get_contents($handle); + + // check if it was successful + $this->assertEquals($this->dataShort, $contentFromTmpFile); + + // clean up + unlink($tmpFilename); + $this->view->unlink($filename); + + } } diff --git a/apps/files_encryption/tests/util.php b/apps/files_encryption/tests/util.php index e8dfb74f3f3..b1904cbadc7 100755 --- a/apps/files_encryption/tests/util.php +++ b/apps/files_encryption/tests/util.php @@ -134,6 +134,41 @@ class Test_Encryption_Util extends \PHPUnit_Framework_TestCase { /** * @medium + * @brief test detection of encrypted files + */ + function testIsEncryptedPath() { + + $util = new Encryption\Util($this->view, $this->userId); + + self::loginHelper($this->userId); + + $unencryptedFile = '/tmpUnencrypted-' . time() . '.txt'; + $encryptedFile = '/tmpEncrypted-' . time() . '.txt'; + + // Disable encryption proxy to write a unencrypted file + $proxyStatus = \OC_FileProxy::$enabled; + \OC_FileProxy::$enabled = false; + + $this->view->file_put_contents($this->userId . '/files/' . $unencryptedFile, $this->dataShort); + + // Re-enable proxy - our work is done + \OC_FileProxy::$enabled = $proxyStatus; + + // write a encrypted file + $this->view->file_put_contents($this->userId . '/files/' . $encryptedFile, $this->dataShort); + + // test if both files are detected correctly + $this->assertFalse($util->isEncryptedPath($this->userId . '/files/' . $unencryptedFile)); + $this->assertTrue($util->isEncryptedPath($this->userId . '/files/' . $encryptedFile)); + + // cleanup + $this->view->unlink($this->userId . '/files/' . $unencryptedFile, $this->dataShort); + $this->view->unlink($this->userId . '/files/' . $encryptedFile, $this->dataShort); + + } + + /** + * @medium * @brief test setup of encryption directories */ function testSetupServerSide() { @@ -416,6 +451,12 @@ class Test_Encryption_Util extends \PHPUnit_Framework_TestCase { OCA\Encryption\Hooks::login($params); } + public static function logoutHelper() { + \OC_Util::tearDownFS(); + \OC_User::setUserId(''); + \OC\Files\Filesystem::tearDown(); + } + /** * helper function to set migration status to the right value * to be able to test the migration path diff --git a/apps/files_external/3rdparty/smb4php/smb.php b/apps/files_external/3rdparty/smb4php/smb.php index f9ee51f8306..e454ddecb81 100644 --- a/apps/files_external/3rdparty/smb4php/smb.php +++ b/apps/files_external/3rdparty/smb4php/smb.php @@ -19,6 +19,10 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # +# Addition 17/12/2012 Frank Karlitschek (frank@owncloud.org) +# On the official website http://www.phpclasses.org/smb4php the +# license is listed as LGPL so we assume that this is +# dual-licensed GPL/LGPL ################################################################### define ('SMB4PHP_VERSION', '0.8'); diff --git a/apps/files_external/l10n/es_MX.php b/apps/files_external/l10n/es_MX.php new file mode 100644 index 00000000000..b508df8476a --- /dev/null +++ b/apps/files_external/l10n/es_MX.php @@ -0,0 +1,28 @@ +<?php +$TRANSLATIONS = array( +"Access granted" => "Acceso concedido", +"Error configuring Dropbox storage" => "Error configurando el almacenamiento de Dropbox", +"Grant access" => "Conceder acceso", +"Please provide a valid Dropbox app key and secret." => "Por favor, proporcione un una clave válida de la app Dropbox y una clave secreta.", +"Error configuring Google Drive storage" => "Error configurando el almacenamiento de Google Drive", +"<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "<b>Advertencia:</b> El cliente \"smbclient\" no se encuentra instalado. El montado de carpetas CIFS/SMB no es posible. Por favor pida al administrador de su sistema que lo instale.", +"<b>Warning:</b> 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." => "<b>Advertencia:</b> El soporte de FTP en PHP no se encuentra instalado. El montado de carpetas FTP no es posible. Por favor pida al administrador de su sistema que lo instale.", +"<b>Warning:</b> The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "<b>Advertencia:</b> El soporte de Curl en PHP no está activado ni instalado. El montado de ownCloud, WebDAV o GoogleDrive no es posible. Pida al administrador de su sistema que lo instale.", +"External Storage" => "Almacenamiento externo", +"Folder name" => "Nombre de la carpeta", +"External storage" => "Almacenamiento externo", +"Configuration" => "Configuración", +"Options" => "Opciones", +"Applicable" => "Aplicable", +"Add storage" => "Añadir almacenamiento", +"None set" => "No se ha configurado", +"All Users" => "Todos los usuarios", +"Groups" => "Grupos", +"Users" => "Usuarios", +"Delete" => "Eliminar", +"Enable User External Storage" => "Habilitar almacenamiento externo de usuario", +"Allow users to mount their own external storage" => "Permitir a los usuarios montar su propio almacenamiento externo", +"SSL root certificates" => "Certificados raíz SSL", +"Import Root Certificate" => "Importar certificado raíz" +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/ajax/publicpreview.php b/apps/files_sharing/ajax/publicpreview.php index 8c3085f1589..54a9806e8bf 100644 --- a/apps/files_sharing/ajax/publicpreview.php +++ b/apps/files_sharing/ajax/publicpreview.php @@ -36,7 +36,9 @@ if(!isset($linkedItem['uid_owner']) || !isset($linkedItem['file_source'])) { exit; } -$userId = $linkedItem['uid_owner']; +$rootLinkItem = OCP\Share::resolveReShare($linkedItem); +$userId = $rootLinkItem['uid_owner']; + \OC_Util::setupFS($userId); \OC\Files\Filesystem::initMountPoints($userId); $view = new \OC\Files\View('/' . $userId . '/files'); diff --git a/apps/files_sharing/css/public.css b/apps/files_sharing/css/public.css index 3ccb35e327a..060d4dfedc7 100644 --- a/apps/files_sharing/css/public.css +++ b/apps/files_sharing/css/public.css @@ -65,7 +65,7 @@ body { } footer { - margin-top: 45px; + margin-top: 65px; } p.info { diff --git a/apps/files_sharing/l10n/da.php b/apps/files_sharing/l10n/da.php index aef3ad98811..849b0e28d30 100644 --- a/apps/files_sharing/l10n/da.php +++ b/apps/files_sharing/l10n/da.php @@ -1,5 +1,6 @@ <?php $TRANSLATIONS = array( +"This share is password-protected" => "Delingen er beskyttet af kodeord", "The password is wrong. Try again." => "Kodeordet er forkert. Prøv igen.", "Password" => "Kodeord", "Sorry, this link doesn’t seem to work anymore." => "Desværre, dette link ser ikke ud til at fungerer længere.", @@ -13,6 +14,7 @@ $TRANSLATIONS = array( "Download" => "Download", "Upload" => "Upload", "Cancel upload" => "Fortryd upload", -"No preview available for" => "Forhåndsvisning ikke tilgængelig for" +"No preview available for" => "Forhåndsvisning ikke tilgængelig for", +"Direct link" => "Direkte link" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/es_CL.php b/apps/files_sharing/l10n/es_CL.php new file mode 100644 index 00000000000..31dc045870c --- /dev/null +++ b/apps/files_sharing/l10n/es_CL.php @@ -0,0 +1,6 @@ +<?php +$TRANSLATIONS = array( +"Password" => "Clave", +"Upload" => "Subir" +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/es_MX.php b/apps/files_sharing/l10n/es_MX.php new file mode 100644 index 00000000000..9100ef8b35f --- /dev/null +++ b/apps/files_sharing/l10n/es_MX.php @@ -0,0 +1,20 @@ +<?php +$TRANSLATIONS = array( +"This share is password-protected" => "Este elemento compartido esta protegido por contraseña", +"The password is wrong. Try again." => "La contraseña introducida es errónea. Inténtelo de nuevo.", +"Password" => "Contraseña", +"Sorry, this link doesn’t seem to work anymore." => "Lo siento, este enlace al parecer ya no funciona.", +"Reasons might be:" => "Las causas podrían ser:", +"the item was removed" => "el elemento fue eliminado", +"the link expired" => "el enlace expiró", +"sharing is disabled" => "compartir está desactivado", +"For more info, please ask the person who sent this link." => "Para mayor información, contacte a la persona que le envió el enlace.", +"%s shared the folder %s with you" => "%s compartió la carpeta %s contigo", +"%s shared the file %s with you" => "%s compartió el archivo %s contigo", +"Download" => "Descargar", +"Upload" => "Subir", +"Cancel upload" => "Cancelar subida", +"No preview available for" => "No hay vista previa disponible para", +"Direct link" => "Enlace directo" +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/ko.php b/apps/files_sharing/l10n/ko.php index 90f59ed1673..03c4c1aea94 100644 --- a/apps/files_sharing/l10n/ko.php +++ b/apps/files_sharing/l10n/ko.php @@ -1,18 +1,20 @@ <?php $TRANSLATIONS = array( -"The password is wrong. Try again." => "비밀번호가 틀립니다. 다시 입력해주세요.", +"This share is password-protected" => "이 공유는 암호로 보호되어 있습니다", +"The password is wrong. Try again." => "암호가 잘못되었습니다. 다시 입력해 주십시오.", "Password" => "암호", -"Sorry, this link doesn’t seem to work anymore." => "죄송합니다만 이 링크는 더이상 작동되지 않습니다.", +"Sorry, this link doesn’t seem to work anymore." => "죄송합니다. 이 링크는 더 이상 작동하지 않습니다.", "Reasons might be:" => "이유는 다음과 같을 수 있습니다:", -"the item was removed" => "이 항목은 삭제되었습니다", -"the link expired" => "링크가 만료되었습니다", -"sharing is disabled" => "공유가 비활성되었습니다", -"For more info, please ask the person who sent this link." => "더 자세한 설명은 링크를 보내신 분에게 여쭤보십시오", +"the item was removed" => "항목이 삭제됨", +"the link expired" => "링크가 만료됨", +"sharing is disabled" => "공유가 비활성화됨", +"For more info, please ask the person who sent this link." => "자세한 정보는 링크를 보낸 사람에게 문의하십시오.", "%s shared the folder %s with you" => "%s 님이 폴더 %s을(를) 공유하였습니다", "%s shared the file %s with you" => "%s 님이 파일 %s을(를) 공유하였습니다", "Download" => "다운로드", "Upload" => "업로드", "Cancel upload" => "업로드 취소", -"No preview available for" => "다음 항목을 미리 볼 수 없음:" +"No preview available for" => "다음 항목을 미리 볼 수 없음:", +"Direct link" => "직접 링크" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_sharing/tests/base.php b/apps/files_sharing/tests/base.php index 689c80cb9e6..3e283271f5d 100644 --- a/apps/files_sharing/tests/base.php +++ b/apps/files_sharing/tests/base.php @@ -132,8 +132,8 @@ abstract class Test_Files_Sharing_Base extends \PHPUnit_Framework_TestCase { $share = Null; - if ($result && $result->numRows() > 0) { - $share = $result->fetchRow(); + if ($result) { + $share = $result->fetchRow(); } return $share; diff --git a/apps/files_trashbin/l10n/es_MX.php b/apps/files_trashbin/l10n/es_MX.php index 0acad00e8b5..db7a617729b 100644 --- a/apps/files_trashbin/l10n/es_MX.php +++ b/apps/files_trashbin/l10n/es_MX.php @@ -1,6 +1,14 @@ <?php $TRANSLATIONS = array( -"_%n folder_::_%n folders_" => array("",""), -"_%n file_::_%n files_" => array("","") +"Couldn't delete %s permanently" => "No se puede eliminar %s permanentemente", +"Couldn't restore %s" => "No se puede restaurar %s", +"Error" => "Error", +"restored" => "recuperado", +"Nothing in here. Your trash bin is empty!" => "No hay nada aquí. ¡Tu papelera esta vacía!", +"Name" => "Nombre", +"Restore" => "Recuperar", +"Deleted" => "Eliminado", +"Delete" => "Eliminar", +"Deleted Files" => "Archivos Eliminados" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/ko.php b/apps/files_trashbin/l10n/ko.php index 809ecfea15d..9c3cd2de15f 100644 --- a/apps/files_trashbin/l10n/ko.php +++ b/apps/files_trashbin/l10n/ko.php @@ -1,14 +1,14 @@ <?php $TRANSLATIONS = array( -"Couldn't delete %s permanently" => "%s를 영구적으로 삭제할수 없습니다", -"Couldn't restore %s" => "%s를 복원할수 없습니다", +"Couldn't delete %s permanently" => "%s을(를_ 영구적으로 삭제할 수 없습니다", +"Couldn't restore %s" => "%s을(를) 복원할 수 없습니다", "Error" => "오류", "restored" => "복원됨", -"Nothing in here. Your trash bin is empty!" => "현재 휴지통은 비어있습니다!", +"Nothing in here. Your trash bin is empty!" => "휴지통이 비어 있습니다!", "Name" => "이름", "Restore" => "복원", "Deleted" => "삭제됨", "Delete" => "삭제", -"Deleted Files" => "삭제된 파일들" +"Deleted Files" => "삭제된 파일" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_trashbin/l10n/ru.php b/apps/files_trashbin/l10n/ru.php index b6de1948f77..06a4f864c67 100644 --- a/apps/files_trashbin/l10n/ru.php +++ b/apps/files_trashbin/l10n/ru.php @@ -8,6 +8,7 @@ $TRANSLATIONS = array( "Name" => "Имя", "Restore" => "Восстановить", "Deleted" => "Удалён", +"Delete" => "Удалить", "Deleted Files" => "Удаленные файлы" ); $PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/apps/files_trashbin/templates/part.breadcrumb.php b/apps/files_trashbin/templates/part.breadcrumb.php index 4acc298adbe..fdf78c190d0 100644 --- a/apps/files_trashbin/templates/part.breadcrumb.php +++ b/apps/files_trashbin/templates/part.breadcrumb.php @@ -3,11 +3,11 @@ <img src="<?php print_unescaped(OCP\image_path('core', 'places/home.svg'));?>" class="svg" /> </a> </div> -<?php if(count($_["breadcrumb"])):?> - <div class="crumb svg" - data-dir='/'> +<div class="crumb svg" + data-dir='/'> <a href="<?php p($_['baseURL']); ?>"><?php p($l->t("Deleted Files")); ?></a> - </div> +</div> +<?php if(count($_["breadcrumb"])):?> <?php endif;?> <?php for($i=0; $i<count($_["breadcrumb"]); $i++): $crumb = $_["breadcrumb"][$i]; diff --git a/apps/files_versions/l10n/es_MX.php b/apps/files_versions/l10n/es_MX.php new file mode 100644 index 00000000000..b7acc376978 --- /dev/null +++ b/apps/files_versions/l10n/es_MX.php @@ -0,0 +1,10 @@ +<?php +$TRANSLATIONS = array( +"Could not revert: %s" => "No se puede revertir: %s", +"Versions" => "Revisiones", +"Failed to revert {file} to revision {timestamp}." => "No se ha podido revertir {archivo} a revisión {timestamp}.", +"More versions..." => "Más versiones...", +"No other versions available" => "No hay otras versiones disponibles", +"Restore" => "Recuperar" +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_versions/l10n/ko.php b/apps/files_versions/l10n/ko.php index ba951c4107a..bd56c0489bf 100644 --- a/apps/files_versions/l10n/ko.php +++ b/apps/files_versions/l10n/ko.php @@ -2,9 +2,9 @@ $TRANSLATIONS = array( "Could not revert: %s" => "되돌릴 수 없습니다: %s", "Versions" => "버전", -"Failed to revert {file} to revision {timestamp}." => "{timestamp} 판의 {file}로 돌리는데 실패했습니다.", -"More versions..." => "더 많은 버전들...", -"No other versions available" => "다른 버전을 사용할수 없습니다", +"Failed to revert {file} to revision {timestamp}." => "{file}을(를) 리비전 {timestamp}으(로) 되돌리는 데 실패하였습니다.", +"More versions..." => "더 많은 버전...", +"No other versions available" => "다른 버전을 사용할 수 없습니다", "Restore" => "복원" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/user_ldap/l10n/ak.php b/apps/user_ldap/l10n/ak.php new file mode 100644 index 00000000000..dd5f66761d6 --- /dev/null +++ b/apps/user_ldap/l10n/ak.php @@ -0,0 +1,6 @@ +<?php +$TRANSLATIONS = array( +"_%s group found_::_%s groups found_" => array("",""), +"_%s user found_::_%s users found_" => array("","") +); +$PLURAL_FORMS = "nplurals=2; plural=n > 1;"; diff --git a/apps/user_ldap/l10n/el.php b/apps/user_ldap/l10n/el.php index 0e32abbf9c3..8369dff4895 100644 --- a/apps/user_ldap/l10n/el.php +++ b/apps/user_ldap/l10n/el.php @@ -4,6 +4,10 @@ $TRANSLATIONS = array( "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 have a look at the logs for further details." => "Η διαμόρφωση είναι άκυρη. Παρακαλώ ελέγξτε τα αρχεία σφαλμάτων για περαιτέρω λεπτομέρειες.", +"No action specified" => "Καμμία εντολή δεν προσδιορίστηκε", +"No configuration specified" => "Καμμία διαμόρφωση δεν προσδιορίστηκε", +"No data specified" => "Δεν προσδιορίστηκαν δεδομένα", "Deletion failed" => "Η διαγραφή απέτυχε", "Take over settings from recent server configuration?" => "Πάρτε πάνω από τις πρόσφατες ρυθμίσεις διαμόρφωσης του διακομιστή?", "Keep settings?" => "Διατήρηση ρυθμίσεων;", @@ -11,16 +15,35 @@ $TRANSLATIONS = array( "mappings cleared" => "αντιστοιχίες εκκαθαρίστηκαν", "Success" => "Επιτυχία", "Error" => "Σφάλμα", +"Configuration OK" => "Η διαμόρφωση είναι εντάξει", +"Configuration incorrect" => "Η διαμόρφωση είναι λανθασμένη", +"Configuration incomplete" => "Η διαμόρφωση είναι ελλιπής", "Select groups" => "Επιλέξτε ομάδες", +"Select object classes" => "Επιλογή κλάσης αντικειμένων", +"Select attributes" => "Επιλογή χαρακτηριστικών", "Connection test succeeded" => "Επιτυχημένη δοκιμαστική σύνδεση", "Connection test failed" => "Αποτυχημένη δοκιμαστική σύνδεσης.", "Do you really want to delete the current Server Configuration?" => "Θέλετε να διαγράψετε τις τρέχουσες ρυθμίσεις του διακομιστή;", "Confirm Deletion" => "Επιβεβαίωση Διαγραφής", -"_%s group found_::_%s groups found_" => array("",""), -"_%s user found_::_%s users found_" => array("",""), +"_%s group found_::_%s groups found_" => array("%s ομάδα βρέθηκε","%s ομάδες βρέθηκαν"), +"_%s user found_::_%s users found_" => array("%s χρήστης βρέθηκε","%s χρήστες βρέθηκαν"), +"Invalid Host" => "Άκυρος εξυπηρετητής", +"Could not find the desired feature" => "Αδυναμία εύρεσης επιθυμητου χαρακτηριστικού", "Save" => "Αποθήκευση", "Test Configuration" => "Δοκιμαστικες ρυθμισεις", "Help" => "Βοήθεια", +"Limit the access to %s to groups meeting this criteria:" => "Περιορισμός πρόσβασης %s σε ομάδες που ταιριάζουν αυτά τα κριτήρια:", +"only those object classes:" => "μόνο αυτές οι κλάσεις αντικειμένων:", +"only from those groups:" => "μόνο από αυτές τις ομάδες:", +"Edit raw filter instead" => "Επεξεργασία πρωτογενούς φίλτρου αντί αυτού", +"Raw LDAP filter" => "Πρωτογενές φίλτρο ", +"The filter specifies which LDAP groups shall have access to the %s instance." => "Το φίλτρο καθορίζει ποιες ομάδες LDAP θα έχουν πρόσβαση στην εγκατάσταση %s.", +"groups found" => "ομάδες βρέθηκαν", +"What attribute shall be used as login name:" => "Ποια ιδιότητα θα χρησιμοποιηθεί ως όνομα σύνδεσης:", +"LDAP Username:" => "Όνομα χρήστη LDAP:", +"LDAP Email Address:" => "Διεύθυνση ηλ. ταχυδρομείου LDAP:", +"Other Attributes:" => "Άλλες Ιδιότητες:", +"Defines the filter to apply, when login is attempted. %%uid replaces the username in the login action. Example: \"uid=%%uid\"" => "Ορίζει το φίλτρο που θα εφαρμοστεί, όταν επιχειριθεί σύνδεση. Το %%uid αντικαθιστά το όνομα χρήστη κατά τη σύνδεση. Παράδειγμα: \"uid=%%uid\"", "Add Server Configuration" => "Προσθήκη Ρυθμίσεων Διακομιστή", "Host" => "Διακομιστής", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "Μπορείτε να παραλείψετε το πρωτόκολλο, εκτός αν απαιτείται SSL. Σε αυτή την περίπτωση ξεκινήστε με ldaps://", @@ -31,6 +54,9 @@ $TRANSLATIONS = array( "For anonymous access, leave DN and Password empty." => "Για ανώνυμη πρόσβαση, αφήστε κενά τα πεδία DN και Pasword.", "One Base DN per line" => "Ένα DN Βάσης ανά γραμμή ", "You can specify Base DN for users and groups in the Advanced tab" => "Μπορείτε να καθορίσετε το Base DN για χρήστες και ομάδες από την καρτέλα Προηγμένες ρυθμίσεις", +"Limit the access to %s to users meeting this criteria:" => "Περιορισμός πρόσβασης %s σε χρήστες που ταιριάζουν αυτά τα κριτήρια:", +"The filter specifies which LDAP users shall have access to the %s instance." => "Το φίλτρο καθορίζει ποιοι χρήστες LDAP θα έχουν πρόσβαση στην εγκατάσταση %s.", +"users found" => "χρήστες βρέθηκαν", "Back" => "Επιστροφή", "Continue" => "Συνέχεια", "<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." => "<b>Προσοχή:</b> Οι εφαρμογές user_ldap και user_webdavauth είναι ασύμβατες. Μπορεί να αντιμετωπίσετε απρόβλεπτη συμπεριφορά. Παρακαλώ ζητήστε από τον διαχειριστή συστήματος να απενεργοποιήσει μία από αυτές.", @@ -44,15 +70,18 @@ $TRANSLATIONS = array( "Disable Main Server" => "Απενεργοποιηση του κεντρικου διακομιστη", "Case insensitve LDAP server (Windows)" => "LDAP server (Windows) με διάκριση πεζών-ΚΕΦΑΛΑΙΩΝ", "Turn off SSL certificate validation." => "Απενεργοποίηση επικύρωσης πιστοποιητικού SSL.", +"Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." => "Δεν προτείνεται, χρησιμοποιείστε το μόνο για δοκιμές! Εάν η σύνδεση λειτουργεί μόνο με αυτή την επιλογή, εισάγετε το πιστοποιητικό SSL του διακομιστή LDAP στο %s διακομιστή σας.", "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 display name." => "Η ιδιότητα LDAP προς χρήση για δημιουργία του προβαλλόμενου ονόματος χρήστη.", "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 display name." => "Η ιδιότητα LDAP προς χρήση για δημιουργία του προβαλλόμενου ονόματος ομάδας.", "Base Group Tree" => "Base Group Tree", "One Group Base DN per line" => "Μια ομαδικη Βάση DN ανά γραμμή", "Group Search Attributes" => "Ομάδα Χαρακτηριστικων Αναζήτηση", @@ -65,6 +94,15 @@ $TRANSLATIONS = array( "User Home Folder Naming Rule" => "Χρήστης Προσωπικόςφάκελος Ονομασία Κανόνας ", "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Αφήστε το κενό για το όνομα χρήστη (προεπιλογή). Διαφορετικά, συμπληρώστε μία ιδιότητα LDAP/AD.", "Internal Username" => "Εσωτερικό Όνομα Χρήστη", -"Internal Username Attribute:" => "Ιδιότητα Εσωτερικού Ονόματος Χρήστη:" +"By default the internal username will be created from the UUID attribute. It makes sure that the username is unique and characters do not need to be converted. The internal username has the restriction that only these characters are allowed: [ a-zA-Z0-9_.@- ]. Other characters are replaced with their ASCII correspondence or simply omitted. On collisions a number will be added/increased. The internal username is used to identify a user internally. It is also the default name for the user home folder. It is also a part of remote URLs, for instance for all *DAV services. With this setting, the default behavior can be overridden. To achieve a similar behavior as before ownCloud 5 enter the user display name attribute in the following field. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users." => "Εξ ορισμού, το εσωτερικό όνομα χρήστη θα δημιουργηθεί από το χαρακτηριστικό UUID. Αυτό βεβαιώνει ότι το όνομα χρήστη είναι μοναδικό και δεν χρειάζεται μετατροπή χαρακτήρων. Το εσωτερικό όνομα χρήστη έχει τον περιορισμό ότι μόνο αυτοί οι χαρακτήρες επιτρέπονται: [ a-zA-Z0-9_.@- ]. Οι άλλοι χαρακτήρες αντικαθίστανται με τους αντίστοιχους ASCII ή απλά παραλείπονται. Στις συγκρούσεις ένας αριθμός θα προστεθεί / αυξηθεί. Το εσωτερικό όνομα χρήστη χρησιμοποιείται για την αναγνώριση ενός χρήστη εσωτερικά. Είναι επίσης το προεπιλεγμένο όνομα για τον αρχικό φάκελο χρήστη. Αποτελεί επίσης μέρος των απομακρυσμένων διευθύνσεων URL, για παράδειγμα για όλες τις υπηρεσίες *DAV. Με αυτή τη ρύθμιση, η προεπιλεγμένη συμπεριφορά μπορεί να παρακαμφθεί. Για να επιτευχθεί μια παρόμοια συμπεριφορά όπως πριν το ownCloud 5 εισάγετε το χαρακτηριστικό του προβαλλόμενου ονόματος χρήστη στο παρακάτω πεδίο. Αφήστε το κενό για την προεπιλεγμένη λειτουργία. Οι αλλαγές θα έχουν ισχύ μόνο σε νεώτερους (προστιθέμενους) χρήστες LDAP.", +"Internal Username Attribute:" => "Ιδιότητα Εσωτερικού Ονόματος Χρήστη:", +"Override UUID detection" => "Παράκαμψη ανίχνευσης UUID", +"By default, the UUID attribute is automatically detected. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "Από προεπιλογή, το χαρακτηριστικό UUID εντοπίζεται αυτόματα. Το χαρακτηριστικό UUID χρησιμοποιείται για την αναγνώριση χωρίς αμφιβολία χρηστών και ομάδων LDAP. Επίσης, το εσωτερικό όνομα χρήστη θα δημιουργηθεί με βάση το UUID, εφόσον δεν ορίζεται διαφορετικά ανωτέρω. Μπορείτε να παρακάμψετε τη ρύθμιση και να ορίσετε ένα χαρακτηριστικό της επιλογής σας. Θα πρέπει να βεβαιωθείτε ότι το χαρακτηριστικό της επιλογής σας μπορεί να ληφθεί για τους χρήστες και τις ομάδες και ότι είναι μοναδικό. Αφήστε το κενό για την προεπιλεγμένη λειτουργία. Οι αλλαγές θα έχουν ισχύ μόνο σε πρόσφατα αντιστοιχισμένους (προστιθέμενους) χρήστες και ομάδες LDAP.", +"UUID Attribute for Users:" => "Χαρακτηριστικό UUID για Χρήστες:", +"UUID Attribute for Groups:" => "Χαρακτηριστικό UUID για Ομάδες:", +"Username-LDAP User Mapping" => "Αντιστοίχιση Χρηστών Όνομα Χρήστη-LDAP", +"Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have a internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "Τα ονόματα χρηστών χρησιμοποιούνται για την αποθήκευση και την ανάθεση (μετα) δεδομένων. Προκειμένου να προσδιοριστούν με ακρίβεια και να αναγνωρίστουν οι χρήστες, κάθε χρήστης LDAP θα έχει ένα εσωτερικό όνομα. Αυτό απαιτεί μια αντιστοίχιση του ονόματος χρήστη με το χρήστη LDAP. Το όνομα χρήστη που δημιουργήθηκε αντιστοιχίζεται στην UUID του χρήστη LDAP. Επιπροσθέτως, το DN αποθηκεύεται προσωρινά (cache) ώστε να μειωθεί η αλληλεπίδραση LDAP, αλλά δεν χρησιμοποιείται για την ταυτοποίηση. Αν το DN αλλάξει, οι αλλαγές θα βρεθούν. Το εσωτερικό όνομα χρήστη χρησιμοποιείται παντού. Η εκκαθάριση των αντιστοιχίσεων θα αφήσει κατάλοιπα παντού. Η εκκαθάριση των αντιστοιχίσεων δεν επηρεάζεται από τη διαμόρφωση, επηρεάζει όλες τις διαμορφώσεις LDAP! Μην διαγράψετε ποτέ τις αντιστοιχίσεις σε ένα λειτουργικό περιβάλλον παρά μόνο σε δοκιμές ή σε πειραματικό στάδιο.", +"Clear Username-LDAP User Mapping" => "Διαγραφή αντιστοίχησης Ονόματος Χρήστη LDAP-Χρήστη", +"Clear Groupname-LDAP Group Mapping" => "Διαγραφή αντιστοίχησης Ονόματος Ομάδας-LDAP Ομάδας" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_ldap/l10n/es_CL.php b/apps/user_ldap/l10n/es_CL.php new file mode 100644 index 00000000000..b3522617b42 --- /dev/null +++ b/apps/user_ldap/l10n/es_CL.php @@ -0,0 +1,7 @@ +<?php +$TRANSLATIONS = array( +"_%s group found_::_%s groups found_" => array("",""), +"_%s user found_::_%s users found_" => array("",""), +"Password" => "Clave" +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_ldap/l10n/es_MX.php b/apps/user_ldap/l10n/es_MX.php index 3a1e002311c..16aaa91fd51 100644 --- a/apps/user_ldap/l10n/es_MX.php +++ b/apps/user_ldap/l10n/es_MX.php @@ -1,6 +1,110 @@ <?php $TRANSLATIONS = array( -"_%s group found_::_%s groups found_" => array("",""), -"_%s user found_::_%s users found_" => array("","") +"Failed to clear the mappings." => "Ocurrió un fallo al borrar las asignaciones.", +"Failed to delete the server configuration" => "No se pudo borrar la configuración del servidor", +"The configuration is valid and the connection could be established!" => "¡La configuración es válida y la conexión puede establecerse!", +"The configuration is valid, but the Bind failed. Please check the server settings and credentials." => "La configuración es válida, pero falló el Enlace. Por favor, compruebe la configuración del servidor y las credenciales.", +"The configuration is invalid. Please have a look at the logs for further details." => "La configuración no es válida. Por favor, busque en el log para más detalles.", +"No action specified" => "No se ha especificado la acción", +"No configuration specified" => "No se ha especificado la configuración", +"No data specified" => "No se han especificado los datos", +" Could not set configuration %s" => "No se pudo establecer la configuración %s", +"Deletion failed" => "Falló el borrado", +"Take over settings from recent server configuration?" => "¿Asumir los ajustes actuales de la configuración del servidor?", +"Keep settings?" => "¿Mantener la configuración?", +"Cannot add server configuration" => "No se puede añadir la configuración del servidor", +"mappings cleared" => "Asignaciones borradas", +"Success" => "Éxito", +"Error" => "Error", +"Configuration OK" => "Configuración OK", +"Configuration incorrect" => "Configuración Incorrecta", +"Configuration incomplete" => "Configuración incompleta", +"Select groups" => "Seleccionar grupos", +"Select object classes" => "Seleccionar la clase de objeto", +"Select attributes" => "Seleccionar atributos", +"Connection test succeeded" => "La prueba de conexión fue exitosa", +"Connection test failed" => "La prueba de conexión falló", +"Do you really want to delete the current Server Configuration?" => "¿Realmente desea eliminar la configuración actual del servidor?", +"Confirm Deletion" => "Confirmar eliminación", +"_%s group found_::_%s groups found_" => array("Grupo %s encontrado","Grupos %s encontrados"), +"_%s user found_::_%s users found_" => array("Usuario %s encontrado","Usuarios %s encontrados"), +"Invalid Host" => "Host inválido", +"Could not find the desired feature" => "No se puede encontrar la función deseada.", +"Save" => "Guardar", +"Test Configuration" => "Configuración de prueba", +"Help" => "Ayuda", +"Limit the access to %s to groups meeting this criteria:" => "Limitar el acceso a %s a los grupos que cumplan este criterio:", +"only those object classes:" => "solamente de estas clases de objeto:", +"only from those groups:" => "solamente de estos grupos:", +"Edit raw filter instead" => "Editar el filtro en bruto en su lugar", +"Raw LDAP filter" => "Filtro LDAP en bruto", +"The filter specifies which LDAP groups shall have access to the %s instance." => "El filtro especifica que grupos LDAP tendrán acceso a %s.", +"groups found" => "grupos encontrados", +"What attribute shall be used as login name:" => "Que atributo debe ser usado como login:", +"LDAP Username:" => "Nombre de usuario LDAP:", +"LDAP Email Address:" => "Dirección e-mail LDAP:", +"Other Attributes:" => "Otros atributos:", +"Defines the filter to apply, when login is attempted. %%uid replaces the username in the login action. Example: \"uid=%%uid\"" => "Define el filtro a aplicar cuando se intenta identificar. %%uid remplazará al nombre de usuario en el proceso de identificación. Por ejemplo: \"uid=%%uid\"", +"Add Server Configuration" => "Agregar configuracion del servidor", +"Host" => "Servidor", +"You can omit the protocol, except you require SSL. Then start with ldaps://" => "Puede omitir el protocolo, excepto si requiere SSL. En ese caso, empiece con ldaps://", +"Port" => "Puerto", +"User DN" => "DN usuario", +"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." => "El DN del usuario cliente con el que se hará la asociación, p.ej. uid=agente,dc=ejemplo,dc=com. Para acceso anónimo, deje DN y contraseña vacíos.", +"Password" => "Contraseña", +"For anonymous access, leave DN and Password empty." => "Para acceso anónimo, deje DN y contraseña vacíos.", +"One Base DN per line" => "Un DN Base por línea", +"You can specify Base DN for users and groups in the Advanced tab" => "Puede especificar el DN base para usuarios y grupos en la pestaña Avanzado", +"Limit the access to %s to users meeting this criteria:" => "Limitar el acceso a %s a los usuarios que cumplan el siguiente criterio:", +"The filter specifies which LDAP users shall have access to the %s instance." => "El filtro especifica que usuarios LDAP pueden tener acceso a %s.", +"users found" => "usuarios encontrados", +"Back" => "Atrás", +"Continue" => "Continuar", +"<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." => "<b>Advertencia:</b> Las apps user_ldap y user_webdavauth son incompatibles. Puede que experimente un comportamiento inesperado. Pregunte al su administrador de sistemas para desactivar uno de ellos.", +"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." => "<b>Advertencia:</b> El módulo LDAP de PHP no está instalado, el sistema no funcionará. Por favor consulte al administrador del sistema para instalarlo.", +"Connection Settings" => "Configuración de conexión", +"Configuration Active" => "Configuracion activa", +"When unchecked, this configuration will be skipped." => "Cuando deseleccione, esta configuracion sera omitida.", +"Backup (Replica) Host" => "Servidor de copia de seguridad (Replica)", +"Give an optional backup host. It must be a replica of the main LDAP/AD server." => "Dar un servidor de copia de seguridad opcional. Debe ser una réplica del servidor principal LDAP / AD.", +"Backup (Replica) Port" => "Puerto para copias de seguridad (Replica)", +"Disable Main Server" => "Deshabilitar servidor principal", +"Only connect to the replica server." => "Conectar sólo con el servidor de réplica.", +"Case insensitve LDAP server (Windows)" => "Servidor de LDAP no sensible a mayúsculas/minúsculas (Windows)", +"Turn off SSL certificate validation." => "Apagar la validación por certificado SSL.", +"Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." => "No se recomienda, ¡utilízalo únicamente para pruebas! Si la conexión únicamente funciona con esta opción, importa el certificado SSL del servidor LDAP en tu servidor %s.", +"Cache Time-To-Live" => "Cache TTL", +"in seconds. A change empties the cache." => "en segundos. Un cambio vacía la caché.", +"Directory Settings" => "Configuración de directorio", +"User Display Name Field" => "Campo de nombre de usuario a mostrar", +"The LDAP attribute to use to generate the user's display name." => "El campo LDAP a usar para generar el nombre para mostrar del usuario.", +"Base User Tree" => "Árbol base de usuario", +"One User Base DN per line" => "Un DN Base de Usuario por línea", +"User Search Attributes" => "Atributos de la busqueda de usuario", +"Optional; one attribute per line" => "Opcional; un atributo por linea", +"Group Display Name Field" => "Campo de nombre de grupo a mostrar", +"The LDAP attribute to use to generate the groups's display name." => "El campo LDAP a usar para generar el nombre para mostrar del grupo.", +"Base Group Tree" => "Árbol base de grupo", +"One Group Base DN per line" => "Un DN Base de Grupo por línea", +"Group Search Attributes" => "Atributos de busqueda de grupo", +"Group-Member association" => "Asociación Grupo-Miembro", +"Special Attributes" => "Atributos especiales", +"Quota Field" => "Cuota", +"Quota Default" => "Cuota por defecto", +"in bytes" => "en bytes", +"Email Field" => "E-mail", +"User Home Folder Naming Rule" => "Regla para la carpeta Home de usuario", +"Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Vacío para el nombre de usuario (por defecto). En otro caso, especifique un atributo LDAP/AD.", +"Internal Username" => "Nombre de usuario interno", +"By default the internal username will be created from the UUID attribute. It makes sure that the username is unique and characters do not need to be converted. The internal username has the restriction that only these characters are allowed: [ a-zA-Z0-9_.@- ]. Other characters are replaced with their ASCII correspondence or simply omitted. On collisions a number will be added/increased. The internal username is used to identify a user internally. It is also the default name for the user home folder. It is also a part of remote URLs, for instance for all *DAV services. With this setting, the default behavior can be overridden. To achieve a similar behavior as before ownCloud 5 enter the user display name attribute in the following field. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users." => "El nombre de usuario interno será creado de forma predeterminada desde el atributo UUID. Esto asegura que el nombre de usuario es único y los caracteres no necesitan ser convertidos. En el nombre de usuario interno sólo se pueden usar estos caracteres: [ a-zA-Z0-9_.@- ]. El resto de caracteres son sustituidos por su correspondiente en ASCII o simplemente omitidos. En caso de duplicidades, se añadirá o incrementará un número. El nombre de usuario interno es usado para identificar un usuario. Es también el nombre predeterminado para la carpeta personal del usuario en ownCloud. También es parte de URLs remotas, por ejemplo, para todos los servicios *DAV. Con esta configuración el comportamiento predeterminado puede ser cambiado. Para conseguir un comportamiento similar a como era antes de ownCloud 5, introduzca el campo del nombre para mostrar del usuario en la siguiente caja. Déjelo vacío para el comportamiento predeterminado. Los cambios solo tendrán efecto en los usuarios LDAP mapeados (añadidos) recientemente.", +"Internal Username Attribute:" => "Atributo Nombre de usuario Interno:", +"Override UUID detection" => "Sobrescribir la detección UUID", +"By default, the UUID attribute is automatically detected. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "Por defecto, el atributo UUID es autodetectado. Este atributo es usado para identificar indudablemente usuarios y grupos LDAP. Además, el nombre de usuario interno será creado en base al UUID, si no ha sido especificado otro comportamiento arriba. Puedes sobrescribir la configuración y pasar un atributo de tu elección. Debes asegurarte de que el atributo de tu elección sea accesible por los usuarios y grupos y ser único. Déjalo en blanco para usar el comportamiento por defecto. Los cambios tendrán efecto solo en los usuarios y grupos de LDAP mapeados (añadidos) recientemente.", +"UUID Attribute for Users:" => "Atributo UUID para usuarios:", +"UUID Attribute for Groups:" => "Atributo UUID para Grupos:", +"Username-LDAP User Mapping" => "Asignación del Nombre de usuario de un usuario LDAP", +"Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have a internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "Los usuarios son usados para almacenar y asignar (meta) datos. Con el fin de identificar de forma precisa y reconocer usuarios, cada usuario de LDAP tendrá un nombre de usuario interno. Esto requiere un mapeo entre el nombre de usuario y el usuario del LDAP. El nombre de usuario creado es mapeado respecto al UUID del usuario en el LDAP. De forma adicional, el DN es cacheado para reducir la interacción entre el LDAP, pero no es usado para identificar. Si el DN cambia, los cambios serán aplicados. El nombre de usuario interno es usado por encima de todo. Limpiar los mapeos dejará restos por todas partes, no es sensible a configuración, ¡afecta a todas las configuraciones del LDAP! Nunca limpies los mapeos en un entorno de producción, únicamente en una fase de desarrollo o experimental.", +"Clear Username-LDAP User Mapping" => "Borrar la asignación de los Nombres de usuario de los usuarios LDAP", +"Clear Groupname-LDAP Group Mapping" => "Borrar la asignación de los Nombres de grupo de los grupos de LDAP" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_ldap/l10n/id.php b/apps/user_ldap/l10n/id.php index 6f4ddd21483..03071bb1d0f 100644 --- a/apps/user_ldap/l10n/id.php +++ b/apps/user_ldap/l10n/id.php @@ -30,6 +30,7 @@ $TRANSLATIONS = array( "One Base DN per line" => "Satu Base DN per baris", "You can specify Base DN for users and groups in the Advanced tab" => "Anda dapat menetapkan Base DN untuk pengguna dan grup dalam tab Lanjutan", "Back" => "Kembali", +"Continue" => "Lanjutkan", "<b>Warning:</b> The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." => "<b>Peringatan:</b> Modul LDAP PHP tidak terpasang, perangkat tidak akan bekerja. Silakan minta administrator sistem untuk memasangnya.", "Connection Settings" => "Pengaturan Koneksi", "Configuration Active" => "Konfigurasi Aktif", diff --git a/apps/user_ldap/l10n/ko.php b/apps/user_ldap/l10n/ko.php index bac25ec96b9..2d861f27ba8 100644 --- a/apps/user_ldap/l10n/ko.php +++ b/apps/user_ldap/l10n/ko.php @@ -1,19 +1,53 @@ <?php $TRANSLATIONS = array( +"Failed to clear the mappings." => "매핑을 비울 수 없습니다.", +"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 have a look at the logs for further details." => "설정이 올바르지 않습니다. 자세한 사항은 로그를 참고하십시오.", +"No action specified" => "동작이 지정되지 않음", +"No configuration specified" => "설정이 지정되지 않음", +"No data specified" => "데이터가 지정되지 않음", +" Could not set configuration %s" => " 설정 %s을(를) 지정할 수 없음", "Deletion failed" => "삭제 실패", -"Keep settings?" => "설정을 유지합니까?", +"Take over settings from recent server configuration?" => "최근 서버 설정을 다시 불러오시겠습니까?", +"Keep settings?" => "설정을 유지하겠습니까?", +"Cannot add server configuration" => "서버 설정을 추가할 수 없음", +"mappings cleared" => "매핑 삭제됨", +"Success" => "성공", "Error" => "오류", +"Configuration OK" => "설정 올바름", +"Configuration incorrect" => "설정 올바르지 않음", +"Configuration incomplete" => "설정 불완전함", "Select groups" => "그룹 선택", +"Select object classes" => "객체 클래스 선택", +"Select attributes" => "속성 선택", "Connection test succeeded" => "연결 시험 성공", "Connection test failed" => "연결 시험 실패", "Do you really want to delete the current Server Configuration?" => "현재 서버 설정을 지우시겠습니까?", -"_%s group found_::_%s groups found_" => array(""), -"_%s user found_::_%s users found_" => array(""), +"Confirm Deletion" => "삭제 확인", +"_%s group found_::_%s groups found_" => array("그룹 %s개 찾음"), +"_%s user found_::_%s users found_" => array("사용자 %s명 찾음"), +"Invalid Host" => "잘못된 호스트", +"Could not find the desired feature" => "필요한 기능을 찾을 수 없음", "Save" => "저장", +"Test Configuration" => "설정 시험", "Help" => "도움말", +"Limit the access to %s to groups meeting this criteria:" => "다음 조건을 만족하는 그룹만 %s 접근 허용:", +"only those object classes:" => "다음 객체 클래스만:", +"only from those groups:" => "다음 그룹에서만:", +"Edit raw filter instead" => "필터 직접 편집", +"Raw LDAP filter" => "LDAP 필터", +"The filter specifies which LDAP groups shall have access to the %s instance." => "이 필터는 %s에 접근할 수 있는 LDAP 그룹을 설정합니다.", +"groups found" => "그룹 찾음", +"What attribute shall be used as login name:" => "로그인 이름으로 사용할 속성:", +"LDAP Username:" => "LDAP 사용자 이름:", +"LDAP Email Address:" => "LDAP 이메일 주소:", +"Other Attributes:" => "기타 속성:", +"Defines the filter to apply, when login is attempted. %%uid replaces the username in the login action. Example: \"uid=%%uid\"" => "로그인을 시도할 때 적용할 필터를 입력하십시오. %%uid는 로그인 동작의 사용자 이름으로 대체됩니다. 예: \"uid=%%uid\"", "Add Server Configuration" => "서버 설정 추가", "Host" => "호스트", -"You can omit the protocol, except you require SSL. Then start with ldaps://" => "SSL을 사용하는 경우가 아니라면 프로토콜을 입력하지 않아도 됩니다. SSL을 사용하려면 ldaps://를 입력하십시오.", +"You can omit the protocol, except you require SSL. Then start with ldaps://" => "SSL을 사용하지 않으면 프로토콜을 입력하지 않아도 됩니다. SSL을 사용하려면 ldaps://를 입력하십시오.", "Port" => "포트", "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과 암호를 비워 두십시오.", @@ -21,29 +55,56 @@ $TRANSLATIONS = array( "For anonymous access, leave DN and Password empty." => "익명 접근을 허용하려면 DN과 암호를 비워 두십시오.", "One Base DN per line" => "기본 DN을 한 줄에 하나씩 입력하십시오", "You can specify Base DN for users and groups in the Advanced tab" => "고급 탭에서 사용자 및 그룹에 대한 기본 DN을 지정할 수 있습니다.", +"Limit the access to %s to users meeting this criteria:" => "다음 조건을 만족하는 사용자만 %s 접근 허용:", +"The filter specifies which LDAP users shall have access to the %s instance." => "이 필터는 %s에 접근할 수 있는 LDAP 사용자를 설정합니다.", +"users found" => "사용자 찾음", "Back" => "뒤로", "Continue" => "계속", +"<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." => "<b>경고:</b> user_ldap, user_webdavauth 앱은 서로 호환되지 않습니다. 예상하지 못한 행동을 할 수도 있습니다. 시스템 관리자에게 연락하여 둘 중 하나의 앱의 사용을 중단하십시오.", "<b>Warning:</b> The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." => "<b>경고:</b> PHP LDAP 모듈이 비활성화되어 있거나 설치되어 있지 않습니다. 백엔드를 사용할 수 없습니다. 시스템 관리자에게 설치를 요청하십시오.", "Connection Settings" => "연결 설정", -"Configuration Active" => "구성 활성화", -"When unchecked, this configuration will be skipped." => "선택하지 않으시면, 설정은 무시됩니다.", -"Backup (Replica) Host" => "백업 (복제) 포트", +"Configuration Active" => "구성 활성", +"When unchecked, this configuration will be skipped." => "선택하지 않으면 이 설정을 무시합니다.", +"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" => "주 서버 비활성화", +"Only connect to the replica server." => "복제 서버에만 연결합니다.", "Case insensitve LDAP server (Windows)" => "서버에서 대소문자를 구분하지 않음 (Windows)", "Turn off SSL certificate validation." => "SSL 인증서 유효성 검사를 해제합니다.", -"in seconds. A change empties the cache." => "초. 항목 변경 시 캐시가 갱신됩니다.", -"Directory Settings" => "디렉토리 설정", +"Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." => "테스트 목적으로만 사용하십시오! 이 옵션을 사용해야만 연결할 수 있으면 %s 서버에 LDAP 서버의 SSL 인증서를 설치하십시오.", +"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 display name." => "사용자 표시 이름을 생성할 때 사용할 LDAP 속성입니다.", "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 display name." => "그룹 표시 이름을 생성할 때 사용할 LDAP 속성입니다.", "Base Group Tree" => "기본 그룹 트리", "One Group Base DN per line" => "그룹 기본 DN을 한 줄에 하나씩 입력하십시오", "Group Search Attributes" => "그룹 검색 속성", "Group-Member association" => "그룹-회원 연결", -"in bytes" => "바이트", -"Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "사용자 이름을 사용하려면 비워 두십시오(기본값). 기타 경우 LDAP/AD 속성을 지정하십시오." +"Special Attributes" => "특수 속성", +"Quota Field" => "할당량 필드", +"Quota Default" => "기본 할당량", +"in bytes" => "바이트 단위", +"Email Field" => "이메일 필드", +"User Home Folder Naming Rule" => "사용자 홈 폴더 이름 규칙", +"Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "사용자 이름을 사용하려면 비워 두십시오(기본값). 기타 경우 LDAP/AD 속성을 지정하십시오.", +"Internal Username" => "내부 사용자 이름", +"By default the internal username will be created from the UUID attribute. It makes sure that the username is unique and characters do not need to be converted. The internal username has the restriction that only these characters are allowed: [ a-zA-Z0-9_.@- ]. Other characters are replaced with their ASCII correspondence or simply omitted. On collisions a number will be added/increased. The internal username is used to identify a user internally. It is also the default name for the user home folder. It is also a part of remote URLs, for instance for all *DAV services. With this setting, the default behavior can be overridden. To achieve a similar behavior as before ownCloud 5 enter the user display name attribute in the following field. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users." => "기본적으로 내부 사용자 이름은 UUID 속성에서 생성됩니다. 사용자 이름이 중복되지 않고 문자열을 변환할 필요가 없도록 합니다. 내부 사용자 이름에는 다음과 같은 문자열만 사용할 수 있습니다: [a-zA-Z0-9_.@-] 다른 문자열은 ASCII에 해당하는 문자열로 변경되거나 없는 글자로 취급됩니다. 충돌하는 경우 숫자가 붙거나 증가합니다. 내부 사용자 이름은 내부적으로 사용자를 식별하는 데 사용되며, 사용자 홈 폴더의 기본 이름입니다. 또한 *DAV와 같은 외부 URL의 일부로 사용됩니다. 이 설정을 사용하면 기본 설정을 재정의할 수 있습니다. ownCloud 5 이전의 행동을 사용하려면 아래 필드에 사용자의 표시 이름 속성을 입력하십시오. 비워 두면 기본 설정을 사용합니다. 새로 추가되거나 매핑된 LDAP 사용자에게만 적용됩니다.", +"Internal Username Attribute:" => "내부 사용자 이름 속성:", +"Override UUID detection" => "UUID 확인 재정의", +"By default, the UUID attribute is automatically detected. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "기본적으로 UUID 속성은 자동적으로 감지됩니다. UUID 속성은 LDAP 사용자와 그룹을 정확히 식별하는 데 사용됩니다. 지정하지 않은 경우 내부 사용자 이름은 UUID를 기반으로 생성됩니다. 이 설정을 다시 정의하고 임의의 속성을 지정할 수 있습니다. 사용자와 그룹 모두에게 속성을 적용할 수 있고 중복된 값이 없는지 확인하십시오. 비워 두면 기본 설정을 사용합니다. 새로 추가되거나 매핑된 LDAP 사용자와 그룹에만 적용됩니다.", +"UUID Attribute for Users:" => "사용자 UUID 속성:", +"UUID Attribute for Groups:" => "그룹 UUID 속성:", +"Username-LDAP User Mapping" => "사용자 이름-LDAP 사용자 매핑", +"Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have a internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "사용자 이름은 (메타) 데이터를 저장하고 할당하는 데 사용됩니다. 사용자를 정확하게 식별하기 위하여 각각 LDAP 사용자는 내부 사용자 이름을 갖습니다. 이는 사용자 이름과 LDAP 사용자 간의 매핑이 필요합니다. 생성된 사용자 이름은 LDAP 사용자의 UUID로 매핑됩니다. 추가적으로 LDAP 통신을 줄이기 위해서 DN이 캐시에 저장되지만 식별에 사용되지는 않습니다. DN이 변경되면 변경 사항이 기록됩니다. 내부 사용자 이름은 계속 사용됩니다. 매핑을 비우면 흔적이 남아 있게 됩니다. 매핑을 비우는 작업은 모든 LDAP 설정에 영향을 줍니다! 테스트 및 실험 단계에만 사용하고, 사용 중인 서버에서는 시도하지 마십시오.", +"Clear Username-LDAP User Mapping" => "사용자 이름-LDAP 사용자 매핑 비우기", +"Clear Groupname-LDAP Group Mapping" => "그룹 이름-LDAP 그룹 매핑 비우기" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/user_ldap/l10n/nb_NO.php b/apps/user_ldap/l10n/nb_NO.php index c9bca8d4c45..625ec79d76b 100644 --- a/apps/user_ldap/l10n/nb_NO.php +++ b/apps/user_ldap/l10n/nb_NO.php @@ -29,6 +29,7 @@ $TRANSLATIONS = array( "One Base DN per line" => "En hoved DN pr. linje", "You can specify Base DN for users and groups in the Advanced tab" => "Du kan spesifisere Base DN for brukere og grupper under Avansert fanen", "Back" => "Tilbake", +"Continue" => "Fortsett", "<b>Warning:</b> The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." => "<b>Warning:</b> PHP LDAP modulen er ikke installert, hjelperen vil ikke virke. Vennligst be din system-administrator om å installere den.", "Configuration Active" => "Konfigurasjon aktiv", "When unchecked, this configuration will be skipped." => "Når ikke huket av så vil denne konfigurasjonen bli hoppet over.", diff --git a/apps/user_webdavauth/l10n/el.php b/apps/user_webdavauth/l10n/el.php index 4a9ab3bafcc..e7403f9a8c3 100644 --- a/apps/user_webdavauth/l10n/el.php +++ b/apps/user_webdavauth/l10n/el.php @@ -1,6 +1,6 @@ <?php $TRANSLATIONS = array( -"WebDAV Authentication" => "Αυθεντικοποίηση μέσω WebDAV ", +"WebDAV Authentication" => "Πιστοποίηση μέσω WebDAV ", "Address: " => "Διεύθυνση:", "The user credentials will be sent to this address. This plugin checks the response and will interpret the HTTP statuscodes 401 and 403 as invalid credentials, and all other responses as valid credentials." => "Τα διαπιστευτήρια του χρήστη θα σταλούν σε αυτή την διεύθυνση. Αυτό το πρόσθετο ελέγχει την απόκριση και θα ερμηνεύσει τους κωδικούς κατάστασης HTTP 401 και 402 ως μη έγκυρα διαπιστευτήρια και όλες τις άλλες αποκρίσεις ως έγκυρα διαπιστευτήρια." ); diff --git a/apps/user_webdavauth/l10n/es_MX.php b/apps/user_webdavauth/l10n/es_MX.php new file mode 100644 index 00000000000..951aabe24ae --- /dev/null +++ b/apps/user_webdavauth/l10n/es_MX.php @@ -0,0 +1,7 @@ +<?php +$TRANSLATIONS = array( +"WebDAV Authentication" => "Autenticación mediante WevDAV", +"Address: " => "Dirección:", +"The user credentials will be sent to this address. This plugin checks the response and will interpret the HTTP statuscodes 401 and 403 as invalid credentials, and all other responses as valid credentials." => "Las credenciales de usuario se enviarán a esta dirección. Este complemento verifica la respuesta e interpretará los códigos de respuesta HTTP 401 y 403 como credenciales inválidas y todas las otras respuestas como credenciales válidas." +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_webdavauth/l10n/sl.php b/apps/user_webdavauth/l10n/sl.php index 269f9c3d25d..3bf3068c55f 100644 --- a/apps/user_webdavauth/l10n/sl.php +++ b/apps/user_webdavauth/l10n/sl.php @@ -2,6 +2,6 @@ $TRANSLATIONS = array( "WebDAV Authentication" => "Overitev WebDAV", "Address: " => "Naslov:", -"The user credentials will be sent to this address. This plugin checks the response and will interpret the HTTP statuscodes 401 and 403 as invalid credentials, and all other responses as valid credentials." => "Uporabniška poverila bodo poslana na ta naslov. Vstavek preveri odziv in kodi stanja 401 in 403 kot neveljavna poverila, vse ostale odzive pa kot veljavna." +"The user credentials will be sent to this address. This plugin checks the response and will interpret the HTTP statuscodes 401 and 403 as invalid credentials, and all other responses as valid credentials." => "Uporabniška poverila bodo poslana na naveden naslov. Vstavek preveri odziv in kodi stanja 401 in 403 obravnava kot neveljavna poverila, vse ostale odzive pa kot veljavna." ); $PLURAL_FORMS = "nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);"; diff --git a/core/js/js.js b/core/js/js.js index 5442039c294..3650d0520a7 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -48,8 +48,8 @@ function initL10N(app) { t.cache[app] = []; } } - if (typeof t.plural_function == 'undefined') { - t.plural_function = function (n) { + if (typeof t.plural_function[app] == 'undefined') { + t.plural_function[app] = function (n) { var p = (n != 1) ? 1 : 0; return { 'nplural' : 2, 'plural' : p }; }; @@ -74,7 +74,7 @@ function initL10N(app) { Gettext._locale_data[domain].head.plural_func = eval("("+code+")"); */ var code = 'var plural; var nplurals; '+pf+' return { "nplural" : nplurals, "plural" : (plural === true ? 1 : plural ? plural : 0) };'; - t.plural_function = new Function("n", code); + t.plural_function[app] = new Function("n", code); } else { console.log("Syntax error in language file. Plural-Forms header is invalid ["+t.plural_forms+"]"); } @@ -110,6 +110,10 @@ function t(app, text, vars, count){ } } t.cache = {}; +// different apps might or might not redefine the nplurals function correctly +// this is to make sure that a "broken" app doesn't mess up with the +// other app's plural function +t.plural_function = {}; /** * translate a string @@ -126,7 +130,7 @@ function n(app, text_singular, text_plural, count, vars) { if( typeof( t.cache[app][identifier] ) !== 'undefined' ){ var translation = t.cache[app][identifier]; if ($.isArray(translation)) { - var plural = t.plural_function(count); + var plural = t.plural_function[app](count); return t(app, translation[plural.plural], vars, count); } } @@ -478,11 +482,11 @@ OC.Breadcrumb={ }, _show:function(container, dir, leafname, leaflink){ var self = this; - + this._clear(container); - + // show home + path in subdirectories - if (dir && dir !== '/') { + if (dir) { //add home var link = OC.linkTo('files','index.php'); @@ -509,7 +513,7 @@ OC.Breadcrumb={ } }); } - + //add leafname if (leafname && leaflink) { this._push(container, leafname, leaflink); diff --git a/core/l10n/ak.php b/core/l10n/ak.php new file mode 100644 index 00000000000..09e36ba1786 --- /dev/null +++ b/core/l10n/ak.php @@ -0,0 +1,9 @@ +<?php +$TRANSLATIONS = array( +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n day ago_::_%n days ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("",""), +"_{count} file conflict_::_{count} file conflicts_" => array("","") +); +$PLURAL_FORMS = "nplurals=2; plural=n > 1;"; diff --git a/core/l10n/da.php b/core/l10n/da.php index 22be60bf03b..8aa68335458 100644 --- a/core/l10n/da.php +++ b/core/l10n/da.php @@ -102,6 +102,7 @@ $TRANSLATIONS = array( "Edit tags" => "Rediger tags", "Error loading dialog template: {error}" => "Fejl ved indlæsning dialog skabelon: {error}", "No tags selected for deletion." => "Ingen tags markeret til sletning.", +"Please reload the page." => "Genindlæs venligst siden", "The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "Opdateringen blev ikke udført korrekt. Rapporter venligst problemet til <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownClouds community</a>.", "The update was successful. Redirecting you to ownCloud now." => "Opdateringen blev udført korrekt. Du bliver nu viderestillet til ownCloud.", "%s password reset" => "%s adgangskode nulstillet", @@ -132,6 +133,7 @@ $TRANSLATIONS = array( "Access forbidden" => "Adgang forbudt", "Cloud not found" => "Sky ikke fundet", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Hej med dig\n\nDette blot for at lade dig vide, at %s har delt %s med dig.\nSe det her: %s\n\n", +"The share will expire on %s." => "Delingen vil udløbe om %s.", "Cheers!" => "Hej!", "Security Warning" => "Sikkerhedsadvarsel", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Din PHP-version er sårbar overfor et NULL Byte angreb (CVE-2006-7243)", @@ -152,6 +154,7 @@ $TRANSLATIONS = array( "Database host" => "Databasehost", "Finish setup" => "Afslut opsætning", "Finishing …" => "Færdigbehandling ...", +"This application requires JavaScript to be enabled for correct operation. Please <a href=\"http://enable-javascript.com/\" target=\"_blank\">enable JavaScript</a> and re-load this interface." => "Programmet forudsætter at JavaScript er aktiveret for at kunne afvikles korrekt. <a href=\"http://enable-javascript.com/\" target=\"_blank\">Aktiver JavaScript</a> og genindlæs siden..", "%s is available. Get more information on how to update." => "%s er tilgængelig. Få mere information om, hvordan du opdaterer.", "Log out" => "Log ud", "Automatic logon rejected!" => "Automatisk login afvist!", @@ -164,6 +167,8 @@ $TRANSLATIONS = array( "Log in" => "Log ind", "Alternative Logins" => "Alternative logins", "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>" => "Hej med dig,<br><br>Dette blot for at lade dig vide, at %s har delt \"%s\" med dig.<br><a href=\"%s\">Se det her!</a><br><br>Hej", +"This ownCloud instance is currently in single user mode." => "Denne ownCloud instans er lige nu i enkeltbruger tilstand.", +"This means only administrators can use the instance." => "Det betyder at det kun er administrator, som kan benytte ownCloud.", "Contact your system administrator if this message persists or appeared unexpectedly." => "Kontakt systemadministratoren, hvis denne meddelelse fortsætter eller optrådte uventet.", "Thank you for your patience." => "Tak for din tålmodighed.", "Updating ownCloud to version %s, this may take a while." => "Opdatere Owncloud til version %s, dette kan tage et stykke tid.", diff --git a/core/l10n/el.php b/core/l10n/el.php index ab6dcff47b8..f726a232f0d 100644 --- a/core/l10n/el.php +++ b/core/l10n/el.php @@ -5,9 +5,14 @@ $TRANSLATIONS = array( "Turned on maintenance mode" => "Η κατάσταση συντήρησης ενεργοποιήθηκε", "Turned off maintenance mode" => "Η κατάσταση συντήρησης απενεργοποιήθηκε", "Updated database" => "Ενημερωμένη βάση δεδομένων", +"Updating filecache, this may take really long..." => "Ενημέρωση αποθηκευμένων αρχείων, αυτό μπορεί να πάρα πολύ ώρα...", +"Updated filecache" => "Ενημέρωση αποθηκευμένων αρχείων", +"... %d%% done ..." => "... %d%% ολοκληρώθηκαν ...", "No image or file provided" => "Δεν δόθηκε εικόνα ή αρχείο", "Unknown filetype" => "Άγνωστος τύπος αρχείου", "Invalid image" => "Μη έγκυρη εικόνα", +"No temporary profile picture available, try again" => "Δεν υπάρχει προσωρινή φωτογραφία προφίλ διαθέσιμη, δοκιμάστε ξανά", +"No crop data provided" => "Δεν δόθηκαν δεδομένα περικοπής", "Sunday" => "Κυριακή", "Monday" => "Δευτέρα", "Tuesday" => "Τρίτη", @@ -30,25 +35,29 @@ $TRANSLATIONS = array( "Settings" => "Ρυθμίσεις", "seconds ago" => "δευτερόλεπτα πριν", "_%n minute ago_::_%n minutes ago_" => array("%n λεπτό πριν","%n λεπτά πριν"), -"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("%n ώρα πριν","%n ώρες πριν"), "today" => "σήμερα", "yesterday" => "χτες", -"_%n day ago_::_%n days ago_" => array("",""), +"_%n day ago_::_%n days ago_" => array("%n ημέρα πριν","%n ημέρες πριν"), "last month" => "τελευταίο μήνα", -"_%n month ago_::_%n months ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("%n μήνας πριν","%n μήνες πριν"), "months ago" => "μήνες πριν", "last year" => "τελευταίο χρόνο", "years ago" => "χρόνια πριν", "Choose" => "Επιλέξτε", +"Error loading file picker template: {error}" => "Σφάλμα κατά την φόρτωση προτύπου επιλογέα αρχείων: {σφάλμα}", "Yes" => "Ναι", "No" => "Όχι", "Ok" => "Οκ", -"_{count} file conflict_::_{count} file conflicts_" => array("",""), +"Error loading message template: {error}" => "Σφάλμα φόρτωσης προτύπου μηνυμάτων: {σφάλμα}", +"_{count} file conflict_::_{count} file conflicts_" => array("{count} αρχείο διαφέρει","{count} αρχεία διαφέρουν"), +"One file conflict" => "Ένα αρχείο διαφέρει", "Which files do you want to keep?" => "Ποια αρχεία θέλετε να κρατήσετε;", "If you select both versions, the copied file will have a number added to its name." => "Εάν επιλέξετε και τις δυο εκδοχές, ένας αριθμός θα προστεθεί στο αντιγραφόμενο αρχείο.", "Cancel" => "Άκυρο", "Continue" => "Συνέχεια", "(all selected)" => "(όλα τα επιλεγμένα)", +"({count} selected)" => "({count} επιλέχθησαν)", "Shared" => "Κοινόχρηστα", "Share" => "Διαμοιρασμός", "Error" => "Σφάλμα", @@ -90,8 +99,12 @@ $TRANSLATIONS = array( "Delete" => "Διαγραφή", "Add" => "Προσθήκη", "Edit tags" => "Επεξεργασία ετικετών", +"Error loading dialog template: {error}" => "Σφάλμα φόρτωσης προτύπου διαλόγων: {σφάλμα}", +"No tags selected for deletion." => "Καμμία ετικέτα δεν επιλέχθηκε για διαγραφή.", +"Please reload the page." => "Παρακαλώ επαναφορτώστε τη σελίδα.", "The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "Η ενημέρωση ήταν ανεπιτυχής. Παρακαλώ στείλτε αναφορά στην <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">κοινότητα ownCloud</a>.", "The update was successful. Redirecting you to ownCloud now." => "Η ενημέρωση ήταν επιτυχής. Μετάβαση στο ownCloud.", +"%s password reset" => "%s επαναφορά κωδικού πρόσβασης", "Use the following link to reset your password: {link}" => "Χρησιμοποιήστε τον ακόλουθο σύνδεσμο για να επανεκδόσετε τον κωδικό: {link}", "The link to reset your password has been sent to your email.<br>If you do not receive it within a reasonable amount of time, check your spam/junk folders.<br>If it is not there ask your local administrator ." => "Ο σύνδεσμος για να επανακτήσετε τον κωδικό σας έχει σταλεί στο email <br>αν δεν το λάβετε μέσα σε ορισμένο διάστημα, ελέγξετε τους φακελλους σας spam/junk <br> αν δεν είναι εκεί ρωτήστε τον τοπικό σας διαχειριστή ", "Request failed!<br>Did you make sure your email/username was right?" => "Η αίτηση απέτυχε! Βεβαιωθηκατε ότι το email σας / username ειναι σωστο? ", @@ -109,10 +122,18 @@ $TRANSLATIONS = array( "Apps" => "Εφαρμογές", "Admin" => "Διαχειριστής", "Help" => "Βοήθεια", +"Error loading tags" => "Σφάλμα φόρτωσης ετικετών", "Tag already exists" => "Υπάρχει ήδη η ετικέτα", +"Error deleting tag(s)" => "Σφάλμα διαγραφής ετικέτας(ων)", +"Error tagging" => "Σφάλμα προσθήκης ετικέτας", +"Error untagging" => "Σφάλμα αφαίρεσης ετικέτας", +"Error favoriting" => "Σφάλμα προσθήκης στα αγαπημένα", +"Error unfavoriting" => "Σφάλμα αφαίρεσης από τα αγαπημένα", "Access forbidden" => "Δεν επιτρέπεται η πρόσβαση", "Cloud not found" => "Δεν βρέθηκε νέφος", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Γειά χαρά,\n\nαπλά σας ενημερώνω πως ο %s μοιράστηκε το %s με εσάς.\nΔείτε το: %s\n\n", "The share will expire on %s." => "Ο διαμοιρασμός θα λήξει σε %s.", +"Cheers!" => "Χαιρετισμούς!", "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 %s securely." => "Παρακαλώ ενημερώστε την εγκατάσταση της PHP ώστε να χρησιμοποιήσετε το %s με ασφάλεια.", @@ -132,6 +153,7 @@ $TRANSLATIONS = array( "Database host" => "Διακομιστής βάσης δεδομένων", "Finish setup" => "Ολοκλήρωση εγκατάστασης", "Finishing …" => "Ολοκλήρωση...", +"This application requires JavaScript to be enabled for correct operation. Please <a href=\"http://enable-javascript.com/\" target=\"_blank\">enable JavaScript</a> and re-load this interface." => "Αυτή η εφαρμογή απαιτεί η JavaScript να είναι ενεργοποιημένη για σωστή λειτουργία. Παρακαλώ <a href=\"http://enable-javascript.com/\" target=\"_blank\">ενεργοποιήστε τη JavaScript</a> και επαναφορτώστε αυτή τη διεπαφή.", "%s is available. Get more information on how to update." => "%s είναι διαθέσιμη. Δείτε περισσότερες πληροφορίες στο πώς να αναβαθμίσετε.", "Log out" => "Αποσύνδεση", "Automatic logon rejected!" => "Απορρίφθηκε η αυτόματη σύνδεση!", @@ -143,6 +165,9 @@ $TRANSLATIONS = array( "remember" => "απομνημόνευση", "Log in" => "Είσοδος", "Alternative Logins" => "Εναλλακτικές Συνδέσεις", +"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>" => "Γειά χαρά,<br><br>απλά σας ενημερώνω πως ο %s μοιράστηκε το »%s« με εσάς.<br><a href=\"%s\">Δείτε το!</a><br><br>", +"This ownCloud instance is currently in single user mode." => "Αυτή η εγκατάσταση ownCloud είναι τώρα σε κατάσταση ενός χρήστη.", +"This means only administrators can use the instance." => "Αυτό σημαίνει ότι μόνο διαχειριστές μπορούν να χρησιμοποιήσουν την εγκατάσταση.", "Contact your system administrator if this message persists or appeared unexpectedly." => "Επικοινωνήστε με το διαχειριστή του συστήματος αν αυτό το μήνυμα συνεχίζει να εμφανίζεται ή εμφανίστηκε απρόσμενα.", "Thank you for your patience." => "Σας ευχαριστούμε για την υπομονή σας.", "Updating ownCloud to version %s, this may take a while." => "Ενημερώνοντας το ownCloud στην έκδοση %s,μπορεί να πάρει λίγο χρόνο.", diff --git a/core/l10n/es_CL.php b/core/l10n/es_CL.php new file mode 100644 index 00000000000..819cc68a1c9 --- /dev/null +++ b/core/l10n/es_CL.php @@ -0,0 +1,12 @@ +<?php +$TRANSLATIONS = array( +"Settings" => "Configuración", +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n day ago_::_%n days ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("",""), +"_{count} file conflict_::_{count} file conflicts_" => array("",""), +"Password" => "Clave", +"Username" => "Usuario" +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/es_MX.php b/core/l10n/es_MX.php index ffcdde48d47..776233c1ab5 100644 --- a/core/l10n/es_MX.php +++ b/core/l10n/es_MX.php @@ -1,9 +1,178 @@ <?php $TRANSLATIONS = array( -"_%n minute ago_::_%n minutes ago_" => array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"_%n day ago_::_%n days ago_" => array("",""), -"_%n month ago_::_%n months ago_" => array("",""), -"_{count} file conflict_::_{count} file conflicts_" => array("","") +"%s shared »%s« with you" => "%s ha compartido »%s« contigo", +"Couldn't send mail to following users: %s " => "No se pudo enviar el mensaje a los siguientes usuarios: %s", +"Turned on maintenance mode" => "Modo mantenimiento activado", +"Turned off maintenance mode" => "Modo mantenimiento desactivado", +"Updated database" => "Base de datos actualizada", +"Updating filecache, this may take really long..." => "Actualizando caché de archivos, esto puede tardar bastante tiempo...", +"Updated filecache" => "Caché de archivos actualizada", +"... %d%% done ..." => "... %d%% hecho ...", +"No image or file provided" => "No se especificó ningún archivo o imagen", +"Unknown filetype" => "Tipo de archivo desconocido", +"Invalid image" => "Imagen inválida", +"No temporary profile picture available, try again" => "No hay disponible una imagen temporal de perfil, pruebe de nuevo", +"No crop data provided" => "No se proporcionó datos del recorte", +"Sunday" => "Domingo", +"Monday" => "Lunes", +"Tuesday" => "Martes", +"Wednesday" => "Miércoles", +"Thursday" => "Jueves", +"Friday" => "Viernes", +"Saturday" => "Sábado", +"January" => "Enero", +"February" => "Febrero", +"March" => "Marzo", +"April" => "Abril", +"May" => "Mayo", +"June" => "Junio", +"July" => "Julio", +"August" => "Agosto", +"September" => "Septiembre", +"October" => "Octubre", +"November" => "Noviembre", +"December" => "Diciembre", +"Settings" => "Ajustes", +"seconds ago" => "segundos antes", +"_%n minute ago_::_%n minutes ago_" => array("Hace %n minuto","Hace %n minutos"), +"_%n hour ago_::_%n hours ago_" => array("Hace %n hora","Hace %n horas"), +"today" => "hoy", +"yesterday" => "ayer", +"_%n day ago_::_%n days ago_" => array("Hace %n día","Hace %n días"), +"last month" => "el mes pasado", +"_%n month ago_::_%n months ago_" => array("Hace %n mes","Hace %n meses"), +"months ago" => "meses antes", +"last year" => "el año pasado", +"years ago" => "años antes", +"Choose" => "Seleccionar", +"Error loading file picker template: {error}" => "Error cargando plantilla del seleccionador de archivos: {error}", +"Yes" => "Sí", +"No" => "No", +"Ok" => "Aceptar", +"Error loading message template: {error}" => "Error cargando plantilla del mensaje: {error}", +"_{count} file conflict_::_{count} file conflicts_" => array("{count} conflicto de archivo","{count} conflictos de archivo"), +"One file conflict" => "Un conflicto de archivo", +"Which files do you want to keep?" => "¿Que archivos deseas mantener?", +"If you select both versions, the copied file will have a number added to its name." => "Si seleccionas ambas versiones, el archivo copiado tendrá añadido un número en su nombre.", +"Cancel" => "Cancelar", +"Continue" => "Continuar", +"(all selected)" => "(todos seleccionados)", +"({count} selected)" => "({count} seleccionados)", +"Error loading file exists template" => "Error cargando plantilla de archivo existente", +"Shared" => "Compartido", +"Share" => "Compartir", +"Error" => "Error", +"Error while sharing" => "Error al compartir", +"Error while unsharing" => "Error al dejar de compartir", +"Error while changing permissions" => "Error al cambiar permisos", +"Shared with you and the group {group} by {owner}" => "Compartido contigo y el grupo {group} por {owner}", +"Shared with you by {owner}" => "Compartido contigo por {owner}", +"Share with user or group …" => "Compartido con el usuario o con el grupo …", +"Share link" => "Enlace compartido", +"Password protect" => "Protección con contraseña", +"Password" => "Contraseña", +"Allow Public Upload" => "Permitir Subida Pública", +"Email link to person" => "Enviar enlace por correo electrónico a una persona", +"Send" => "Enviar", +"Set expiration date" => "Establecer fecha de caducidad", +"Expiration date" => "Fecha de caducidad", +"Share via email:" => "Compartir por correo electrónico:", +"No people found" => "No se encontró gente", +"group" => "grupo", +"Resharing is not allowed" => "No se permite compartir de nuevo", +"Shared in {item} with {user}" => "Compartido en {item} con {user}", +"Unshare" => "Dejar de compartir", +"notify by email" => "notificar al usuario por correo electrónico", +"can edit" => "puede editar", +"access control" => "control de acceso", +"create" => "crear", +"update" => "actualizar", +"delete" => "eliminar", +"share" => "compartir", +"Password protected" => "Protegido con contraseña", +"Error unsetting expiration date" => "Error eliminando fecha de caducidad", +"Error setting expiration date" => "Error estableciendo fecha de caducidad", +"Sending ..." => "Enviando...", +"Email sent" => "Correo electrónico enviado", +"Warning" => "Precaución", +"The object type is not specified." => "El tipo de objeto no está especificado.", +"Enter new" => "Ingresar nueva", +"Delete" => "Eliminar", +"Add" => "Agregar", +"Edit tags" => "Editar etiquetas", +"Error loading dialog template: {error}" => "Error cargando plantilla de diálogo: {error}", +"No tags selected for deletion." => "No hay etiquetas seleccionadas para borrar.", +"Please reload the page." => "Vuelva a cargar la página.", +"The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "La actualización ha fracasado. Por favor, informe de este problema a la <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">Comunidad de ownCloud</a>.", +"The update was successful. Redirecting you to ownCloud now." => "La actualización se ha realizado con éxito. Redireccionando a ownCloud ahora.", +"%s password reset" => "%s restablecer contraseña", +"Use the following link to reset your password: {link}" => "Utilice el siguiente enlace para restablecer su contraseña: {link}", +"The link to reset your password has been sent to your email.<br>If you do not receive it within a reasonable amount of time, check your spam/junk folders.<br>If it is not there ask your local administrator ." => "El enlace para restablecer la contraseña ha sido enviada a su correo electrónico. <br> Si no lo recibe en un plazo razonable de tiempo, revise su carpeta de spam / correo no deseado. <br> Si no está allí, pregunte a su administrador local.", +"Request failed!<br>Did you make sure your email/username was right?" => "La petición ha fallado! <br> ¿Está seguro de que su dirección de correo electrónico o nombre de usuario era correcto?", +"You will receive a link to reset your password via Email." => "Recibirá un enlace por correo electrónico para restablecer su contraseña", +"Username" => "Nombre de usuario", +"Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset. If you are not sure what to do, please contact your administrator before you continue. Do you really want to continue?" => "Sus archivos están cifrados. Si no ha habilitado la clave de recurperación, no habrá forma de recuperar sus datos luego de que la contraseña sea reseteada. Si no está seguro de qué hacer, contacte a su administrador antes de continuar. ¿Realmente desea continuar?", +"Yes, I really want to reset my password now" => "Sí. Realmente deseo resetear mi contraseña ahora", +"Reset" => "Reiniciar", +"Your password was reset" => "Su contraseña fue restablecida", +"To login page" => "A la página de inicio de sesión", +"New password" => "Nueva contraseña", +"Reset password" => "Restablecer contraseña", +"Personal" => "Personal", +"Users" => "Usuarios", +"Apps" => "Aplicaciones", +"Admin" => "Administración", +"Help" => "Ayuda", +"Error loading tags" => "Error cargando etiquetas.", +"Tag already exists" => "La etiqueta ya existe", +"Error deleting tag(s)" => "Error borrando etiqueta(s)", +"Error tagging" => "Error al etiquetar", +"Error untagging" => "Error al quitar etiqueta", +"Error favoriting" => "Error al marcar como favorito", +"Error unfavoriting" => "Error al quitar como favorito", +"Access forbidden" => "Acceso denegado", +"Cloud not found" => "No se encuentra la nube", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Hola:\n\nTan solo queremos informarte que %s compartió %s contigo.\nMíralo aquí: %s\n\n", +"The share will expire on %s." => "El objeto dejará de ser compartido el %s.", +"Cheers!" => "¡Saludos!", +"Security Warning" => "Advertencia de seguridad", +"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Su versión de PHP es vulnerable al ataque de Byte NULL (CVE-2006-7243)", +"Please update your PHP installation to use %s securely." => "Por favor, actualice su instalación PHP para usar %s con seguridad.", +"No secure random number generator is available, please enable the PHP OpenSSL extension." => "No está disponible un generador de números aleatorios seguro, por favor habilite la extensión OpenSSL de PHP.", +"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Sin un generador de números aleatorios seguro, un atacante podría predecir los tokens de restablecimiento de contraseñas y tomar el control de su cuenta.", +"Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Su directorio de datos y sus archivos probablemente sean accesibles a través de internet ya que el archivo .htaccess no funciona.", +"For information how to properly configure your server, please see the <a href=\"%s\" target=\"_blank\">documentation</a>." => "Para información de cómo configurar apropiadamente su servidor, por favor vea la <a href=\"%s\" target=\"_blank\">documentación</a>.", +"Create an <strong>admin account</strong>" => "Crear una <strong>cuenta de administrador</strong>", +"Advanced" => "Avanzado", +"Data folder" => "Directorio de datos", +"Configure the database" => "Configurar la base de datos", +"will be used" => "se utilizarán", +"Database user" => "Usuario de la base de datos", +"Database password" => "Contraseña de la base de datos", +"Database name" => "Nombre de la base de datos", +"Database tablespace" => "Espacio de tablas de la base de datos", +"Database host" => "Host de la base de datos", +"Finish setup" => "Completar la instalación", +"Finishing …" => "Finalizando …", +"This application requires JavaScript to be enabled for correct operation. Please <a href=\"http://enable-javascript.com/\" target=\"_blank\">enable JavaScript</a> and re-load this interface." => "Esta aplicación requiere que se habilite JavaScript para su correcta operación. Por favor <a href=\"http://enable-javascript.com/es\" target=\"_blank\">habilite JavaScript</a> y vuelva a cargar esta interfaz.", +"%s is available. Get more information on how to update." => "%s esta disponible. Obtener mas información de como actualizar.", +"Log out" => "Salir", +"Automatic logon rejected!" => "¡Inicio de sesión automático rechazado!", +"If you did not change your password recently, your account may be compromised!" => "Si no ha cambiado su contraseña recientemente, ¡puede que su cuenta esté comprometida!", +"Please change your password to secure your account again." => "Por favor cambie su contraseña para asegurar su cuenta nuevamente.", +"Server side authentication failed!" => "La autenticación a fallado en el servidor.", +"Please contact your administrator." => "Por favor, contacte con el administrador.", +"Lost your password?" => "¿Ha perdido su contraseña?", +"remember" => "recordar", +"Log in" => "Entrar", +"Alternative Logins" => "Accesos Alternativos", +"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>" => "Hola:<br><br>tan solo queremos informarte que %s compartió «%s» contigo.<br><a href=\"%s\">¡Míralo acá!</a><br><br>", +"This ownCloud instance is currently in single user mode." => "Esta instalación de ownCloud se encuentra en modo de usuario único.", +"This means only administrators can use the instance." => "Esto quiere decir que solo un administrador puede usarla.", +"Contact your system administrator if this message persists or appeared unexpectedly." => "Contacte con su administrador de sistemas si este mensaje persiste o aparece de forma inesperada.", +"Thank you for your patience." => "Gracias por su paciencia.", +"Updating ownCloud to version %s, this may take a while." => "Actualizando ownCloud a la versión %s, esto puede demorar un tiempo.", +"This ownCloud instance is currently being updated, which may take a while." => "Esta versión de ownCloud se está actualizando, esto puede demorar un tiempo.", +"Please reload this page after a short time to continue using ownCloud." => "Por favor, recargue esta instancia de onwcloud tras un corto periodo de tiempo y continue usándolo." ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/fr.php b/core/l10n/fr.php index c58305ea7a9..d73355a4e2c 100644 --- a/core/l10n/fr.php +++ b/core/l10n/fr.php @@ -154,6 +154,7 @@ $TRANSLATIONS = array( "Database host" => "Serveur de la base de données", "Finish setup" => "Terminer l'installation", "Finishing …" => "En cours de finalisation...", +"This application requires JavaScript to be enabled for correct operation. Please <a href=\"http://enable-javascript.com/\" target=\"_blank\">enable JavaScript</a> and re-load this interface." => "Cette application nécessite que JavaScript soit activé pour fonctionner correctement. Veuillez <a href=\"http://enable-javascript.com/\" target=\"_blank\">activer JavaScript</a> puis charger à nouveau cette interface.", "%s is available. Get more information on how to update." => "%s est disponible. Obtenez plus d'informations sur la façon de mettre à jour.", "Log out" => "Se déconnecter", "Automatic logon rejected!" => "Connexion automatique rejetée !", diff --git a/core/l10n/hu_HU.php b/core/l10n/hu_HU.php index 991ae3a838d..b0b5588dfc8 100644 --- a/core/l10n/hu_HU.php +++ b/core/l10n/hu_HU.php @@ -102,6 +102,7 @@ $TRANSLATIONS = array( "Edit tags" => "Címkék szerkesztése", "Error loading dialog template: {error}" => "Hiba a párbeszédpanel-sablon betöltésekor: {error}", "No tags selected for deletion." => "Nincs törlésre kijelölt címke.", +"Please reload the page." => "Kérlek tölts be újra az oldalt", "The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "A frissítés nem sikerült. Kérem értesítse erről a problémáról az <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud közösséget</a>.", "The update was successful. Redirecting you to ownCloud now." => "A frissítés sikeres volt. Visszairányítjuk az ownCloud szolgáltatáshoz.", "%s password reset" => "%s jelszó visszaállítás", @@ -132,6 +133,7 @@ $TRANSLATIONS = array( "Access forbidden" => "A hozzáférés nem engedélyezett", "Cloud not found" => "A felhő nem található", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Szia!\\n\n\\n\nÉrtesítünk, hogy %s megosztotta veled a következőt: %s.\\n\nItt tudod megnézni: %s\\n\n\\n", +"The share will expire on %s." => "A megosztás lejár ekkor %s", "Cheers!" => "Üdv.", "Security Warning" => "Biztonsági figyelmeztetés", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Az Ön PHP verziója sebezhető a NULL bájtos támadással szemben (CVE-2006-7243)", @@ -152,6 +154,7 @@ $TRANSLATIONS = array( "Database host" => "Adatbázis szerver", "Finish setup" => "A beállítások befejezése", "Finishing …" => "Befejezés ...", +"This application requires JavaScript to be enabled for correct operation. Please <a href=\"http://enable-javascript.com/\" target=\"_blank\">enable JavaScript</a> and re-load this interface." => "Az alkalmazás megfelelő működéséhez szükség van JavaScript-re. <a href=\"http://enable-javascript.com/\" target=\"_blank\">Engedélyezd a JavaScript-et</a> és töltsd újra az interfészt.", "%s is available. Get more information on how to update." => "%s rendelkezésre áll. További információ a frissítéshez.", "Log out" => "Kilépés", "Automatic logon rejected!" => "Az automatikus bejelentkezés sikertelen!", @@ -164,6 +167,8 @@ $TRANSLATIONS = array( "Log in" => "Bejelentkezés", "Alternative Logins" => "Alternatív bejelentkezés", "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>" => "Szia!<br><br>Értesítünk, hogy %s megosztotta veled a következőt: »%s«.<br><a href=\"%s\">Ide kattintva tudod megnézni</a><br><br>", +"This ownCloud instance is currently in single user mode." => "Az Owncloud frissítés elezdődött egy felhasználós módban.", +"This means only administrators can use the instance." => "Ez azt jelenti, hogy csak az adminisztrátor használhatja ezt a példányt", "Contact your system administrator if this message persists or appeared unexpectedly." => "Ha ezt az üzenetet már többször látod akkor keresd meg a rendszer adminját.", "Thank you for your patience." => "Köszönjük a türelmét.", "Updating ownCloud to version %s, this may take a while." => "Owncloud frissítés a %s verzióra folyamatban. Kis türelmet.", diff --git a/core/l10n/id.php b/core/l10n/id.php index aca262a8f30..2fa7ae8e3c5 100644 --- a/core/l10n/id.php +++ b/core/l10n/id.php @@ -1,5 +1,18 @@ <?php $TRANSLATIONS = array( +"%s shared »%s« with you" => "%s membagikan »%s« dengan anda", +"Couldn't send mail to following users: %s " => "Tidak dapat mengirim Email ke pengguna berikut: %s", +"Turned on maintenance mode" => "Hidupkan mode perawatan", +"Turned off maintenance mode" => "Matikan mode perawatan", +"Updated database" => "Basis data terbaru", +"Updating filecache, this may take really long..." => "Memperbarui filecache, mungkin memerlukan waktu sangat lama...", +"Updated filecache" => "Filecache terbaru", +"... %d%% done ..." => "... %d%% selesai ...", +"No image or file provided" => "Tidak ada gambar atau file yang disediakan", +"Unknown filetype" => "Tipe berkas tak dikenal", +"Invalid image" => "Gambar tidak sah", +"No temporary profile picture available, try again" => "Tidak ada gambar profil sementara yang tersedia, coba lagi", +"No crop data provided" => "Tidak ada data krop tersedia", "Sunday" => "Minggu", "Monday" => "Senin", "Tuesday" => "Selasa", @@ -19,37 +32,49 @@ $TRANSLATIONS = array( "October" => "Oktober", "November" => "November", "December" => "Desember", -"Settings" => "Setelan", +"Settings" => "Pengaturan", "seconds ago" => "beberapa detik yang lalu", -"_%n minute ago_::_%n minutes ago_" => array(""), -"_%n hour ago_::_%n hours ago_" => array(""), +"_%n minute ago_::_%n minutes ago_" => array("%n menit yang lalu"), +"_%n hour ago_::_%n hours ago_" => array("%n jam yang lalu"), "today" => "hari ini", "yesterday" => "kemarin", -"_%n day ago_::_%n days ago_" => array(""), +"_%n day ago_::_%n days ago_" => array("%n hari yang lalu"), "last month" => "bulan kemarin", -"_%n month ago_::_%n months ago_" => array(""), +"_%n month ago_::_%n months ago_" => array("%n bulan yang lalu"), "months ago" => "beberapa bulan lalu", "last year" => "tahun kemarin", "years ago" => "beberapa tahun lalu", "Choose" => "Pilih", +"Error loading file picker template: {error}" => "Galat memuat templat berkas pemilih: {error}", "Yes" => "Ya", "No" => "Tidak", "Ok" => "Oke", -"_{count} file conflict_::_{count} file conflicts_" => array(""), +"Error loading message template: {error}" => "Galat memuat templat pesan: {error}", +"_{count} file conflict_::_{count} file conflicts_" => array("{count} berkas konflik"), +"One file conflict" => "Satu berkas konflik", +"Which files do you want to keep?" => "Berkas mana yang ingin anda pertahankan?", +"If you select both versions, the copied file will have a number added to its name." => "Jika anda memilih kedua versi, berkas yang disalin akan memiliki nomor yang ditambahkan sesuai namanya.", "Cancel" => "Batal", +"Continue" => "Lanjutkan", +"(all selected)" => "(semua terpilih)", +"({count} selected)" => "({count} terpilih)", +"Error loading file exists template" => "Galat memuat templat berkas yang sudah ada", "Shared" => "Dibagikan", "Share" => "Bagikan", "Error" => "Galat", "Error while sharing" => "Galat ketika membagikan", "Error while unsharing" => "Galat ketika membatalkan pembagian", "Error while changing permissions" => "Galat ketika mengubah izin", -"Shared with you and the group {group} by {owner}" => "Dibagikan dengan Anda dan grup {group} oleh {owner}", -"Shared with you by {owner}" => "Dibagikan dengan Anda oleh {owner}", +"Shared with you and the group {group} by {owner}" => "Dibagikan dengan anda dan grup {group} oleh {owner}", +"Shared with you by {owner}" => "Dibagikan dengan anda oleh {owner}", +"Share with user or group …" => "Bagikan dengan pengguna atau grup ...", +"Share link" => "Bagikan tautan", "Password protect" => "Lindungi dengan sandi", "Password" => "Sandi", +"Allow Public Upload" => "Izinkan Unggahan Publik", "Email link to person" => "Emailkan tautan ini ke orang", "Send" => "Kirim", -"Set expiration date" => "Setel tanggal kedaluwarsa", +"Set expiration date" => "Atur tanggal kedaluwarsa", "Expiration date" => "Tanggal kedaluwarsa", "Share via email:" => "Bagian lewat email:", "No people found" => "Tidak ada orang ditemukan", @@ -57,42 +82,66 @@ $TRANSLATIONS = array( "Resharing is not allowed" => "Berbagi ulang tidak diizinkan", "Shared in {item} with {user}" => "Dibagikan dalam {item} dengan {user}", "Unshare" => "Batalkan berbagi", -"can edit" => "dapat mengedit", +"notify by email" => "notifikasi via email", +"can edit" => "dapat sunting", "access control" => "kontrol akses", "create" => "buat", "update" => "perbarui", "delete" => "hapus", "share" => "bagikan", -"Password protected" => "Dilindungi sandi", +"Password protected" => "Sandi dilindungi", "Error unsetting expiration date" => "Galat ketika menghapus tanggal kedaluwarsa", -"Error setting expiration date" => "Galat ketika menyetel tanggal kedaluwarsa", +"Error setting expiration date" => "Galat ketika mengatur tanggal kedaluwarsa", "Sending ..." => "Mengirim ...", "Email sent" => "Email terkirim", "Warning" => "Peringatan", "The object type is not specified." => "Tipe objek tidak ditentukan.", +"Enter new" => "Masukkan baru", "Delete" => "Hapus", "Add" => "Tambah", +"Edit tags" => "Sunting tag", +"Error loading dialog template: {error}" => "Galat memuat templat dialog: {error}", +"No tags selected for deletion." => "Tidak ada tag yang terpilih untuk dihapus.", +"Please reload the page." => "Silakan muat ulang halaman.", "The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "Pembaruan gagal. Silakan laporkan masalah ini ke <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">komunitas ownCloud</a>.", "The update was successful. Redirecting you to ownCloud now." => "Pembaruan sukses. Anda akan diarahkan ulang ke ownCloud.", +"%s password reset" => "%s sandi diatur ulang", "Use the following link to reset your password: {link}" => "Gunakan tautan berikut untuk menyetel ulang sandi Anda: {link}", +"The link to reset your password has been sent to your email.<br>If you do not receive it within a reasonable amount of time, check your spam/junk folders.<br>If it is not there ask your local administrator ." => "Tautan untuk mengatur ulang sandi anda telah dikirimkan ke email Anda.<br>Jika anda tidak menerimanya selama waktu yang wajar, periksa folder spam/sampah Anda.<br>Jika tidak ada juga, coba tanyakanlah kepada administrator lokal anda.", +"Request failed!<br>Did you make sure your email/username was right?" => "Permintaan gagal!<br>Apakah anda yakin email/nama pengguna anda benar?", "You will receive a link to reset your password via Email." => "Anda akan menerima tautan penyetelan ulang sandi lewat Email.", "Username" => "Nama pengguna", -"Your password was reset" => "Sandi Anda telah disetel ulang", +"Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset. If you are not sure what to do, please contact your administrator before you continue. Do you really want to continue?" => "Berkas anda terenkripsi. Jika sebelumnya anda belum mengaktifkan kunci pemulihan, tidak akan ada cara lagi untuk mendapatkan data anda kembali setelah sandi anda diatur ulang. Jika anda tidak yakin dengan apa yang harus dilakukan, silakan hubungi administrator anda sebelum melanjutkan. Apakah anda benar-benar ingin melanjutkan?", +"Yes, I really want to reset my password now" => "Ya, Saya sungguh ingin mengatur ulang sandi saya sekarang", +"Reset" => "Atur Ulang", +"Your password was reset" => "Sandi Anda telah diatur ulang", "To login page" => "Ke halaman masuk", "New password" => "Sandi baru", -"Reset password" => "Setel ulang sandi", +"Reset password" => "Atur ulang sandi", "Personal" => "Pribadi", "Users" => "Pengguna", "Apps" => "Aplikasi", "Admin" => "Admin", "Help" => "Bantuan", +"Error loading tags" => "Galat saat memuat tag", +"Tag already exists" => "Tag sudah ada", +"Error deleting tag(s)" => "Galat saat menghapus tag", +"Error tagging" => "Galat saat memberikan tag", +"Error untagging" => "Galat saat menghapus tag", +"Error favoriting" => "Galat saat memberikan sebagai favorit", +"Error unfavoriting" => "Galat saat menghapus sebagai favorit", "Access forbidden" => "Akses ditolak", "Cloud not found" => "Cloud tidak ditemukan", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Hai,\n\nhanya supaya anda tahu bahwa %s membagikan %s dengan anda.\nLihat: %s\n\n", +"The share will expire on %s." => "Pembagian akan berakhir pada %s.", +"Cheers!" => "Horee!", "Security Warning" => "Peringatan Keamanan", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Versi PHP Anda rentan terhadap serangan NULL Byte (CVE-2006-7243)", +"Please update your PHP installation to use %s securely." => "Silakan perbarui instalasi PHP anda untuk menggunakan %s dengan aman.", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Generator acak yang aman tidak tersedia, silakan aktifkan ekstensi OpenSSL pada PHP.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Tanpa generator acak, penyerang mungkin dapat menebak token penyetelan sandi dan mengambil alih akun Anda.", -"Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Kemungkinan direktori data dan berkas Anda dapat diakses dari internet karena berkas .htaccess tidak berfungsi.", +"Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Kemungkinan direktori data dan berkas anda dapat diakses dari internet karena berkas .htaccess tidak berfungsi.", +"For information how to properly configure your server, please see the <a href=\"%s\" target=\"_blank\">documentation</a>." => "Untuk informasi cara mengkonfigurasi server anda dengan benar, silakan lihat <a href=\"%s\" target=\"_blank\">dokumentasi</a>.", "Create an <strong>admin account</strong>" => "Buat sebuah <strong>akun admin</strong>", "Advanced" => "Lanjutan", "Data folder" => "Folder data", @@ -104,14 +153,26 @@ $TRANSLATIONS = array( "Database tablespace" => "Tablespace basis data", "Database host" => "Host basis data", "Finish setup" => "Selesaikan instalasi", +"Finishing …" => "Menyelesaikan ...", +"This application requires JavaScript to be enabled for correct operation. Please <a href=\"http://enable-javascript.com/\" target=\"_blank\">enable JavaScript</a> and re-load this interface." => "Aplikasi ini memerlukan JavaScript yang diaktifkan untuk beroperasi dengan benar. Silahkan <a href=\"http://enable-javascript.com/\" target=\"_blank\">aktifkan JavaScript</a> and re-load this interface.", +"%s is available. Get more information on how to update." => "%s tersedia. Dapatkan informasi lebih lanjut tentang cara memperbarui.", "Log out" => "Keluar", "Automatic logon rejected!" => "Masuk otomatis ditolak!", -"If you did not change your password recently, your account may be compromised!" => "Jika tidak pernah mengubah sandi Anda baru-baru ini, akun Anda mungkin dalam bahaya!", -"Please change your password to secure your account again." => "Mohon ubah sandi Anda untuk mengamankan kembali akun Anda.", +"If you did not change your password recently, your account may be compromised!" => "Jika anda tidak pernah mengubah sandi baru-baru ini, akun anda mungkin dalam bahaya!", +"Please change your password to secure your account again." => "Silakan ubah sandi anda untuk mengamankan kembali akun anda.", +"Server side authentication failed!" => "Otentikasi dari sisi server gagal!", +"Please contact your administrator." => "Silahkan hubungi administrator anda.", "Lost your password?" => "Lupa sandi?", "remember" => "selalu masuk", "Log in" => "Masuk", "Alternative Logins" => "Cara Alternatif untuk Masuk", -"Updating ownCloud to version %s, this may take a while." => "Memperbarui ownCloud ke versi %s, prosesnya akan berlangsung beberapa saat." +"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>" => "Hai,<br><br>hanya supaya anda tahu bahwa %s membagikan »%s« dengan anda.<br><a href=\"%s\">Lihat!</a><br><br>", +"This ownCloud instance is currently in single user mode." => "ownCloud ini sedang dalam mode pengguna tunggal.", +"This means only administrators can use the instance." => "Ini berarti hanya administrator yang dapat menggunakan ownCloud.", +"Contact your system administrator if this message persists or appeared unexpectedly." => "Hubungi administrator sistem anda jika pesan ini terus muncul atau muncul tiba-tiba.", +"Thank you for your patience." => "Terima kasih atas kesabaran anda.", +"Updating ownCloud to version %s, this may take a while." => "Memperbarui ownCloud ke versi %s, prosesnya akan berlangsung beberapa saat.", +"This ownCloud instance is currently being updated, which may take a while." => "ownCloud ini sedang diperbarui, yang mungkin memakan waktu cukup lama.", +"Please reload this page after a short time to continue using ownCloud." => "Muat ulang halaman ini setelah beberapa saat untuk tetap menggunakan ownCloud." ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/core/l10n/ja_JP.php b/core/l10n/ja_JP.php index c109f1294ea..aa737a71d09 100644 --- a/core/l10n/ja_JP.php +++ b/core/l10n/ja_JP.php @@ -41,9 +41,9 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("%n 日前"), "last month" => "一月前", "_%n month ago_::_%n months ago_" => array("%n ヶ月前"), -"months ago" => "月前", +"months ago" => "数ヶ月前", "last year" => "一年前", -"years ago" => "年前", +"years ago" => "数年前", "Choose" => "選択", "Error loading file picker template: {error}" => "ファイル選択テンプレートの読み込みエラー: {error}", "Yes" => "はい", diff --git a/core/l10n/ko.php b/core/l10n/ko.php index a25197cec3c..dc7cb8d3e73 100644 --- a/core/l10n/ko.php +++ b/core/l10n/ko.php @@ -1,16 +1,17 @@ <?php $TRANSLATIONS = array( -"Couldn't send mail to following users: %s " => "%s에게 메일을 보낼 수 없습니다.", -"Turned on maintenance mode" => "유지보수 모드 켜기", -"Turned off maintenance mode" => "유지보수 모드 끄기", +"%s shared »%s« with you" => "%s 님이 %s을(를) 공유하였습니다", +"Couldn't send mail to following users: %s " => "%s 님에게 메일을 보낼 수 없습니다.", +"Turned on maintenance mode" => "유지 보수 모드 켜짐", +"Turned off maintenance mode" => "유지 보수 모드 꺼짐", "Updated database" => "데이터베이스 업데이트 됨", -"Updating filecache, this may take really long..." => "파일 캐시 업데이트중, 시간이 약간 걸릴수 있습니다...", -"Updated filecache" => "파일캐시 업데이트 됨", +"Updating filecache, this may take really long..." => "파일 캐시 업데이트 중, 시간이 약간 걸릴 수 있습니다...", +"Updated filecache" => "파일 캐시 업데이트 됨", "... %d%% done ..." => "... %d%% 완료됨 ...", "No image or file provided" => "이미지나 파일이 없음", -"Unknown filetype" => "알려지지 않은 파일형식", +"Unknown filetype" => "알려지지 않은 파일 형식", "Invalid image" => "잘못된 이미지", -"No temporary profile picture available, try again" => "사용가능한 프로파일 사진이 없습니다. 재시도 하세요.", +"No temporary profile picture available, try again" => "사용 가능한 프로필 사진이 없습니다. 다시 시도하십시오.", "No crop data provided" => "선택된 데이터가 없습니다.", "Sunday" => "일요일", "Monday" => "월요일", @@ -44,17 +45,20 @@ $TRANSLATIONS = array( "last year" => "작년", "years ago" => "년 전", "Choose" => "선택", +"Error loading file picker template: {error}" => "파일 선택 템플릿을 불러오는 중 오류 발생: {error}", "Yes" => "예", "No" => "아니요", -"Ok" => "승락", -"_{count} file conflict_::_{count} file conflicts_" => array("{count} 파일 중복"), -"One file conflict" => "하나의 파일이 충돌", -"Which files do you want to keep?" => "어느 파일들을 보관하고 싶습니까?", -"If you select both versions, the copied file will have a number added to its name." => "두 버전을 모두 선택하면, 파일이름에 번호가 추가될 것입니다.", +"Ok" => "확인", +"Error loading message template: {error}" => "메시지 템플릿을 불러오는 중 오류 발생: {error}", +"_{count} file conflict_::_{count} file conflicts_" => array("파일 {count}개 충돌"), +"One file conflict" => "파일 1개 충돌", +"Which files do you want to keep?" => "어느 파일을 유지하시겠습니까?", +"If you select both versions, the copied file will have a number added to its name." => "두 버전을 모두 선택하면, 파일 이름에 번호가 추가될 것입니다.", "Cancel" => "취소", "Continue" => "계속", "(all selected)" => "(모두 선택됨)", -"({count} selected)" => "({count}개가 선택됨)", +"({count} selected)" => "({count}개 선택됨)", +"Error loading file exists template" => "파일 존재함 템플릿을 불러오는 중 오류 발생", "Shared" => "공유됨", "Share" => "공유", "Error" => "오류", @@ -63,9 +67,11 @@ $TRANSLATIONS = array( "Error while changing permissions" => "권한 변경하는 중 오류 발생", "Shared with you and the group {group} by {owner}" => "{owner} 님이 여러분 및 그룹 {group}와(과) 공유 중", "Shared with you by {owner}" => "{owner} 님이 공유 중", +"Share with user or group …" => "사용자 및 그룹과 공유...", +"Share link" => "링크 공유", "Password protect" => "암호 보호", "Password" => "암호", -"Allow Public Upload" => "퍼블릭 업로드 허용", +"Allow Public Upload" => "공개 업로드 허용", "Email link to person" => "이메일 주소", "Send" => "전송", "Set expiration date" => "만료 날짜 설정", @@ -76,6 +82,7 @@ $TRANSLATIONS = array( "Resharing is not allowed" => "다시 공유할 수 없습니다", "Shared in {item} with {user}" => "{user} 님과 {item}에서 공유 중", "Unshare" => "공유 해제", +"notify by email" => "이메일로 알림", "can edit" => "편집 가능", "access control" => "접근 제어", "create" => "생성", @@ -89,20 +96,23 @@ $TRANSLATIONS = array( "Email sent" => "이메일 발송됨", "Warning" => "경고", "The object type is not specified." => "객체 유형이 지정되지 않았습니다.", +"Enter new" => "새로운 값 입력", "Delete" => "삭제", "Add" => "추가", -"Edit tags" => "태크 편집", -"Please reload the page." => "페이지를 새로고침 해주세요", +"Edit tags" => "태그 편집", +"Error loading dialog template: {error}" => "대화 상자 템플릿을 불러오는 중 오류 발생: {error}", +"No tags selected for deletion." => "삭제할 태그를 선택하지 않았습니다.", +"Please reload the page." => "페이지를 새로 고치십시오.", "The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "업데이트가 실패하였습니다. 이 문제를 <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud 커뮤니티</a>에 보고해 주십시오.", "The update was successful. Redirecting you to ownCloud now." => "업데이트가 성공하였습니다. ownCloud로 돌아갑니다.", -"%s password reset" => "%s 비밀번호 재설정", +"%s password reset" => "%s 암호 재설정", "Use the following link to reset your password: {link}" => "다음 링크를 사용하여 암호를 재설정할 수 있습니다: {link}", -"The link to reset your password has been sent to your email.<br>If you do not receive it within a reasonable amount of time, check your spam/junk folders.<br>If it is not there ask your local administrator ." => "비밀번호를 초기화 하기 위한 링크가 이메일로 발송되었습니다.<br>만약 수분이내에 메일이 도착하지 않은 경우, 스팸 메일함을 확인하세요.<br>만약 없다면, 메일 관리자에게 문의하세요.", -"Request failed!<br>Did you make sure your email/username was right?" => "요청이 실패했습니다!<br>email 주소와 사용자 명을 정확하게 넣으셨나요?", +"The link to reset your password has been sent to your email.<br>If you do not receive it within a reasonable amount of time, check your spam/junk folders.<br>If it is not there ask your local administrator ." => "암호를 초기화 하기 위한 링크가 이메일로 발송되었습니다.<br>만약 수 분 이내에 메일이 도착하지 않은 경우, 스팸 메일함을 확인하십시오.<br>스팸 메일함에도 없다면, 메일 관리자에게 문의하십시오.", +"Request failed!<br>Did you make sure your email/username was right?" => "요청이 실패했습니다!<br>이메일 주소와 사용자 이름을 정확하게 입력하셨습니까?", "You will receive a link to reset your password via Email." => "이메일로 암호 재설정 링크를 보냈습니다.", "Username" => "사용자 이름", -"Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset. If you are not sure what to do, please contact your administrator before you continue. Do you really want to continue?" => "당신의 파일은 암호화 되어있습니다. 만약 복구키를 가지고 있지 않다면, 비밀번호를 초기화한 후에, 당신의 데이터를 복구할 수 없을 것입니다. 당신이 원하는 것이 확실하지 않다면, 계속진행하기 전에 관리자에게 문의하세요. 계속 진행하시겠습니까?", -"Yes, I really want to reset my password now" => "네, 전 제 비밀번호를 리셋하길 원합니다", +"Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset. If you are not sure what to do, please contact your administrator before you continue. Do you really want to continue?" => "저장된 파일은 암호화되어 있습니다. 복구 키를 활성화하지 않았다면 암호를 초기화한 후 데이터를 복구할 수 없습니다. 무엇을 해야 할 지 모르겠으면 진행하기 전에 시스템 관리자에게 연락하십시오. 계속 진행하시겠습니까?", +"Yes, I really want to reset my password now" => "예, 지금 내 암호를 재설정합니다", "Reset" => "재설정", "Your password was reset" => "암호가 재설정되었습니다", "To login page" => "로그인 화면으로", @@ -113,17 +123,25 @@ $TRANSLATIONS = array( "Apps" => "앱", "Admin" => "관리자", "Help" => "도움말", +"Error loading tags" => "태그 불러오기 오류", "Tag already exists" => "태그가 이미 존재합니다", +"Error deleting tag(s)" => "태그 삭제 오류", +"Error tagging" => "태그 추가 오류", +"Error untagging" => "태그 해제 오류", +"Error favoriting" => "즐겨찾기 추가 오류", +"Error unfavoriting" => "즐겨찾기 삭제 오류", "Access forbidden" => "접근 금지됨", "Cloud not found" => "클라우드를 찾을 수 없습니다", -"Cheers!" => "화이팅!", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "안녕하세요,\n\n%s 님이 %s을(를) 공유하였음을 알려 드립니다.\n보기 링크: %s\n\n", +"The share will expire on %s." => "이 공유는 %s 까지 유지됩니다.", +"Cheers!" => "감사합니다!", "Security Warning" => "보안 경고", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "사용 중인 PHP 버전이 NULL 바이트 공격에 취약합니다 (CVE-2006-7243)", "Please update your PHP installation to use %s securely." => "%s의 보안을 위하여 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." => ".htaccess 파일이 처리되지 않아서 데이터 디렉터리와 파일을 인터넷에서 접근할 수 없을 수도 있습니다.", -"For information how to properly configure your server, please see the <a href=\"%s\" target=\"_blank\">documentation</a>." => "올바른 서버 설정을 위한 정보는 <a href=\"%s\" target=\"_blank\">문서</a>를 참조하세요.", +"For information how to properly configure your server, please see the <a href=\"%s\" target=\"_blank\">documentation</a>." => "올바른 서버 설정을 위한 정보는 <a href=\"%s\" target=\"_blank\">문서</a>를 참조하십시오.", "Create an <strong>admin account</strong>" => "<strong>관리자 계정</strong> 만들기", "Advanced" => "고급", "Data folder" => "데이터 폴더", @@ -135,18 +153,26 @@ $TRANSLATIONS = array( "Database tablespace" => "데이터베이스 테이블 공간", "Database host" => "데이터베이스 호스트", "Finish setup" => "설치 완료", -"Finishing …" => "종료중 ...", -"%s is available. Get more information on how to update." => "%s는 사용가능합니다. 업데이트방법에 대해서 더 많은 정보를 얻으세요.", +"Finishing …" => "완료 중 ...", +"This application requires JavaScript to be enabled for correct operation. Please <a href=\"http://enable-javascript.com/\" target=\"_blank\">enable JavaScript</a> and re-load this interface." => "이 애플리케이션을 올바르게 사용하려면 자바스크립트를 활성화해야 합니다. <a href=\"http://enable-javascript.com/\" target=\"_blank\">자바스크립트를 활성화</a>한 다음 인터페이스를 새로 고치십시오.", +"%s is available. Get more information on how to update." => "%s을(를) 사용할 수 있습니다. 업데이트하는 방법에 대해서 자세한 정보를 얻으십시오.", "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." => "계정의 안전을 위하여 암호를 변경하십시오.", "Server side authentication failed!" => "서버 인증 실패!", -"Please contact your administrator." => "관리자에게 문의하세요.", +"Please contact your administrator." => "관리자에게 문의하십시오.", "Lost your password?" => "암호를 잊으셨습니까?", "remember" => "기억하기", "Log in" => "로그인", -"Alternative Logins" => "대체 ", -"Updating ownCloud to version %s, this may take a while." => "ownCloud를 버전 %s(으)로 업데이트합니다. 잠시 기다려 주십시오." +"Alternative Logins" => "대체 로그인", +"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>" => "안녕하세요,<br><br>%s 님이 %s을(를) 공유하였음을 알려 드립니다.<br><a href=\"%s\">지금 보기!</a><br><br>", +"This ownCloud instance is currently in single user mode." => "ownCloud 인스턴스가 현재 단일 사용자 모드로 동작 중입니다.", +"This means only administrators can use the instance." => "현재 시스템 관리자만 인스턴스를 사용할 수 있습니다.", +"Contact your system administrator if this message persists or appeared unexpectedly." => "이 메시지가 계속 표시되거나, 예상하지 못하였을 때 표시된다면 시스템 관리자에게 연락하십시오", +"Thank you for your patience." => "기다려 주셔서 감사합니다.", +"Updating ownCloud to version %s, this may take a while." => "ownCloud를 버전 %s(으)로 업데이트합니다. 잠시 기다려 주십시오.", +"This ownCloud instance is currently being updated, which may take a while." => "ownCloud 인스턴스가 현재 업데이트 중입니다. 잠시만 기다려 주십시오.", +"Please reload this page after a short time to continue using ownCloud." => "잠시 후 페이지를 다시 불러온 다음 ownCloud를 사용해 주십시오." ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/core/l10n/nb_NO.php b/core/l10n/nb_NO.php index 4fd88e4a040..ad682e46ff9 100644 --- a/core/l10n/nb_NO.php +++ b/core/l10n/nb_NO.php @@ -1,6 +1,8 @@ <?php $TRANSLATIONS = array( "%s shared »%s« with you" => "%s delte »%s« med deg", +"Unknown filetype" => "Ukjent filtype", +"Invalid image" => "Ugyldig bilde", "Sunday" => "Søndag", "Monday" => "Mandag", "Tuesday" => "Tirsdag", @@ -22,13 +24,13 @@ $TRANSLATIONS = array( "December" => "Desember", "Settings" => "Innstillinger", "seconds ago" => "sekunder siden", -"_%n minute ago_::_%n minutes ago_" => array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n minute ago_::_%n minutes ago_" => array("%n minutt siden","%n minutter siden"), +"_%n hour ago_::_%n hours ago_" => array("%n time siden","%n timer siden"), "today" => "i dag", "yesterday" => "i går", -"_%n day ago_::_%n days ago_" => array("",""), +"_%n day ago_::_%n days ago_" => array("%n dag siden","%n dager siden"), "last month" => "forrige måned", -"_%n month ago_::_%n months ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("%n dag siden","%n dager siden"), "months ago" => "måneder siden", "last year" => "forrige år", "years ago" => "år siden", @@ -38,6 +40,7 @@ $TRANSLATIONS = array( "Ok" => "Ok", "_{count} file conflict_::_{count} file conflicts_" => array("",""), "Cancel" => "Avbryt", +"Continue" => "Fortsett", "Shared" => "Delt", "Share" => "Del", "Error" => "Feil", @@ -91,6 +94,7 @@ $TRANSLATIONS = array( "Database tablespace" => "Database tabellområde", "Database host" => "Databasevert", "Finish setup" => "Fullfør oppsetting", +"Finishing …" => "Ferdigstiller ...", "Log out" => "Logg ut", "Automatic logon rejected!" => "Automatisk pålogging avvist!", "If you did not change your password recently, your account may be compromised!" => "Hvis du ikke har endret passordet ditt nylig kan kontoen din være kompromitert", diff --git a/core/l10n/ru.php b/core/l10n/ru.php index ec505f6f5fa..cd889e98e12 100644 --- a/core/l10n/ru.php +++ b/core/l10n/ru.php @@ -154,6 +154,7 @@ $TRANSLATIONS = array( "Database host" => "Хост базы данных", "Finish setup" => "Завершить установку", "Finishing …" => "Завершаем...", +"This application requires JavaScript to be enabled for correct operation. Please <a href=\"http://enable-javascript.com/\" target=\"_blank\">enable JavaScript</a> and re-load this interface." => "Это приложение требует включённый JavaScript для корректной работы. Пожалуйста, <a href=\"http://enable-javascript.com/\" target=\"_blank\">включите JavaScript</a> и перезагрузите интерфейс.", "%s is available. Get more information on how to update." => "%s доступно. Получить дополнительную информацию о порядке обновления.", "Log out" => "Выйти", "Automatic logon rejected!" => "Автоматический вход в систему отключен!", diff --git a/core/l10n/sl.php b/core/l10n/sl.php index 657bc60c18e..933ccf55564 100644 --- a/core/l10n/sl.php +++ b/core/l10n/sl.php @@ -154,6 +154,7 @@ $TRANSLATIONS = array( "Database host" => "Gostitelj podatkovne zbirke", "Finish setup" => "Končaj nastavitev", "Finishing …" => "Poteka zaključevanje opravila ...", +"This application requires JavaScript to be enabled for correct operation. Please <a href=\"http://enable-javascript.com/\" target=\"_blank\">enable JavaScript</a> and re-load this interface." => "Program zahteva omogočeno skriptno podporo. Za pravilno delovanje je treba omogočiti <a href=\"http://enable-javascript.com/\" target=\"_blank\">JavaScript</a> in nato ponovno osvežiti vmesnik.", "%s is available. Get more information on how to update." => "%s je na voljo. Pridobite več podrobnosti za posodobitev.", "Log out" => "Odjava", "Automatic logon rejected!" => "Samodejno prijavljanje je zavrnjeno!", diff --git a/core/l10n/tr.php b/core/l10n/tr.php index 82164c5c5b9..301959c7e5c 100644 --- a/core/l10n/tr.php +++ b/core/l10n/tr.php @@ -106,7 +106,7 @@ $TRANSLATIONS = array( "The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "Güncelleme başarılı olmadı. Lütfen bu hatayı bildirin <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>.", "The update was successful. Redirecting you to ownCloud now." => "Güncelleme başarılı. ownCloud'a yönlendiriliyor.", "%s password reset" => "%s parola sıfırlama", -"Use the following link to reset your password: {link}" => "Bu bağlantıyı kullanarak parolanızı sıfırlayın: {link}", +"Use the following link to reset your password: {link}" => "Parolanızı sıfırlamak için bu bağlantıyı kullanın: {link}", "The link to reset your password has been sent to your email.<br>If you do not receive it within a reasonable amount of time, check your spam/junk folders.<br>If it is not there ask your local administrator ." => "Parolanızı değiştirme bağlantısı e-posta adresinize gönderildi.<br>Eğer makül bir süre içerisinde mesajı almadıysanız spam/junk dizinini kontrol ediniz.<br> Eğer orada da bulamazsanız sistem yöneticinize sorunuz.", "Request failed!<br>Did you make sure your email/username was right?" => "İstek başarısız!<br>E-posta ve/veya kullanıcı adınızın doğru olduğundan emin misiniz?", "You will receive a link to reset your password via Email." => "Parolanızı sıfırlamak için bir bağlantıyı e-posta olarak alacaksınız.", diff --git a/core/templates/installation.php b/core/templates/installation.php index 325eb204868..ec55a65ea58 100644 --- a/core/templates/installation.php +++ b/core/templates/installation.php @@ -54,7 +54,7 @@ </p> <p class="infield groupbottom"> <input type="password" name="adminpass" data-typetoggle="#show" id="adminpass" placeholder="" - value="<?php p(OC_Helper::init_var('adminpass')); ?>" /> + value="<?php p(OC_Helper::init_var('adminpass')); ?>" required /> <label for="adminpass" class="infield"><?php p($l->t( 'Password' )); ?></label> <img class="svg" id="adminpass-icon" src="<?php print_unescaped(image_path('', 'actions/password.svg')); ?>" alt="" /> <input type="checkbox" id="show" name="show" /> diff --git a/core/templates/layout.user.php b/core/templates/layout.user.php index 45b7e39686d..89987625d63 100644 --- a/core/templates/layout.user.php +++ b/core/templates/layout.user.php @@ -105,7 +105,7 @@ <?php if(OC_User::isAdminUser(OC_User::getUser())): ?> <li id="apps-management"> <a href="<?php print_unescaped(OC_Helper::linkToRoute('settings_apps').'?installed'); ?>" title="" - <?php if( $entry['active'] ): ?> class="active"<?php endif; ?>> + <?php if( $_['appsmanagement_active'] ): ?> class="active"<?php endif; ?>> <img class="icon svg" src="<?php print_unescaped(OC_Helper::imagePath('settings', 'apps.svg')); ?>"/> <span> <?php p($l->t('Apps')); ?> diff --git a/db_structure.xml b/db_structure.xml index db817faecee..3cb2af287af 100644 --- a/db_structure.xml +++ b/db_structure.xml @@ -60,6 +60,13 @@ <sorting>ascending</sorting> </field> </index> + <index> + <name>appconfig_appid_key</name> + <field> + <name>appid</name> + <sorting>ascending</sorting> + </field> + </index> </declaration> diff --git a/issue_template.md b/issue_template.md index a9ff75a3b86..0ddc7667bf3 100644 --- a/issue_template.md +++ b/issue_template.md @@ -26,6 +26,8 @@ List of activated app: The content of config/config.php: (Without the database password and passwordsalt) +Are you using external storage, if yes which one: + ### Client configuration Browser: diff --git a/l10n/ach/files.po b/l10n/ach/files.po index 152cfff386a..169f2307c38 100644 --- a/l10n/ach/files.po +++ b/l10n/ach/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" +"POT-Creation-Date: 2013-12-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06:55+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Acoli (http://www.transifex.com/projects/p/owncloud/language/ach/)\n" "MIME-Version: 1.0\n" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "" diff --git a/l10n/ach/lib.po b/l10n/ach/lib.po index 05450aabac5..188f480eab5 100644 --- a/l10n/ach/lib.po +++ b/l10n/ach/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Acoli (http://www.transifex.com/projects/p/owncloud/language/ach/)\n" "MIME-Version: 1.0\n" @@ -53,15 +53,15 @@ msgstr "" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "" @@ -70,23 +70,23 @@ msgstr "" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "" msgid "Images" msgstr "" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -331,7 +331,3 @@ msgstr "" #: private/template/functions.php:142 msgid "years ago" msgstr "" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/ady/files.po b/l10n/ady/files.po index f3d7a9fb839..95bd2e10d1d 100644 --- a/l10n/ady/files.po +++ b/l10n/ady/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" +"POT-Creation-Date: 2013-12-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06:55+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Adyghe (http://www.transifex.com/projects/p/owncloud/language/ady/)\n" "MIME-Version: 1.0\n" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "" diff --git a/l10n/ady/lib.po b/l10n/ady/lib.po index a0cec5ac607..6043ba35ec8 100644 --- a/l10n/ady/lib.po +++ b/l10n/ady/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Adyghe (http://www.transifex.com/projects/p/owncloud/language/ady/)\n" "MIME-Version: 1.0\n" @@ -53,15 +53,15 @@ msgstr "" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "" @@ -70,23 +70,23 @@ msgstr "" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "" msgid "Images" msgstr "" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -331,7 +331,3 @@ msgstr "" #: private/template/functions.php:142 msgid "years ago" msgstr "" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/af/files.po b/l10n/af/files.po index 3b521d862a4..b5cf6a2f4ba 100644 --- a/l10n/af/files.po +++ b/l10n/af/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" +"POT-Creation-Date: 2013-12-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06:55+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Afrikaans (http://www.transifex.com/projects/p/owncloud/language/af/)\n" "MIME-Version: 1.0\n" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "" diff --git a/l10n/af/lib.po b/l10n/af/lib.po index 9cba7b7d1fb..8954006a8a7 100644 --- a/l10n/af/lib.po +++ b/l10n/af/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Afrikaans (http://www.transifex.com/projects/p/owncloud/language/af/)\n" "MIME-Version: 1.0\n" @@ -53,15 +53,15 @@ msgstr "" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "" @@ -70,23 +70,23 @@ msgstr "" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "" msgid "Images" msgstr "" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -331,7 +331,3 @@ msgstr "" #: private/template/functions.php:142 msgid "years ago" msgstr "" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/af_ZA/core.po b/l10n/af_ZA/core.po index 95f83a98ce8..618d4d305d9 100644 --- a/l10n/af_ZA/core.po +++ b/l10n/af_ZA/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -148,59 +148,59 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Instellings" -#: js/js.js:858 +#: js/js.js:869 msgid "seconds ago" msgstr "" -#: js/js.js:859 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:860 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:861 +#: js/js.js:872 msgid "today" msgstr "" -#: js/js.js:862 +#: js/js.js:873 msgid "yesterday" msgstr "" -#: js/js.js:863 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:864 +#: js/js.js:875 msgid "last month" msgstr "" -#: js/js.js:865 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:866 +#: js/js.js:877 msgid "months ago" msgstr "" -#: js/js.js:867 +#: js/js.js:878 msgid "last year" msgstr "" -#: js/js.js:868 +#: js/js.js:879 msgid "years ago" msgstr "" diff --git a/l10n/af_ZA/files.po b/l10n/af_ZA/files.po index 75c78bb65e8..c871aaa6c48 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" +"POT-Creation-Date: 2013-12-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06:55+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "" diff --git a/l10n/af_ZA/lib.po b/l10n/af_ZA/lib.po index 1196cc344d3..7d0718c77d4 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -53,15 +53,15 @@ msgstr "Admin" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "webdienste onder jou beheer" @@ -70,23 +70,23 @@ msgstr "webdienste onder jou beheer" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "" msgid "Images" msgstr "" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -331,7 +331,3 @@ msgstr "" #: private/template/functions.php:142 msgid "years ago" msgstr "" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/ak/core.po b/l10n/ak/core.po new file mode 100644 index 00000000000..71758432e20 --- /dev/null +++ b/l10n/ak/core.po @@ -0,0 +1,775 @@ +# 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: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-30 01:55-0500\n" +"PO-Revision-Date: 2013-12-29 13:18+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"Language-Team: Akan (http://www.transifex.com/projects/p/owncloud/language/ak/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ak\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" + +#: ajax/share.php:119 ajax/share.php:198 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "" + +#: avatar/controller.php:62 +msgid "No image or file provided" +msgstr "" + +#: avatar/controller.php:81 +msgid "Unknown filetype" +msgstr "" + +#: avatar/controller.php:85 +msgid "Invalid image" +msgstr "" + +#: avatar/controller.php:115 avatar/controller.php:142 +msgid "No temporary profile picture available, try again" +msgstr "" + +#: avatar/controller.php:135 +msgid "No crop data provided" +msgstr "" + +#: js/config.php:32 +msgid "Sunday" +msgstr "" + +#: js/config.php:33 +msgid "Monday" +msgstr "" + +#: js/config.php:34 +msgid "Tuesday" +msgstr "" + +#: js/config.php:35 +msgid "Wednesday" +msgstr "" + +#: js/config.php:36 +msgid "Thursday" +msgstr "" + +#: js/config.php:37 +msgid "Friday" +msgstr "" + +#: js/config.php:38 +msgid "Saturday" +msgstr "" + +#: js/config.php:43 +msgid "January" +msgstr "" + +#: js/config.php:44 +msgid "February" +msgstr "" + +#: js/config.php:45 +msgid "March" +msgstr "" + +#: js/config.php:46 +msgid "April" +msgstr "" + +#: js/config.php:47 +msgid "May" +msgstr "" + +#: js/config.php:48 +msgid "June" +msgstr "" + +#: js/config.php:49 +msgid "July" +msgstr "" + +#: js/config.php:50 +msgid "August" +msgstr "" + +#: js/config.php:51 +msgid "September" +msgstr "" + +#: js/config.php:52 +msgid "October" +msgstr "" + +#: js/config.php:53 +msgid "November" +msgstr "" + +#: js/config.php:54 +msgid "December" +msgstr "" + +#: js/js.js:398 +msgid "Settings" +msgstr "" + +#: js/js.js:869 +msgid "seconds ago" +msgstr "" + +#: js/js.js:870 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:871 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:872 +msgid "today" +msgstr "" + +#: js/js.js:873 +msgid "yesterday" +msgstr "" + +#: js/js.js:874 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:875 +msgid "last month" +msgstr "" + +#: js/js.js:876 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:877 +msgid "months ago" +msgstr "" + +#: js/js.js:878 +msgid "last year" +msgstr "" + +#: js/js.js:879 +msgid "years ago" +msgstr "" + +#: js/oc-dialogs.js:123 +msgid "Choose" +msgstr "" + +#: js/oc-dialogs.js:146 +msgid "Error loading file picker template: {error}" +msgstr "" + +#: js/oc-dialogs.js:172 +msgid "Yes" +msgstr "" + +#: js/oc-dialogs.js:182 +msgid "No" +msgstr "" + +#: js/oc-dialogs.js:199 +msgid "Ok" +msgstr "" + +#: js/oc-dialogs.js:219 +msgid "Error loading message template: {error}" +msgstr "" + +#: js/oc-dialogs.js:347 +msgid "{count} file conflict" +msgid_plural "{count} file conflicts" +msgstr[0] "" +msgstr[1] "" + +#: js/oc-dialogs.js:361 +msgid "One file conflict" +msgstr "" + +#: js/oc-dialogs.js:367 +msgid "Which files do you want to keep?" +msgstr "" + +#: js/oc-dialogs.js:368 +msgid "" +"If you select both versions, the copied file will have a number added to its" +" name." +msgstr "" + +#: js/oc-dialogs.js:376 +msgid "Cancel" +msgstr "" + +#: js/oc-dialogs.js:386 +msgid "Continue" +msgstr "" + +#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +msgid "(all selected)" +msgstr "" + +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +msgid "({count} selected)" +msgstr "" + +#: js/oc-dialogs.js:457 +msgid "Error loading file exists template" +msgstr "" + +#: js/share.js:51 js/share.js:66 js/share.js:106 +msgid "Shared" +msgstr "" + +#: js/share.js:109 +msgid "Share" +msgstr "" + +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "" + +#: js/share.js:160 js/share.js:747 +msgid "Error while sharing" +msgstr "" + +#: js/share.js:171 +msgid "Error while unsharing" +msgstr "" + +#: js/share.js:178 +msgid "Error while changing permissions" +msgstr "" + +#: js/share.js:187 +msgid "Shared with you and the group {group} by {owner}" +msgstr "" + +#: js/share.js:189 +msgid "Shared with you by {owner}" +msgstr "" + +#: js/share.js:213 +msgid "Share with user or group …" +msgstr "" + +#: js/share.js:219 +msgid "Share link" +msgstr "" + +#: js/share.js:222 +msgid "Password protect" +msgstr "" + +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +msgid "Password" +msgstr "" + +#: js/share.js:229 +msgid "Allow Public Upload" +msgstr "" + +#: js/share.js:233 +msgid "Email link to person" +msgstr "" + +#: js/share.js:234 +msgid "Send" +msgstr "" + +#: js/share.js:239 +msgid "Set expiration date" +msgstr "" + +#: js/share.js:240 +msgid "Expiration date" +msgstr "" + +#: js/share.js:275 +msgid "Share via email:" +msgstr "" + +#: js/share.js:278 +msgid "No people found" +msgstr "" + +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "" + +#: js/share.js:333 +msgid "Resharing is not allowed" +msgstr "" + +#: js/share.js:375 +msgid "Shared in {item} with {user}" +msgstr "" + +#: js/share.js:397 +msgid "Unshare" +msgstr "" + +#: js/share.js:405 +msgid "notify by email" +msgstr "" + +#: js/share.js:408 +msgid "can edit" +msgstr "" + +#: js/share.js:410 +msgid "access control" +msgstr "" + +#: js/share.js:413 +msgid "create" +msgstr "" + +#: js/share.js:416 +msgid "update" +msgstr "" + +#: js/share.js:419 +msgid "delete" +msgstr "" + +#: js/share.js:422 +msgid "share" +msgstr "" + +#: js/share.js:694 +msgid "Password protected" +msgstr "" + +#: js/share.js:707 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:719 +msgid "Error setting expiration date" +msgstr "" + +#: js/share.js:734 +msgid "Sending ..." +msgstr "" + +#: js/share.js:745 +msgid "Email sent" +msgstr "" + +#: js/share.js:769 +msgid "Warning" +msgstr "" + +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "" + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "" + +#: js/tags.js:31 +msgid "Add" +msgstr "" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "" + +#: js/update.js:8 +msgid "Please reload the page." +msgstr "" + +#: js/update.js:17 +msgid "" +"The update was unsuccessful. Please report this issue to the <a " +"href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud " +"community</a>." +msgstr "" + +#: js/update.js:21 +msgid "The update was successful. Redirecting you to ownCloud now." +msgstr "" + +#: lostpassword/controller.php:62 +#, php-format +msgid "%s password reset" +msgstr "" + +#: lostpassword/templates/email.php:2 +msgid "Use the following link to reset your password: {link}" +msgstr "" + +#: lostpassword/templates/lostpassword.php:7 +msgid "" +"The link to reset your password has been sent to your email.<br>If you do " +"not receive it within a reasonable amount of time, check your spam/junk " +"folders.<br>If it is not there ask your local administrator ." +msgstr "" + +#: lostpassword/templates/lostpassword.php:15 +msgid "Request failed!<br>Did you make sure your email/username was right?" +msgstr "" + +#: lostpassword/templates/lostpassword.php:18 +msgid "You will receive a link to reset your password via Email." +msgstr "" + +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 +msgid "Username" +msgstr "" + +#: lostpassword/templates/lostpassword.php:25 +msgid "" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" +msgstr "" + +#: lostpassword/templates/lostpassword.php:27 +msgid "Yes, I really want to reset my password now" +msgstr "" + +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" +msgstr "" + +#: lostpassword/templates/resetpassword.php:4 +msgid "Your password was reset" +msgstr "" + +#: lostpassword/templates/resetpassword.php:5 +msgid "To login page" +msgstr "" + +#: lostpassword/templates/resetpassword.php:8 +msgid "New password" +msgstr "" + +#: lostpassword/templates/resetpassword.php:11 +msgid "Reset password" +msgstr "" + +#: strings.php:5 +msgid "Personal" +msgstr "" + +#: strings.php:6 +msgid "Users" +msgstr "" + +#: strings.php:7 templates/layout.user.php:111 +msgid "Apps" +msgstr "" + +#: strings.php:8 +msgid "Admin" +msgstr "" + +#: strings.php:9 +msgid "Help" +msgstr "" + +#: tags/controller.php:22 +msgid "Error loading tags" +msgstr "" + +#: tags/controller.php:48 +msgid "Tag already exists" +msgstr "" + +#: tags/controller.php:64 +msgid "Error deleting tag(s)" +msgstr "" + +#: tags/controller.php:75 +msgid "Error tagging" +msgstr "" + +#: tags/controller.php:86 +msgid "Error untagging" +msgstr "" + +#: tags/controller.php:97 +msgid "Error favoriting" +msgstr "" + +#: tags/controller.php:108 +msgid "Error unfavoriting" +msgstr "" + +#: templates/403.php:12 +msgid "Access forbidden" +msgstr "" + +#: templates/404.php:15 +msgid "Cloud not found" +msgstr "" + +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +msgstr "" + +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" +msgstr "" + +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 +msgid "Security Warning" +msgstr "" + +#: templates/installation.php:26 +msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" +msgstr "" + +#: templates/installation.php:27 +#, php-format +msgid "Please update your PHP installation to use %s securely." +msgstr "" + +#: templates/installation.php:33 +msgid "" +"No secure random number generator is available, please enable the PHP " +"OpenSSL extension." +msgstr "" + +#: templates/installation.php:34 +msgid "" +"Without a secure random number generator an attacker may be able to predict " +"password reset tokens and take over your account." +msgstr "" + +#: templates/installation.php:40 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + +#: templates/installation.php:42 +#, php-format +msgid "" +"For information how to properly configure your server, please see the <a " +"href=\"%s\" target=\"_blank\">documentation</a>." +msgstr "" + +#: templates/installation.php:48 +msgid "Create an <strong>admin account</strong>" +msgstr "" + +#: templates/installation.php:67 +msgid "Advanced" +msgstr "" + +#: templates/installation.php:74 +msgid "Data folder" +msgstr "" + +#: templates/installation.php:86 +msgid "Configure the database" +msgstr "" + +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 +msgid "will be used" +msgstr "" + +#: templates/installation.php:149 +msgid "Database user" +msgstr "" + +#: templates/installation.php:156 +msgid "Database password" +msgstr "" + +#: templates/installation.php:161 +msgid "Database name" +msgstr "" + +#: templates/installation.php:169 +msgid "Database tablespace" +msgstr "" + +#: templates/installation.php:176 +msgid "Database host" +msgstr "" + +#: templates/installation.php:185 +msgid "Finish setup" +msgstr "" + +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "" + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please <a href=\"http://enable-javascript.com/\" target=\"_blank\">enable " +"JavaScript</a> and re-load this interface." +msgstr "" + +#: templates/layout.user.php:44 +#, php-format +msgid "%s is available. Get more information on how to update." +msgstr "" + +#: templates/layout.user.php:72 templates/singleuser.user.php:8 +msgid "Log out" +msgstr "" + +#: templates/login.php:9 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:10 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:12 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:44 +msgid "Lost your password?" +msgstr "" + +#: templates/login.php:49 +msgid "remember" +msgstr "" + +#: templates/login.php:52 +msgid "Log in" +msgstr "" + +#: templates/login.php:58 +msgid "Alternative Logins" +msgstr "" + +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " +"href=\"%s\">View it!</a><br><br>" +msgstr "" + +#: templates/singleuser.user.php:3 +msgid "This ownCloud instance is currently in single user mode." +msgstr "" + +#: templates/singleuser.user.php:4 +msgid "This means only administrators can use the instance." +msgstr "" + +#: templates/singleuser.user.php:5 templates/update.user.php:5 +msgid "" +"Contact your system administrator if this message persists or appeared " +"unexpectedly." +msgstr "" + +#: templates/singleuser.user.php:7 templates/update.user.php:6 +msgid "Thank you for your patience." +msgstr "" + +#: templates/update.admin.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" + +#: templates/update.user.php:3 +msgid "" +"This ownCloud instance is currently being updated, which may take a while." +msgstr "" + +#: templates/update.user.php:4 +msgid "Please reload this page after a short time to continue using ownCloud." +msgstr "" diff --git a/l10n/ak/files.po b/l10n/ak/files.po new file mode 100644 index 00000000000..4544710bb34 --- /dev/null +++ b/l10n/ak/files.po @@ -0,0 +1,413 @@ +# 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: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-30 01:55-0500\n" +"PO-Revision-Date: 2013-12-29 13:18+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"Language-Team: Akan (http://www.transifex.com/projects/p/owncloud/language/ak/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ak\n" +"Plural-Forms: nplurals=2; plural=n > 1;\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/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "" + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "" + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "" + +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "" + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "" + +#: ajax/upload.php:18 ajax/upload.php:50 +msgid "Unable to set upload directory." +msgstr "" + +#: ajax/upload.php:27 +msgid "Invalid Token" +msgstr "" + +#: ajax/upload.php:64 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:71 +msgid "There is no error, the file uploaded with success" +msgstr "" + +#: ajax/upload.php:72 +msgid "" +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " +msgstr "" + +#: ajax/upload.php:74 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "" + +#: ajax/upload.php:75 +msgid "The uploaded file was only partially uploaded" +msgstr "" + +#: ajax/upload.php:76 +msgid "No file was uploaded" +msgstr "" + +#: ajax/upload.php:77 +msgid "Missing a temporary folder" +msgstr "" + +#: ajax/upload.php:78 +msgid "Failed to write to disk" +msgstr "" + +#: ajax/upload.php:96 +msgid "Not enough storage available" +msgstr "" + +#: ajax/upload.php:127 ajax/upload.php:154 +msgid "Upload failed. Could not get file info." +msgstr "" + +#: ajax/upload.php:144 +msgid "Upload failed. Could not find uploaded file" +msgstr "" + +#: ajax/upload.php:172 +msgid "Invalid directory." +msgstr "" + +#: appinfo/app.php:11 +msgid "Files" +msgstr "" + +#: js/file-upload.js:228 +msgid "Unable to upload {filename} as it is a directory or has 0 bytes" +msgstr "" + +#: js/file-upload.js:239 +msgid "Not enough space available" +msgstr "" + +#: js/file-upload.js:306 +msgid "Upload cancelled." +msgstr "" + +#: js/file-upload.js:344 +msgid "Could not get result from server." +msgstr "" + +#: js/file-upload.js:436 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/file-upload.js:523 +msgid "URL cannot be empty" +msgstr "" + +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" +msgstr "" + +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" +msgstr "" + +#: js/file-upload.js:595 +msgid "Could not create file" +msgstr "" + +#: js/file-upload.js:611 +msgid "Could not create folder" +msgstr "" + +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + +#: js/fileactions.js:125 +msgid "Share" +msgstr "" + +#: js/fileactions.js:137 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:194 +msgid "Rename" +msgstr "" + +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +msgid "Pending" +msgstr "" + +#: js/filelist.js:405 +msgid "Could not rename file" +msgstr "" + +#: js/filelist.js:539 +msgid "replaced {new_name} with {old_name}" +msgstr "" + +#: js/filelist.js:539 +msgid "undo" +msgstr "" + +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" + +#: js/filelist.js:617 +msgid "{dirs} and {files}" +msgstr "" + +#: js/filelist.js:828 js/filelist.js:866 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" + +#: js/files.js:72 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:81 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: js/files.js:93 +msgid "Your storage is full, files can not be updated or synced anymore!" +msgstr "" + +#: js/files.js:97 +msgid "Your storage is almost full ({usedSpacePercent}%)" +msgstr "" + +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "" + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "" + +#: js/files.js:118 +msgid "" +"Encryption was disabled but your files are still encrypted. Please go to " +"your personal settings to decrypt your files." +msgstr "" + +#: js/files.js:349 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" + +#: js/files.js:558 js/files.js:596 +msgid "Error moving file" +msgstr "" + +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "" + +#: js/files.js:613 templates/index.php:56 +msgid "Name" +msgstr "" + +#: js/files.js:614 templates/index.php:68 +msgid "Size" +msgstr "" + +#: js/files.js:615 templates/index.php:70 +msgid "Modified" +msgstr "" + +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "" + +#: lib/app.php:101 +#, php-format +msgid "%s could not be renamed" +msgstr "" + +#: lib/helper.php:11 templates/index.php:16 +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:5 +msgid "New" +msgstr "" + +#: templates/index.php:8 +msgid "New text file" +msgstr "" + +#: templates/index.php:8 +msgid "Text file" +msgstr "" + +#: templates/index.php:10 +msgid "New folder" +msgstr "" + +#: templates/index.php:10 +msgid "Folder" +msgstr "" + +#: templates/index.php:12 +msgid "From link" +msgstr "" + +#: templates/index.php:29 +msgid "Deleted files" +msgstr "" + +#: templates/index.php:34 +msgid "Cancel upload" +msgstr "" + +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" +msgstr "" + +#: templates/index.php:45 +msgid "Nothing in here. Upload something!" +msgstr "" + +#: templates/index.php:62 +msgid "Download" +msgstr "" + +#: templates/index.php:73 templates/index.php:74 +msgid "Delete" +msgstr "" + +#: templates/index.php:86 +msgid "Upload too large" +msgstr "" + +#: templates/index.php:88 +msgid "" +"The files you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "" + +#: templates/index.php:93 +msgid "Files are being scanned, please wait." +msgstr "" + +#: templates/index.php:96 +msgid "Current scanning" +msgstr "" + +#: templates/upgrade.php:2 +msgid "Upgrading filesystem cache..." +msgstr "" diff --git a/l10n/ak/files_encryption.po b/l10n/ak/files_encryption.po new file mode 100644 index 00000000000..b2b29d74f0a --- /dev/null +++ b/l10n/ak/files_encryption.po @@ -0,0 +1,201 @@ +# 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: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-30 01:55-0500\n" +"PO-Revision-Date: 2013-12-29 13:18+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"Language-Team: Akan (http://www.transifex.com/projects/p/owncloud/language/ak/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ak\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" + +#: ajax/adminrecovery.php:29 +msgid "Recovery key successfully enabled" +msgstr "" + +#: ajax/adminrecovery.php:34 +msgid "" +"Could not enable recovery key. Please check your recovery key password!" +msgstr "" + +#: ajax/adminrecovery.php:48 +msgid "Recovery key successfully disabled" +msgstr "" + +#: ajax/adminrecovery.php:53 +msgid "" +"Could not disable recovery key. Please check your recovery key password!" +msgstr "" + +#: ajax/changeRecoveryPassword.php:49 +msgid "Password successfully changed." +msgstr "" + +#: ajax/changeRecoveryPassword.php:51 +msgid "Could not change the password. Maybe the old password was not correct." +msgstr "" + +#: ajax/updatePrivateKeyPassword.php:52 +msgid "Private key password successfully updated." +msgstr "" + +#: ajax/updatePrivateKeyPassword.php:54 +msgid "" +"Could not update the private key password. Maybe the old password was not " +"correct." +msgstr "" + +#: files/error.php:12 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:16 +#, php-format +msgid "" +"Your private key is not valid! Likely your password was changed outside of " +"%s (e.g. your corporate directory). You can update your private key password" +" in your personal settings to recover access to your encrypted files." +msgstr "" + +#: files/error.php:19 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:22 files/error.php:27 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + +#: hooks/hooks.php:62 +msgid "Missing requirements." +msgstr "" + +#: hooks/hooks.php:63 +msgid "" +"Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " +"together with the PHP extension is enabled and configured properly. For now," +" the encryption app has been disabled." +msgstr "" + +#: hooks/hooks.php:281 +msgid "Following users are not set up for encryption:" +msgstr "" + +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." +msgstr "" + +#: js/settings-admin.js:13 +msgid "Saving..." +msgstr "" + +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " +msgstr "" + +#: templates/invalid_private_key.php:8 +msgid "personal settings" +msgstr "" + +#: templates/settings-admin.php:4 templates/settings-personal.php:3 +msgid "Encryption" +msgstr "" + +#: templates/settings-admin.php:7 +msgid "" +"Enable recovery key (allow to recover users files in case of password loss):" +msgstr "" + +#: templates/settings-admin.php:11 +msgid "Recovery key password" +msgstr "" + +#: templates/settings-admin.php:14 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:21 templates/settings-personal.php:51 +msgid "Enabled" +msgstr "" + +#: templates/settings-admin.php:29 templates/settings-personal.php:59 +msgid "Disabled" +msgstr "" + +#: templates/settings-admin.php:34 +msgid "Change recovery key password:" +msgstr "" + +#: templates/settings-admin.php:40 +msgid "Old Recovery key password" +msgstr "" + +#: templates/settings-admin.php:47 +msgid "New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:53 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:58 +msgid "Change Password" +msgstr "" + +#: templates/settings-personal.php:9 +msgid "Your private key password no longer match your log-in password:" +msgstr "" + +#: templates/settings-personal.php:12 +msgid "Set your old private key password to your current log-in password." +msgstr "" + +#: templates/settings-personal.php:14 +msgid "" +" If you don't remember your old password you can ask your administrator to " +"recover your files." +msgstr "" + +#: templates/settings-personal.php:22 +msgid "Old log-in password" +msgstr "" + +#: templates/settings-personal.php:28 +msgid "Current log-in password" +msgstr "" + +#: templates/settings-personal.php:33 +msgid "Update Private Key Password" +msgstr "" + +#: templates/settings-personal.php:42 +msgid "Enable password recovery:" +msgstr "" + +#: templates/settings-personal.php:44 +msgid "" +"Enabling this option will allow you to reobtain access to your encrypted " +"files in case of password loss" +msgstr "" + +#: templates/settings-personal.php:60 +msgid "File recovery settings updated" +msgstr "" + +#: templates/settings-personal.php:61 +msgid "Could not update file recovery" +msgstr "" diff --git a/l10n/ak/files_external.po b/l10n/ak/files_external.po new file mode 100644 index 00000000000..95dcbe86db8 --- /dev/null +++ b/l10n/ak/files_external.po @@ -0,0 +1,123 @@ +# 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: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-30 01:55-0500\n" +"PO-Revision-Date: 2013-12-29 13:18+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"Language-Team: Akan (http://www.transifex.com/projects/p/owncloud/language/ak/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ak\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" + +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +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:86 +msgid "Grant access" +msgstr "" + +#: js/dropbox.js:101 +msgid "Please provide a valid Dropbox app key and secret." +msgstr "" + +#: js/google.js:42 js/google.js:121 +msgid "Error configuring Google Drive storage" +msgstr "" + +#: lib/config.php:467 +msgid "" +"<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares " +"is not possible. Please ask your system administrator to install it." +msgstr "" + +#: lib/config.php:471 +msgid "" +"<b>Warning:</b> 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 "" + +#: lib/config.php:474 +msgid "" +"<b>Warning:</b> The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive 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 "" + +#: 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/ak/files_sharing.po b/l10n/ak/files_sharing.po new file mode 100644 index 00000000000..da92ef7b372 --- /dev/null +++ b/l10n/ak/files_sharing.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: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-30 01:55-0500\n" +"PO-Revision-Date: 2013-12-29 13:18+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"Language-Team: Akan (http://www.transifex.com/projects/p/owncloud/language/ak/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ak\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" + +#: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "" + +#: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:10 +msgid "Password" +msgstr "" + +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "" + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "" + +#: templates/public.php:18 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "" + +#: templates/public.php:21 +#, php-format +msgid "%s shared the file %s with you" +msgstr "" + +#: templates/public.php:29 templates/public.php:95 +msgid "Download" +msgstr "" + +#: templates/public.php:46 templates/public.php:49 +msgid "Upload" +msgstr "" + +#: templates/public.php:59 +msgid "Cancel upload" +msgstr "" + +#: templates/public.php:92 +msgid "No preview available for" +msgstr "" + +#: templates/public.php:99 +msgid "Direct link" +msgstr "" diff --git a/l10n/ak/files_trashbin.po b/l10n/ak/files_trashbin.po new file mode 100644 index 00000000000..ee5c134734d --- /dev/null +++ b/l10n/ak/files_trashbin.po @@ -0,0 +1,60 @@ +# 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: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-30 01:55-0500\n" +"PO-Revision-Date: 2013-12-29 13:18+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"Language-Team: Akan (http://www.transifex.com/projects/p/owncloud/language/ak/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ak\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" + +#: ajax/delete.php:63 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:43 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/trash.js:18 js/trash.js:45 js/trash.js:88 js/trash.js:142 +msgid "Error" +msgstr "" + +#: lib/trashbin.php:905 lib/trashbin.php:907 +msgid "restored" +msgstr "" + +#: templates/index.php:7 +msgid "Nothing in here. Your trash bin is empty!" +msgstr "" + +#: templates/index.php:20 +msgid "Name" +msgstr "" + +#: templates/index.php:23 templates/index.php:25 +msgid "Restore" +msgstr "" + +#: templates/index.php:31 +msgid "Deleted" +msgstr "" + +#: templates/index.php:34 templates/index.php:35 +msgid "Delete" +msgstr "" + +#: templates/part.breadcrumb.php:8 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/ak/files_versions.po b/l10n/ak/files_versions.po new file mode 100644 index 00000000000..8d9c2e6ff62 --- /dev/null +++ b/l10n/ak/files_versions.po @@ -0,0 +1,43 @@ +# 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: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-30 01:55-0500\n" +"PO-Revision-Date: 2013-12-29 13:18+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"Language-Team: Akan (http://www.transifex.com/projects/p/owncloud/language/ak/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ak\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" + +#: ajax/rollbackVersion.php:13 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: js/versions.js:14 +msgid "Versions" +msgstr "" + +#: js/versions.js:60 +msgid "Failed to revert {file} to revision {timestamp}." +msgstr "" + +#: js/versions.js:86 +msgid "More versions..." +msgstr "" + +#: js/versions.js:123 +msgid "No other versions available" +msgstr "" + +#: js/versions.js:154 +msgid "Restore" +msgstr "" diff --git a/l10n/ak/lib.po b/l10n/ak/lib.po new file mode 100644 index 00000000000..3778c524ce2 --- /dev/null +++ b/l10n/ak/lib.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: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-30 01:55-0500\n" +"PO-Revision-Date: 2013-12-29 13:18+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"Language-Team: Akan (http://www.transifex.com/projects/p/owncloud/language/ak/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ak\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" + +#: private/app.php:245 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: private/app.php:257 +msgid "No app name specified" +msgstr "" + +#: private/app.php:362 +msgid "Help" +msgstr "" + +#: private/app.php:375 +msgid "Personal" +msgstr "" + +#: private/app.php:386 +msgid "Settings" +msgstr "" + +#: private/app.php:398 +msgid "Users" +msgstr "" + +#: private/app.php:411 +msgid "Admin" +msgstr "" + +#: private/app.php:875 +#, php-format +msgid "Failed to upgrade \"%s\"." +msgstr "" + +#: private/avatar.php:66 +msgid "Unknown filetype" +msgstr "" + +#: private/avatar.php:71 +msgid "Invalid image" +msgstr "" + +#: private/defaults.php:34 +msgid "web services under your control" +msgstr "" + +#: private/files.php:66 private/files.php:98 +#, php-format +msgid "cannot open \"%s\"" +msgstr "" + +#: private/files.php:231 +msgid "ZIP download is turned off." +msgstr "" + +#: private/files.php:232 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: private/files.php:233 private/files.php:261 +msgid "Back to Files" +msgstr "" + +#: private/files.php:258 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: private/files.php:259 +msgid "" +"Please download the files separately in smaller chunks or kindly ask your " +"administrator." +msgstr "" + +#: private/installer.php:63 +msgid "No source specified when installing app" +msgstr "" + +#: private/installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: private/installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: private/installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: private/installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: private/installer.php:125 +msgid "App does not provide an info.xml file" +msgstr "" + +#: private/installer.php:131 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: private/installer.php:140 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: private/installer.php:146 +msgid "" +"App can't be installed because it contains the <shipped>true</shipped> tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: private/installer.php:159 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: private/installer.php:169 +msgid "App directory already exists" +msgstr "" + +#: private/installer.php:182 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + +#: private/json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: private/json.php:39 private/json.php:62 private/json.php:73 +msgid "Authentication error" +msgstr "" + +#: private/json.php:51 +msgid "Token expired. Please reload page." +msgstr "" + +#: private/search/provider/file.php:18 private/search/provider/file.php:36 +msgid "Files" +msgstr "" + +#: private/search/provider/file.php:27 private/search/provider/file.php:34 +msgid "Text" +msgstr "" + +#: private/search/provider/file.php:30 +msgid "Images" +msgstr "" + +#: private/setup/abstractdatabase.php:26 +#, php-format +msgid "%s enter the database username." +msgstr "" + +#: private/setup/abstractdatabase.php:29 +#, php-format +msgid "%s enter the database name." +msgstr "" + +#: private/setup/abstractdatabase.php:32 +#, php-format +msgid "%s you may not use dots in the database name" +msgstr "" + +#: private/setup/mssql.php:20 +#, php-format +msgid "MS SQL username and/or password not valid: %s" +msgstr "" + +#: private/setup/mssql.php:21 private/setup/mysql.php:13 +#: private/setup/oci.php:114 private/setup/postgresql.php:24 +#: private/setup/postgresql.php:70 +msgid "You need to enter either an existing account or the administrator." +msgstr "" + +#: private/setup/mysql.php:12 +msgid "MySQL username and/or password not valid" +msgstr "" + +#: private/setup/mysql.php:67 private/setup/oci.php:54 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 +#: private/setup/postgresql.php:98 private/setup/postgresql.php:115 +#: private/setup/postgresql.php:125 private/setup/postgresql.php:134 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: private/setup/mysql.php:68 private/setup/oci.php:55 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 +#, php-format +msgid "Offending command was: \"%s\"" +msgstr "" + +#: private/setup/mysql.php:85 +#, php-format +msgid "MySQL user '%s'@'localhost' exists already." +msgstr "" + +#: private/setup/mysql.php:86 +msgid "Drop this user from MySQL" +msgstr "" + +#: private/setup/mysql.php:91 +#, php-format +msgid "MySQL user '%s'@'%%' already exists" +msgstr "" + +#: private/setup/mysql.php:92 +msgid "Drop this user from MySQL." +msgstr "" + +#: private/setup/oci.php:34 +msgid "Oracle connection could not be established" +msgstr "" + +#: private/setup/oci.php:41 private/setup/oci.php:113 +msgid "Oracle username and/or password not valid" +msgstr "" + +#: private/setup/oci.php:170 private/setup/oci.php:202 +#, php-format +msgid "Offending command was: \"%s\", name: %s, password: %s" +msgstr "" + +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +msgid "PostgreSQL username and/or password not valid" +msgstr "" + +#: private/setup.php:28 +msgid "Set an admin username." +msgstr "" + +#: private/setup.php:31 +msgid "Set an admin password." +msgstr "" + +#: private/setup.php:195 +msgid "" +"Your web server is not yet properly setup to allow files synchronization " +"because the WebDAV interface seems to be broken." +msgstr "" + +#: private/setup.php:196 +#, php-format +msgid "Please double check the <a href='%s'>installation guides</a>." +msgstr "" + +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" + +#: private/template/functions.php:130 +msgid "seconds ago" +msgstr "" + +#: private/template/functions.php:131 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:132 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:133 +msgid "today" +msgstr "" + +#: private/template/functions.php:134 +msgid "yesterday" +msgstr "" + +#: private/template/functions.php:136 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:138 +msgid "last month" +msgstr "" + +#: private/template/functions.php:139 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:141 +msgid "last year" +msgstr "" + +#: private/template/functions.php:142 +msgid "years ago" +msgstr "" diff --git a/l10n/ak/settings.po b/l10n/ak/settings.po new file mode 100644 index 00000000000..90a872fc261 --- /dev/null +++ b/l10n/ak/settings.po @@ -0,0 +1,668 @@ +# 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: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-30 01:55-0500\n" +"PO-Revision-Date: 2013-12-29 13:18+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"Language-Team: Akan (http://www.transifex.com/projects/p/owncloud/language/ak/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ak\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" + +#: ajax/apps/ocs.php:20 +msgid "Unable to load list from App Store" +msgstr "" + +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/togglegroups.php:20 changepassword/controller.php:55 +msgid "Authentication error" +msgstr "" + +#: ajax/changedisplayname.php:31 +msgid "Your full name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 +msgid "Unable to change full name" +msgstr "" + +#: ajax/creategroup.php:10 +msgid "Group already exists" +msgstr "" + +#: ajax/creategroup.php:19 +msgid "Unable to add group" +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:25 +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 "" + +#: changepassword/controller.php:20 +msgid "Wrong password" +msgstr "" + +#: changepassword/controller.php:42 +msgid "No user supplied" +msgstr "" + +#: changepassword/controller.php:74 +msgid "" +"Please provide an admin recovery password, otherwise all user data will be " +"lost" +msgstr "" + +#: changepassword/controller.php:79 +msgid "" +"Wrong admin recovery password. Please check the password and try again." +msgstr "" + +#: changepassword/controller.php:87 +msgid "" +"Back-end doesn't support password change, but the users encryption key was " +"successfully updated." +msgstr "" + +#: changepassword/controller.php:92 changepassword/controller.php:103 +msgid "Unable to change password" +msgstr "" + +#: js/apps.js:43 +msgid "Update to {appversion}" +msgstr "" + +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +msgid "Disable" +msgstr "" + +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +msgid "Enable" +msgstr "" + +#: js/apps.js:71 +msgid "Please wait...." +msgstr "" + +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +msgid "Error while disabling app" +msgstr "" + +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:125 +msgid "Updating...." +msgstr "" + +#: js/apps.js:128 +msgid "Error while updating app" +msgstr "" + +#: js/apps.js:128 +msgid "Error" +msgstr "" + +#: js/apps.js:129 templates/apps.php:43 +msgid "Update" +msgstr "" + +#: js/apps.js:132 +msgid "Updated" +msgstr "" + +#: js/personal.js:220 +msgid "Select a profile picture" +msgstr "" + +#: js/personal.js:266 +msgid "Decrypting files... Please wait, this can take some time." +msgstr "" + +#: js/personal.js:287 +msgid "Saving..." +msgstr "" + +#: js/users.js:47 +msgid "deleted" +msgstr "" + +#: js/users.js:47 +msgid "undo" +msgstr "" + +#: js/users.js:79 +msgid "Unable to remove user" +msgstr "" + +#: js/users.js:95 templates/users.php:26 templates/users.php:90 +#: templates/users.php:118 +msgid "Groups" +msgstr "" + +#: js/users.js:100 templates/users.php:92 templates/users.php:130 +msgid "Group Admin" +msgstr "" + +#: js/users.js:123 templates/users.php:170 +msgid "Delete" +msgstr "" + +#: js/users.js:284 +msgid "add group" +msgstr "" + +#: js/users.js:454 +msgid "A valid username must be provided" +msgstr "" + +#: js/users.js:455 js/users.js:461 js/users.js:476 +msgid "Error creating user" +msgstr "" + +#: js/users.js:460 +msgid "A valid password must be provided" +msgstr "" + +#: js/users.js:484 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "" + +#: personal.php:45 personal.php:46 +msgid "__language_name__" +msgstr "" + +#: templates/admin.php:8 +msgid "Everything (fatal issues, errors, warnings, info, debug)" +msgstr "" + +#: templates/admin.php:9 +msgid "Info, warnings, errors and fatal issues" +msgstr "" + +#: templates/admin.php:10 +msgid "Warnings, errors and fatal issues" +msgstr "" + +#: templates/admin.php:11 +msgid "Errors and fatal issues" +msgstr "" + +#: templates/admin.php:12 +msgid "Fatal issues only" +msgstr "" + +#: templates/admin.php:22 templates/admin.php:36 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:25 +#, php-format +msgid "" +"You are accessing %s via HTTP. We strongly suggest you configure your server" +" to require using HTTPS instead." +msgstr "" + +#: templates/admin.php:39 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file 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:50 +msgid "Setup Warning" +msgstr "" + +#: templates/admin.php:53 +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:54 +#, php-format +msgid "Please double check the <a href=\"%s\">installation guides</a>." +msgstr "" + +#: templates/admin.php:65 +msgid "Module 'fileinfo' missing" +msgstr "" + +#: templates/admin.php:68 +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:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 +msgid "Locale not working" +msgstr "" + +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:106 +#, php-format +msgid "" +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" + +#: templates/admin.php:118 +msgid "Internet connection not working" +msgstr "" + +#: templates/admin.php:121 +msgid "" +"This 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." +msgstr "" + +#: templates/admin.php:135 +msgid "Cron" +msgstr "" + +#: templates/admin.php:142 +msgid "Execute one task with each page loaded" +msgstr "" + +#: templates/admin.php:150 +msgid "" +"cron.php is registered at a webcron service to call cron.php every 15 " +"minutes over http." +msgstr "" + +#: templates/admin.php:158 +msgid "Use systems cron service to call the cron.php file every 15 minutes." +msgstr "" + +#: templates/admin.php:163 +msgid "Sharing" +msgstr "" + +#: templates/admin.php:169 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:170 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:177 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:178 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:186 +msgid "Allow public uploads" +msgstr "" + +#: templates/admin.php:187 +msgid "" +"Allow users to enable others to upload into their publicly shared folders" +msgstr "" + +#: templates/admin.php:195 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:196 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:203 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:206 +msgid "Allow users to only share with users in their groups" +msgstr "" + +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:214 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:221 +msgid "Security" +msgstr "" + +#: templates/admin.php:234 +msgid "Enforce HTTPS" +msgstr "" + +#: templates/admin.php:236 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." +msgstr "" + +#: templates/admin.php:242 +#, php-format +msgid "" +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." +msgstr "" + +#: templates/admin.php:254 +msgid "Log" +msgstr "" + +#: templates/admin.php:255 +msgid "Log level" +msgstr "" + +#: templates/admin.php:287 +msgid "More" +msgstr "" + +#: templates/admin.php:288 +msgid "Less" +msgstr "" + +#: templates/admin.php:294 templates/personal.php:173 +msgid "Version" +msgstr "" + +#: templates/admin.php:298 templates/personal.php:176 +msgid "" +"Developed by the <a href=\"http://ownCloud.org/contact\" " +"target=\"_blank\">ownCloud community</a>, the <a " +"href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is " +"licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" " +"target=\"_blank\"><abbr title=\"Affero General Public " +"License\">AGPL</abbr></a>." +msgstr "" + +#: templates/apps.php:13 +msgid "Add your App" +msgstr "" + +#: templates/apps.php:28 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:33 +msgid "Select an App" +msgstr "" + +#: templates/apps.php:39 +msgid "See application page at apps.owncloud.com" +msgstr "" + +#: templates/apps.php:41 +msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" +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 +msgid "Get the apps to sync your files" +msgstr "" + +#: templates/personal.php:19 +msgid "Show First Run Wizard again" +msgstr "" + +#: templates/personal.php:27 +#, php-format +msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>" +msgstr "" + +#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +msgid "Password" +msgstr "" + +#: templates/personal.php:40 +msgid "Your password was changed" +msgstr "" + +#: templates/personal.php:41 +msgid "Unable to change your password" +msgstr "" + +#: templates/personal.php:42 +msgid "Current password" +msgstr "" + +#: templates/personal.php:44 +msgid "New password" +msgstr "" + +#: templates/personal.php:46 +msgid "Change password" +msgstr "" + +#: templates/personal.php:58 templates/users.php:88 +msgid "Full Name" +msgstr "" + +#: templates/personal.php:73 +msgid "Email" +msgstr "" + +#: templates/personal.php:75 +msgid "Your email address" +msgstr "" + +#: templates/personal.php:76 +msgid "Fill in an email address to enable password recovery" +msgstr "" + +#: templates/personal.php:86 +msgid "Profile picture" +msgstr "" + +#: templates/personal.php:91 +msgid "Upload new" +msgstr "" + +#: templates/personal.php:93 +msgid "Select new from Files" +msgstr "" + +#: templates/personal.php:94 +msgid "Remove image" +msgstr "" + +#: templates/personal.php:95 +msgid "Either png or jpg. Ideally square but you will be able to crop it." +msgstr "" + +#: templates/personal.php:97 +msgid "Your avatar is provided by your original account." +msgstr "" + +#: templates/personal.php:101 +msgid "Abort" +msgstr "" + +#: templates/personal.php:102 +msgid "Choose as profile image" +msgstr "" + +#: templates/personal.php:110 templates/personal.php:111 +msgid "Language" +msgstr "" + +#: templates/personal.php:130 +msgid "Help translate" +msgstr "" + +#: templates/personal.php:137 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:139 +#, php-format +msgid "" +"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via " +"WebDAV</a>" +msgstr "" + +#: templates/personal.php:150 +msgid "Encryption" +msgstr "" + +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" +msgstr "" + +#: templates/personal.php:158 +msgid "Log-in password" +msgstr "" + +#: templates/personal.php:163 +msgid "Decrypt all Files" +msgstr "" + +#: templates/users.php:21 +msgid "Login Name" +msgstr "" + +#: templates/users.php:30 +msgid "Create" +msgstr "" + +#: templates/users.php:36 +msgid "Admin Recovery Password" +msgstr "" + +#: templates/users.php:37 templates/users.php:38 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:42 +msgid "Default Storage" +msgstr "" + +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "" + +#: templates/users.php:48 templates/users.php:148 +msgid "Unlimited" +msgstr "" + +#: templates/users.php:66 templates/users.php:163 +msgid "Other" +msgstr "" + +#: templates/users.php:87 +msgid "Username" +msgstr "" + +#: templates/users.php:94 +msgid "Storage" +msgstr "" + +#: templates/users.php:108 +msgid "change full name" +msgstr "" + +#: templates/users.php:112 +msgid "set new password" +msgstr "" + +#: templates/users.php:143 +msgid "Default" +msgstr "" diff --git a/l10n/ak/user_ldap.po b/l10n/ak/user_ldap.po new file mode 100644 index 00000000000..3e48b498995 --- /dev/null +++ b/l10n/ak/user_ldap.po @@ -0,0 +1,513 @@ +# 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: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-30 01:55-0500\n" +"PO-Revision-Date: 2013-12-29 13:18+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"Language-Team: Akan (http://www.transifex.com/projects/p/owncloud/language/ak/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ak\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" + +#: ajax/clearMappings.php:34 +msgid "Failed to clear the mappings." +msgstr "" + +#: ajax/deleteConfiguration.php:34 +msgid "Failed to delete the server configuration" +msgstr "" + +#: ajax/testConfiguration.php:39 +msgid "The configuration is valid and the connection could be established!" +msgstr "" + +#: ajax/testConfiguration.php:42 +msgid "" +"The configuration is valid, but the Bind failed. Please check the server " +"settings and credentials." +msgstr "" + +#: ajax/testConfiguration.php:46 +msgid "" +"The configuration is invalid. Please have a look at the logs for further " +"details." +msgstr "" + +#: ajax/wizard.php:32 +msgid "No action specified" +msgstr "" + +#: ajax/wizard.php:38 +msgid "No configuration specified" +msgstr "" + +#: ajax/wizard.php:81 +msgid "No data specified" +msgstr "" + +#: ajax/wizard.php:89 +#, php-format +msgid " Could not set configuration %s" +msgstr "" + +#: js/settings.js:67 +msgid "Deletion failed" +msgstr "" + +#: js/settings.js:83 +msgid "Take over settings from recent server configuration?" +msgstr "" + +#: js/settings.js:84 +msgid "Keep settings?" +msgstr "" + +#: js/settings.js:99 +msgid "Cannot add server configuration" +msgstr "" + +#: js/settings.js:127 +msgid "mappings cleared" +msgstr "" + +#: js/settings.js:128 +msgid "Success" +msgstr "" + +#: js/settings.js:133 +msgid "Error" +msgstr "" + +#: js/settings.js:837 +msgid "Configuration OK" +msgstr "" + +#: js/settings.js:846 +msgid "Configuration incorrect" +msgstr "" + +#: js/settings.js:855 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:872 js/settings.js:881 +msgid "Select groups" +msgstr "" + +#: js/settings.js:875 js/settings.js:884 +msgid "Select object classes" +msgstr "" + +#: js/settings.js:878 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:905 +msgid "Connection test succeeded" +msgstr "" + +#: js/settings.js:912 +msgid "Connection test failed" +msgstr "" + +#: js/settings.js:921 +msgid "Do you really want to delete the current Server Configuration?" +msgstr "" + +#: js/settings.js:922 +msgid "Confirm Deletion" +msgstr "" + +#: lib/wizard.php:79 lib/wizard.php:93 +#, php-format +msgid "%s group found" +msgid_plural "%s groups found" +msgstr[0] "" +msgstr[1] "" + +#: lib/wizard.php:122 +#, php-format +msgid "%s user found" +msgid_plural "%s users found" +msgstr[0] "" +msgstr[1] "" + +#: lib/wizard.php:778 lib/wizard.php:790 +msgid "Invalid Host" +msgstr "" + +#: lib/wizard.php:951 +msgid "Could not find the desired feature" +msgstr "" + +#: templates/part.settingcontrols.php:2 +msgid "Save" +msgstr "" + +#: templates/part.settingcontrols.php:4 +msgid "Test Configuration" +msgstr "" + +#: templates/part.settingcontrols.php:10 templates/part.wizardcontrols.php:14 +msgid "Help" +msgstr "" + +#: templates/part.wizard-groupfilter.php:4 +#, php-format +msgid "Limit the access to %s to groups meeting this criteria:" +msgstr "" + +#: templates/part.wizard-groupfilter.php:8 +#: templates/part.wizard-userfilter.php:8 +msgid "only those object classes:" +msgstr "" + +#: templates/part.wizard-groupfilter.php:17 +#: templates/part.wizard-userfilter.php:17 +msgid "only from those groups:" +msgstr "" + +#: templates/part.wizard-groupfilter.php:25 +#: templates/part.wizard-loginfilter.php:32 +#: templates/part.wizard-userfilter.php:25 +msgid "Edit raw filter instead" +msgstr "" + +#: templates/part.wizard-groupfilter.php:30 +#: templates/part.wizard-loginfilter.php:37 +#: templates/part.wizard-userfilter.php:30 +msgid "Raw LDAP filter" +msgstr "" + +#: templates/part.wizard-groupfilter.php:31 +#, php-format +msgid "" +"The filter specifies which LDAP groups shall have access to the %s instance." +msgstr "" + +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" +msgstr "" + +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" +msgstr "" + +#: templates/part.wizard-loginfilter.php:8 +msgid "LDAP Username:" +msgstr "" + +#: templates/part.wizard-loginfilter.php:16 +msgid "LDAP Email Address:" +msgstr "" + +#: templates/part.wizard-loginfilter.php:24 +msgid "Other Attributes:" +msgstr "" + +#: templates/part.wizard-loginfilter.php:38 +#, php-format +msgid "" +"Defines the filter to apply, when login is attempted. %%uid replaces the " +"username in the login action. Example: \"uid=%%uid\"" +msgstr "" + +#: templates/part.wizard-server.php:18 +msgid "Add Server Configuration" +msgstr "" + +#: templates/part.wizard-server.php:30 +msgid "Host" +msgstr "" + +#: templates/part.wizard-server.php:31 +msgid "" +"You can omit the protocol, except you require SSL. Then start with ldaps://" +msgstr "" + +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "" + +#: templates/part.wizard-server.php:44 +msgid "User DN" +msgstr "" + +#: templates/part.wizard-server.php:45 +msgid "" +"The DN of the client user with which the bind shall be done, e.g. " +"uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " +"empty." +msgstr "" + +#: templates/part.wizard-server.php:52 +msgid "Password" +msgstr "" + +#: templates/part.wizard-server.php:53 +msgid "For anonymous access, leave DN and Password empty." +msgstr "" + +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" +msgstr "" + +#: templates/part.wizard-server.php:61 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "" + +#: templates/part.wizard-userfilter.php:4 +#, php-format +msgid "Limit the access to %s to users meeting this criteria:" +msgstr "" + +#: templates/part.wizard-userfilter.php:31 +#, php-format +msgid "" +"The filter specifies which LDAP users shall have access to the %s instance." +msgstr "" + +#: templates/part.wizard-userfilter.php:38 +msgid "users found" +msgstr "" + +#: templates/part.wizardcontrols.php:5 +msgid "Back" +msgstr "" + +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "" + +#: templates/settings.php:11 +msgid "" +"<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." +msgstr "" + +#: templates/settings.php:14 +msgid "" +"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "" + +#: templates/settings.php:20 +msgid "Connection Settings" +msgstr "" + +#: templates/settings.php:22 +msgid "Configuration Active" +msgstr "" + +#: templates/settings.php:22 +msgid "When unchecked, this configuration will be skipped." +msgstr "" + +#: templates/settings.php:23 +msgid "Backup (Replica) Host" +msgstr "" + +#: templates/settings.php:23 +msgid "" +"Give an optional backup host. It must be a replica of the main LDAP/AD " +"server." +msgstr "" + +#: templates/settings.php:24 +msgid "Backup (Replica) Port" +msgstr "" + +#: templates/settings.php:25 +msgid "Disable Main Server" +msgstr "" + +#: templates/settings.php:25 +msgid "Only connect to the replica server." +msgstr "" + +#: templates/settings.php:26 +msgid "Case insensitve LDAP server (Windows)" +msgstr "" + +#: templates/settings.php:27 +msgid "Turn off SSL certificate validation." +msgstr "" + +#: templates/settings.php:27 +#, php-format +msgid "" +"Not recommended, use it for testing only! If connection only works with this" +" option, import the LDAP server's SSL certificate in your %s server." +msgstr "" + +#: templates/settings.php:28 +msgid "Cache Time-To-Live" +msgstr "" + +#: templates/settings.php:28 +msgid "in seconds. A change empties the cache." +msgstr "" + +#: templates/settings.php:30 +msgid "Directory Settings" +msgstr "" + +#: templates/settings.php:32 +msgid "User Display Name Field" +msgstr "" + +#: templates/settings.php:32 +msgid "The LDAP attribute to use to generate the user's display name." +msgstr "" + +#: templates/settings.php:33 +msgid "Base User Tree" +msgstr "" + +#: templates/settings.php:33 +msgid "One User Base DN per line" +msgstr "" + +#: templates/settings.php:34 +msgid "User Search Attributes" +msgstr "" + +#: templates/settings.php:34 templates/settings.php:37 +msgid "Optional; one attribute per line" +msgstr "" + +#: templates/settings.php:35 +msgid "Group Display Name Field" +msgstr "" + +#: templates/settings.php:35 +msgid "The LDAP attribute to use to generate the groups's display name." +msgstr "" + +#: templates/settings.php:36 +msgid "Base Group Tree" +msgstr "" + +#: templates/settings.php:36 +msgid "One Group Base DN per line" +msgstr "" + +#: templates/settings.php:37 +msgid "Group Search Attributes" +msgstr "" + +#: templates/settings.php:38 +msgid "Group-Member association" +msgstr "" + +#: templates/settings.php:40 +msgid "Special Attributes" +msgstr "" + +#: templates/settings.php:42 +msgid "Quota Field" +msgstr "" + +#: templates/settings.php:43 +msgid "Quota Default" +msgstr "" + +#: templates/settings.php:43 +msgid "in bytes" +msgstr "" + +#: templates/settings.php:44 +msgid "Email Field" +msgstr "" + +#: templates/settings.php:45 +msgid "User Home Folder Naming Rule" +msgstr "" + +#: templates/settings.php:45 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:51 +msgid "Internal Username" +msgstr "" + +#: templates/settings.php:52 +msgid "" +"By default the internal username will be created from the UUID attribute. It" +" makes sure that the username is unique and characters do not need to be " +"converted. The internal username has the restriction that only these " +"characters are allowed: [ a-zA-Z0-9_.@- ]. Other characters are replaced " +"with their ASCII correspondence or simply omitted. On collisions a number " +"will be added/increased. The internal username is used to identify a user " +"internally. It is also the default name for the user home folder. It is also" +" a part of remote URLs, for instance for all *DAV services. With this " +"setting, the default behavior can be overridden. To achieve a similar " +"behavior as before ownCloud 5 enter the user display name attribute in the " +"following field. Leave it empty for default behavior. Changes will have " +"effect only on newly mapped (added) LDAP users." +msgstr "" + +#: templates/settings.php:53 +msgid "Internal Username Attribute:" +msgstr "" + +#: templates/settings.php:54 +msgid "Override UUID detection" +msgstr "" + +#: templates/settings.php:55 +msgid "" +"By default, the UUID attribute is automatically detected. The UUID attribute" +" is used to doubtlessly identify LDAP users and groups. Also, the internal " +"username will be created based on the UUID, if not specified otherwise " +"above. You can override the setting and pass an attribute of your choice. " +"You must make sure that the attribute of your choice can be fetched for both" +" users and groups and it is unique. Leave it empty for default behavior. " +"Changes will have effect only on newly mapped (added) LDAP users and groups." +msgstr "" + +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" +msgstr "" + +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" +msgstr "" + +#: templates/settings.php:58 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:59 +msgid "" +"Usernames are used to store and assign (meta) data. In order to precisely " +"identify and recognize users, each LDAP user will have a internal username. " +"This requires a mapping from username to LDAP user. The created username is " +"mapped to the UUID of the LDAP user. Additionally the DN is cached as well " +"to reduce LDAP interaction, but it is not used for identification. If the DN" +" changes, the changes will be found. The internal username is used all over." +" Clearing the mappings will have leftovers everywhere. Clearing the mappings" +" is not configuration sensitive, it affects all LDAP configurations! Never " +"clear the mappings in a production environment, only in a testing or " +"experimental stage." +msgstr "" + +#: templates/settings.php:60 +msgid "Clear Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:60 +msgid "Clear Groupname-LDAP Group Mapping" +msgstr "" diff --git a/l10n/ak/user_webdavauth.po b/l10n/ak/user_webdavauth.po new file mode 100644 index 00000000000..d1477c074ad --- /dev/null +++ b/l10n/ak/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: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-30 01:55-0500\n" +"PO-Revision-Date: 2013-12-29 13:18+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"Language-Team: Akan (http://www.transifex.com/projects/p/owncloud/language/ak/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ak\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" + +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "" + +#: templates/settings.php:4 +msgid "Address: " +msgstr "" + +#: templates/settings.php:7 +msgid "" +"The user credentials will be sent to this address. 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/ar/core.po b/l10n/ar/core.po index 7430a028af1..5cc97810f1f 100644 --- a/l10n/ar/core.po +++ b/l10n/ar/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -149,15 +149,15 @@ msgstr "تشرين الثاني" msgid "December" msgstr "كانون الاول" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "إعدادات" -#: js/js.js:858 +#: js/js.js:869 msgid "seconds ago" msgstr "منذ ثواني" -#: js/js.js:859 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" @@ -167,7 +167,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: js/js.js:860 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" @@ -177,15 +177,15 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: js/js.js:861 +#: js/js.js:872 msgid "today" msgstr "اليوم" -#: js/js.js:862 +#: js/js.js:873 msgid "yesterday" msgstr "يوم أمس" -#: js/js.js:863 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" @@ -195,11 +195,11 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: js/js.js:864 +#: js/js.js:875 msgid "last month" msgstr "الشهر الماضي" -#: js/js.js:865 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" @@ -209,15 +209,15 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: js/js.js:866 +#: js/js.js:877 msgid "months ago" msgstr "شهر مضى" -#: js/js.js:867 +#: js/js.js:878 msgid "last year" msgstr "السنةالماضية" -#: js/js.js:868 +#: js/js.js:879 msgid "years ago" msgstr "سنة مضت" diff --git a/l10n/ar/files.po b/l10n/ar/files.po index 2231204bb76..90e08509578 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-11 13:31-0500\n" -"PO-Revision-Date: 2013-12-09 12:00+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -48,12 +48,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -173,6 +178,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "شارك" diff --git a/l10n/ar/lib.po b/l10n/ar/lib.po index 71b1097504f..1bbf18cbd76 100644 --- a/l10n/ar/lib.po +++ b/l10n/ar/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -53,15 +53,15 @@ msgstr "المدير" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "خدمات الشبكة تحت سيطرتك" @@ -70,23 +70,23 @@ msgstr "خدمات الشبكة تحت سيطرتك" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "تحميل ملفات ZIP متوقف" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "الملفات بحاجة الى ان يتم تحميلها واحد تلو الاخر" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "العودة الى الملفات" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "الملفات المحددة كبيرة جدا ليتم ضغطها في ملف zip" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "معلومات إضافية" msgid "Images" msgstr "صور" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s ادخل اسم المستخدم الخاص بقاعدة البيانات." -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s ادخل اسم فاعدة البيانات" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s لا يسمح لك باستخدام نقطه (.) في اسم قاعدة البيانات" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "اسم المستخدم و/أو كلمة المرور لنظام MySQL غير صحيح" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "خطأ في قواعد البيانات : \"%s\"" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "اسم المستخدم و/أو كلمة المرور لنظام Oracle غير صحيح" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "الأمر المخالف كان : \"%s\", اسم المستخدم : %s, كلمة المرور: %s" @@ -347,7 +347,3 @@ msgstr "السنةالماضية" #: private/template/functions.php:142 msgid "years ago" msgstr "سنة مضت" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/ar/user_ldap.po b/l10n/ar/user_ldap.po index 5d9ee639dad..3afffadb9e0 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." @@ -86,43 +86,43 @@ msgstr "" msgid "Error" msgstr "خطأ" -#: js/settings.js:777 +#: js/settings.js:837 msgid "Configuration OK" msgstr "" -#: js/settings.js:786 +#: js/settings.js:846 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:795 +#: js/settings.js:855 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:872 js/settings.js:881 msgid "Select groups" msgstr "إختر مجموعة" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:875 js/settings.js:884 msgid "Select object classes" msgstr "" -#: js/settings.js:818 +#: js/settings.js:878 msgid "Select attributes" msgstr "" -#: js/settings.js:845 +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:852 +#: js/settings.js:912 msgid "Connection test failed" msgstr "" -#: js/settings.js:861 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:862 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "" @@ -148,11 +148,11 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:778 lib/wizard.php:790 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:952 +#: lib/wizard.php:951 msgid "Could not find the desired feature" msgstr "" diff --git a/l10n/az/files.po b/l10n/az/files.po index af916514557..75cfc77660a 100644 --- a/l10n/az/files.po +++ b/l10n/az/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-09 06:39-0500\n" -"PO-Revision-Date: 2013-12-09 11:10+0000\n" +"POT-Creation-Date: 2013-12-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06:55+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Azerbaijani (http://www.transifex.com/projects/p/owncloud/language/az/)\n" "MIME-Version: 1.0\n" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "" diff --git a/l10n/az/lib.po b/l10n/az/lib.po index 635b44ff208..525d68a4713 100644 --- a/l10n/az/lib.po +++ b/l10n/az/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-09 06:39-0500\n" -"PO-Revision-Date: 2013-12-09 11:10+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Azerbaijani (http://www.transifex.com/projects/p/owncloud/language/az/)\n" "MIME-Version: 1.0\n" @@ -327,7 +327,3 @@ msgstr "" #: private/template/functions.php:142 msgid "years ago" msgstr "" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/be/files.po b/l10n/be/files.po index c65df86415c..2b804d9388e 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" +"POT-Creation-Date: 2013-12-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06:55+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "" diff --git a/l10n/be/lib.po b/l10n/be/lib.po index 7dde7246efd..f209cb8230b 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" @@ -53,15 +53,15 @@ msgstr "" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "" @@ -70,23 +70,23 @@ msgstr "" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "" msgid "Images" msgstr "" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -339,7 +339,3 @@ msgstr "" #: private/template/functions.php:142 msgid "years ago" msgstr "" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index 69d5c0644b0..f865e5452d4 100644 --- a/l10n/bg_BG/core.po +++ b/l10n/bg_BG/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -148,59 +148,59 @@ msgstr "Ноември" msgid "December" msgstr "Декември" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Настройки" -#: js/js.js:858 +#: js/js.js:869 msgid "seconds ago" msgstr "преди секунди" -#: js/js.js:859 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:860 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:861 +#: js/js.js:872 msgid "today" msgstr "днес" -#: js/js.js:862 +#: js/js.js:873 msgid "yesterday" msgstr "вчера" -#: js/js.js:863 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:864 +#: js/js.js:875 msgid "last month" msgstr "последният месец" -#: js/js.js:865 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:866 +#: js/js.js:877 msgid "months ago" msgstr "" -#: js/js.js:867 +#: js/js.js:878 msgid "last year" msgstr "последната година" -#: js/js.js:868 +#: js/js.js:879 msgid "years ago" msgstr "последните години" diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po index 2069edf8de9..ef6b2a9422c 100644 --- a/l10n/bg_BG/files.po +++ b/l10n/bg_BG/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-11 13:31-0500\n" -"PO-Revision-Date: 2013-12-09 12:00+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "Споделяне" diff --git a/l10n/bg_BG/lib.po b/l10n/bg_BG/lib.po index 68949be3cd9..1771455acb2 100644 --- a/l10n/bg_BG/lib.po +++ b/l10n/bg_BG/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -54,15 +54,15 @@ msgstr "Админ" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "уеб услуги под Ваш контрол" @@ -71,23 +71,23 @@ msgstr "уеб услуги под Ваш контрол" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "Изтеглянето като ZIP е изключено." -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Файловете трябва да се изтеглят един по един." -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Назад към файловете" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Избраните файлове са прекалено големи за генерирането на ZIP архив." -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -173,17 +173,17 @@ msgstr "Текст" msgid "Images" msgstr "Снимки" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s въведете потребителско име за базата с данни." -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s въведете име на базата с данни." -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s, не можете да ползвате точки в името на базата от данни" @@ -204,11 +204,11 @@ msgid "MySQL username and/or password not valid" msgstr "Невалидно MySQL потребителско име и/или парола" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -216,10 +216,10 @@ msgid "DB Error: \"%s\"" msgstr "Грешка в базата от данни: \"%s\"" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -252,7 +252,7 @@ msgstr "Oracle връзка не можа да се осъществи" msgid "Oracle username and/or password not valid" msgstr "Невалидно Oracle потребителско име и/или парола" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Проблемната команда беше: \"%s\", име: %s, парола: %s" @@ -332,7 +332,3 @@ msgstr "последната година" #: private/template/functions.php:142 msgid "years ago" msgstr "последните години" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/bg_BG/user_ldap.po b/l10n/bg_BG/user_ldap.po index bdaa50a09ae..9a3ddf148fb 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." @@ -86,43 +86,43 @@ msgstr "" msgid "Error" msgstr "Грешка" -#: js/settings.js:777 +#: js/settings.js:837 msgid "Configuration OK" msgstr "" -#: js/settings.js:786 +#: js/settings.js:846 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:795 +#: js/settings.js:855 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:872 js/settings.js:881 msgid "Select groups" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:875 js/settings.js:884 msgid "Select object classes" msgstr "" -#: js/settings.js:818 +#: js/settings.js:878 msgid "Select attributes" msgstr "" -#: js/settings.js:845 +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:852 +#: js/settings.js:912 msgid "Connection test failed" msgstr "" -#: js/settings.js:861 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:862 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "" @@ -140,11 +140,11 @@ msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:778 lib/wizard.php:790 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:952 +#: lib/wizard.php:951 msgid "Could not find the desired feature" msgstr "" diff --git a/l10n/bn_BD/core.po b/l10n/bn_BD/core.po index 54a21e66b74..7c1fcc50dd7 100644 --- a/l10n/bn_BD/core.po +++ b/l10n/bn_BD/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -148,59 +148,59 @@ msgstr "নভেম্বর" msgid "December" msgstr "ডিসেম্বর" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "নিয়ামকসমূহ" -#: js/js.js:858 +#: js/js.js:869 msgid "seconds ago" msgstr "সেকেন্ড পূর্বে" -#: js/js.js:859 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:860 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:861 +#: js/js.js:872 msgid "today" msgstr "আজ" -#: js/js.js:862 +#: js/js.js:873 msgid "yesterday" msgstr "গতকাল" -#: js/js.js:863 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:864 +#: js/js.js:875 msgid "last month" msgstr "গত মাস" -#: js/js.js:865 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:866 +#: js/js.js:877 msgid "months ago" msgstr "মাস পূর্বে" -#: js/js.js:867 +#: js/js.js:878 msgid "last year" msgstr "গত বছর" -#: js/js.js:868 +#: js/js.js:879 msgid "years ago" msgstr "বছর পূর্বে" diff --git a/l10n/bn_BD/files.po b/l10n/bn_BD/files.po index df4fcc9abe7..9d7ce1231d6 100644 --- a/l10n/bn_BD/files.po +++ b/l10n/bn_BD/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-11 13:31-0500\n" -"PO-Revision-Date: 2013-12-09 12:00+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "ভাগাভাগি কর" diff --git a/l10n/bn_BD/lib.po b/l10n/bn_BD/lib.po index 934fde2d478..aa82b972043 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -53,15 +53,15 @@ msgstr "প্রশাসন" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "ওয়েব সার্ভিস আপনার হাতের মুঠোয়" @@ -70,23 +70,23 @@ msgstr "ওয়েব সার্ভিস আপনার হাতের ম msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "ZIP ডাউনলোড বন্ধ করা আছে।" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "ফাইলগুলো একে একে ডাউনলোড করা আবশ্যক।" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "ফাইলে ফিরে চল" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "নির্বাচিত ফাইলগুলো এতই বৃহৎ যে জিপ ফাইল তৈরী করা সম্ভব নয়।" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "টেক্সট" msgid "Images" msgstr "" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -331,7 +331,3 @@ msgstr "গত বছর" #: private/template/functions.php:142 msgid "years ago" msgstr "বছর পূর্বে" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/bn_BD/user_ldap.po b/l10n/bn_BD/user_ldap.po index 4731a9a7f5b..600c5034216 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." @@ -86,43 +86,43 @@ msgstr "" msgid "Error" msgstr "সমস্যা" -#: js/settings.js:777 +#: js/settings.js:837 msgid "Configuration OK" msgstr "" -#: js/settings.js:786 +#: js/settings.js:846 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:795 +#: js/settings.js:855 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:872 js/settings.js:881 msgid "Select groups" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:875 js/settings.js:884 msgid "Select object classes" msgstr "" -#: js/settings.js:818 +#: js/settings.js:878 msgid "Select attributes" msgstr "" -#: js/settings.js:845 +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:852 +#: js/settings.js:912 msgid "Connection test failed" msgstr "" -#: js/settings.js:861 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:862 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "" @@ -140,11 +140,11 @@ msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:778 lib/wizard.php:790 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:952 +#: lib/wizard.php:951 msgid "Could not find the desired feature" msgstr "" diff --git a/l10n/bs/files.po b/l10n/bs/files.po index 0b919a5082e..440f16a2ce5 100644 --- a/l10n/bs/files.po +++ b/l10n/bs/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "Podijeli" diff --git a/l10n/bs/lib.po b/l10n/bs/lib.po index 52547ce4d3a..447589d9b0b 100644 --- a/l10n/bs/lib.po +++ b/l10n/bs/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" @@ -53,15 +53,15 @@ msgstr "" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "" @@ -70,23 +70,23 @@ msgstr "" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "" msgid "Images" msgstr "" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -335,7 +335,3 @@ msgstr "" #: private/template/functions.php:142 msgid "years ago" msgstr "" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/bs/user_ldap.po b/l10n/bs/user_ldap.po index 947a928de2e..fb4bd54b94c 100644 --- a/l10n/bs/user_ldap.po +++ b/l10n/bs/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." @@ -86,43 +86,43 @@ msgstr "" msgid "Error" msgstr "" -#: js/settings.js:777 +#: js/settings.js:837 msgid "Configuration OK" msgstr "" -#: js/settings.js:786 +#: js/settings.js:846 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:795 +#: js/settings.js:855 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:872 js/settings.js:881 msgid "Select groups" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:875 js/settings.js:884 msgid "Select object classes" msgstr "" -#: js/settings.js:818 +#: js/settings.js:878 msgid "Select attributes" msgstr "" -#: js/settings.js:845 +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:852 +#: js/settings.js:912 msgid "Connection test failed" msgstr "" -#: js/settings.js:861 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:862 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "" @@ -142,11 +142,11 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:778 lib/wizard.php:790 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:952 +#: lib/wizard.php:951 msgid "Could not find the desired feature" msgstr "" diff --git a/l10n/ca/core.po b/l10n/ca/core.po index e456435f979..2efc821f286 100644 --- a/l10n/ca/core.po +++ b/l10n/ca/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -150,59 +150,59 @@ msgstr "Novembre" msgid "December" msgstr "Desembre" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Configuració" -#: js/js.js:858 +#: js/js.js:869 msgid "seconds ago" msgstr "segons enrere" -#: js/js.js:859 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "fa %n minut" msgstr[1] "fa %n minuts" -#: js/js.js:860 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "fa %n hora" msgstr[1] "fa %n hores" -#: js/js.js:861 +#: js/js.js:872 msgid "today" msgstr "avui" -#: js/js.js:862 +#: js/js.js:873 msgid "yesterday" msgstr "ahir" -#: js/js.js:863 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "fa %n dies" msgstr[1] "fa %n dies" -#: js/js.js:864 +#: js/js.js:875 msgid "last month" msgstr "el mes passat" -#: js/js.js:865 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "fa %n mes" msgstr[1] "fa %n mesos" -#: js/js.js:866 +#: js/js.js:877 msgid "months ago" msgstr "mesos enrere" -#: js/js.js:867 +#: js/js.js:878 msgid "last year" msgstr "l'any passat" -#: js/js.js:868 +#: js/js.js:879 msgid "years ago" msgstr "anys enrere" diff --git a/l10n/ca/files.po b/l10n/ca/files.po index 50fc51c3204..e96c34be042 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-11 13:31-0500\n" -"PO-Revision-Date: 2013-12-09 12:00+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -49,12 +49,17 @@ msgstr "El nom %s ja s'usa en la carpeta %s. Indiqueu un nom diferent." msgid "Not a valid source" msgstr "No és un origen vàlid" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" msgstr "S'ha produït un error en baixar %s a %s" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "S'ha produït un error en crear el fitxer" @@ -174,6 +179,10 @@ msgstr "No s'ha pogut crear el fitxer" msgid "Could not create folder" msgstr "No s'ha pogut crear la carpeta" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "Comparteix" diff --git a/l10n/ca/lib.po b/l10n/ca/lib.po index 692ffe5f992..2cfd9ff67e3 100644 --- a/l10n/ca/lib.po +++ b/l10n/ca/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-02 17:27-0500\n" -"PO-Revision-Date: 2013-12-02 11:30+0000\n" -"Last-Translator: rogerc\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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" @@ -71,23 +71,23 @@ msgstr "controleu els vostres serveis web" msgid "cannot open \"%s\"" msgstr "no es pot obrir \"%s\"" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "La baixada en ZIP està desactivada." -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Els fitxers s'han de baixar d'un en un." -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Torna a Fitxers" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Els fitxers seleccionats son massa grans per generar un fitxer zip." -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -173,17 +173,17 @@ msgstr "Text" msgid "Images" msgstr "Imatges" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s escriviu el nom d'usuari de la base de dades." -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s escriviu el nom de la base de dades." -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s no podeu usar punts en el nom de la base de dades" @@ -204,11 +204,11 @@ msgid "MySQL username and/or password not valid" msgstr "Nom d'usuari i/o contrasenya MySQL no vàlids" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -216,10 +216,10 @@ msgid "DB Error: \"%s\"" msgstr "Error DB: \"%s\"" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -252,7 +252,7 @@ msgstr "No s'ha pogut establir la connexió Oracle" msgid "Oracle username and/or password not valid" msgstr "Nom d'usuari i/o contrasenya Oracle no vàlids" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "L'ordre en conflicte és: \"%s\", nom: %s, contrasenya: %s" @@ -332,7 +332,3 @@ msgstr "l'any passat" #: private/template/functions.php:142 msgid "years ago" msgstr "anys enrere" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "Provocat per:" diff --git a/l10n/ca/user_ldap.po b/l10n/ca/user_ldap.po index 286dc47ba11..bf9ea4772c2 100644 --- a/l10n/ca/user_ldap.po +++ b/l10n/ca/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -28,17 +28,17 @@ msgstr "Ha fallat en eliminar els mapatges" msgid "Failed to delete the server configuration" msgstr "Ha fallat en eliminar la configuració del servidor" -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "La configuració és vàlida i s'ha pogut establir la comunicació!" -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "La configuració és vàlida, però ha fallat el Bind. Comproveu les credencials i l'arranjament del servidor." -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." @@ -89,43 +89,43 @@ msgstr "Èxit" msgid "Error" msgstr "Error" -#: js/settings.js:777 +#: js/settings.js:837 msgid "Configuration OK" msgstr "Configuració correcte" -#: js/settings.js:786 +#: js/settings.js:846 msgid "Configuration incorrect" msgstr "Configuració incorrecte" -#: js/settings.js:795 +#: js/settings.js:855 msgid "Configuration incomplete" msgstr "Configuració incompleta" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:872 js/settings.js:881 msgid "Select groups" msgstr "Selecciona els grups" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:875 js/settings.js:884 msgid "Select object classes" msgstr "Seleccioneu les classes dels objectes" -#: js/settings.js:818 +#: js/settings.js:878 msgid "Select attributes" msgstr "Seleccioneu els atributs" -#: js/settings.js:845 +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "La prova de connexió ha reeixit" -#: js/settings.js:852 +#: js/settings.js:912 msgid "Connection test failed" msgstr "La prova de connexió ha fallat" -#: js/settings.js:861 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "Voleu eliminar la configuració actual del servidor?" -#: js/settings.js:862 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "Confirma l'eliminació" @@ -143,11 +143,11 @@ msgid_plural "%s users found" msgstr[0] "S'ha trobat %s usuari" msgstr[1] "S'han trobat %s usuaris" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:778 lib/wizard.php:790 msgid "Invalid Host" msgstr "Ordinador central no vàlid" -#: lib/wizard.php:952 +#: lib/wizard.php:951 msgid "Could not find the desired feature" msgstr "La característica desitjada no s'ha trobat" diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index 2cd0bb3910c..a77422d481e 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-11 13:31-0500\n" -"PO-Revision-Date: 2013-12-09 21:40+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: liska_\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -155,63 +155,63 @@ msgstr "Listopad" msgid "December" msgstr "Prosinec" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Nastavení" -#: js/js.js:858 +#: js/js.js:869 msgid "seconds ago" msgstr "před pár vteřinami" -#: js/js.js:859 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "před %n minutou" msgstr[1] "před %n minutami" msgstr[2] "před %n minutami" -#: js/js.js:860 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "před %n hodinou" msgstr[1] "před %n hodinami" msgstr[2] "před %n hodinami" -#: js/js.js:861 +#: js/js.js:872 msgid "today" msgstr "dnes" -#: js/js.js:862 +#: js/js.js:873 msgid "yesterday" msgstr "včera" -#: js/js.js:863 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "před %n dnem" msgstr[1] "před %n dny" msgstr[2] "před %n dny" -#: js/js.js:864 +#: js/js.js:875 msgid "last month" msgstr "minulý měsíc" -#: js/js.js:865 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "před %n měsícem" msgstr[1] "před %n měsíci" msgstr[2] "před %n měsíci" -#: js/js.js:866 +#: js/js.js:877 msgid "months ago" msgstr "před měsíci" -#: js/js.js:867 +#: js/js.js:878 msgid "last year" msgstr "minulý rok" -#: js/js.js:868 +#: js/js.js:879 msgid "years ago" msgstr "před lety" diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index 13e9333e32a..40608268d8e 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/files.po @@ -6,7 +6,7 @@ # Twiguard, 2013 # dibalaj <dibalaj@dibalaj.cz>, 2013 # Honza K. <honza889@gmail.com>, 2013 -# liska_, 2013 +# liska_, 2013-2014 # cvanca <mrs.jenkins.oh.yeah@gmail.com>, 2013 # pstast <petr@stastny.eu>, 2013 # Tomáš Chvátal <tomas.chvatal@gmail.com>, 2013 @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-11 13:31-0500\n" -"PO-Revision-Date: 2013-12-09 12:00+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2014-01-04 01:55-0500\n" +"PO-Revision-Date: 2014-01-02 07:30+0000\n" +"Last-Translator: liska_\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" @@ -53,12 +53,17 @@ msgstr "Název %s ve složce %s již existuje. Vyberte prosím jiné jméno." msgid "Not a valid source" msgstr "Neplatný zdroj" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "Server není oprávněn otevírat adresy URL. Ověřte, prosím, konfiguraci serveru." + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" msgstr "Chyba při stahování %s do %s" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "Chyba při vytváření souboru" @@ -178,6 +183,10 @@ msgstr "Nepodařilo se vytvořit soubor" msgid "Could not create folder" msgstr "Nepodařilo se vytvořit složku" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "Chyba při načítání URL" + #: js/fileactions.js:125 msgid "Share" msgstr "Sdílet" diff --git a/l10n/cs_CZ/lib.po b/l10n/cs_CZ/lib.po index df4aeb32e12..7755fd96b2d 100644 --- a/l10n/cs_CZ/lib.po +++ b/l10n/cs_CZ/lib.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-27 18:40+0000\n" -"Last-Translator: pstast <petr@stastny.eu>\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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" @@ -74,23 +74,23 @@ msgstr "webové služby pod Vaší kontrolou" msgid "cannot open \"%s\"" msgstr "nelze otevřít \"%s\"" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "Stahování v ZIPu je vypnuto." -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Soubory musí být stahovány jednotlivě." -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Zpět k souborům" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Vybrané soubory jsou příliš velké pro vytvoření ZIP souboru." -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -176,17 +176,17 @@ msgstr "Text" msgid "Images" msgstr "Obrázky" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "Zadejte uživatelské jméno %s databáze." -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "Zadejte název databáze pro %s databáze." -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "V názvu databáze %s nesmíte používat tečky." @@ -207,11 +207,11 @@ msgid "MySQL username and/or password not valid" msgstr "Uživatelské jméno či heslo MySQL není platné" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -219,10 +219,10 @@ msgid "DB Error: \"%s\"" msgstr "Chyba databáze: \"%s\"" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -255,7 +255,7 @@ msgstr "Spojení s Oracle nemohlo být navázáno" msgid "Oracle username and/or password not valid" msgstr "Uživatelské jméno či heslo Oracle není platné" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Příslušný příkaz byl: \"%s\", jméno: %s, heslo: %s" @@ -339,7 +339,3 @@ msgstr "minulý rok" #: private/template/functions.php:142 msgid "years ago" msgstr "před lety" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "Příčina:" diff --git a/l10n/cs_CZ/user_ldap.po b/l10n/cs_CZ/user_ldap.po index c71fd18e9de..3e8cc07f1ff 100644 --- a/l10n/cs_CZ/user_ldap.po +++ b/l10n/cs_CZ/user_ldap.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-02 17:27-0500\n" -"PO-Revision-Date: 2013-12-02 20:10+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: pstast <petr@stastny.eu>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -31,17 +31,17 @@ msgstr "Selhalo zrušení mapování." msgid "Failed to delete the server configuration" msgstr "Selhalo smazání nastavení serveru" -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "Nastavení je v pořádku a spojení bylo navázáno." -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "Konfigurace je v pořádku, ale spojení selhalo. Zkontrolujte, prosím, nastavení serveru a přihlašovací údaje." -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." @@ -92,43 +92,43 @@ msgstr "Úspěch" msgid "Error" msgstr "Chyba" -#: js/settings.js:777 +#: js/settings.js:837 msgid "Configuration OK" msgstr "Konfigurace v pořádku" -#: js/settings.js:786 +#: js/settings.js:846 msgid "Configuration incorrect" msgstr "Nesprávná konfigurace" -#: js/settings.js:795 +#: js/settings.js:855 msgid "Configuration incomplete" msgstr "Nekompletní konfigurace" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:872 js/settings.js:881 msgid "Select groups" msgstr "Vyberte skupiny" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:875 js/settings.js:884 msgid "Select object classes" msgstr "Vyberte objektové třídy" -#: js/settings.js:818 +#: js/settings.js:878 msgid "Select attributes" msgstr "Vyberte atributy" -#: js/settings.js:845 +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "Test spojení byl úspěšný" -#: js/settings.js:852 +#: js/settings.js:912 msgid "Connection test failed" msgstr "Test spojení selhal" -#: js/settings.js:861 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "Opravdu si přejete smazat současné nastavení serveru?" -#: js/settings.js:862 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "Potvrdit smazání" @@ -148,11 +148,11 @@ msgstr[0] "nalezen %s uživatel" msgstr[1] "nalezeni %s uživatelé" msgstr[2] "nalezeno %s uživatelů" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:778 lib/wizard.php:790 msgid "Invalid Host" msgstr "Neplatný hostitel" -#: lib/wizard.php:952 +#: lib/wizard.php:951 msgid "Could not find the desired feature" msgstr "Nelze nalézt požadovanou vlastnost" diff --git a/l10n/cy_GB/core.po b/l10n/cy_GB/core.po index 8202d171ace..823b769760e 100644 --- a/l10n/cy_GB/core.po +++ b/l10n/cy_GB/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -149,15 +149,15 @@ msgstr "Tachwedd" msgid "December" msgstr "Rhagfyr" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Gosodiadau" -#: js/js.js:858 +#: js/js.js:869 msgid "seconds ago" msgstr "eiliad yn ôl" -#: js/js.js:859 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" @@ -165,7 +165,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/js.js:860 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" @@ -173,15 +173,15 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/js.js:861 +#: js/js.js:872 msgid "today" msgstr "heddiw" -#: js/js.js:862 +#: js/js.js:873 msgid "yesterday" msgstr "ddoe" -#: js/js.js:863 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" @@ -189,11 +189,11 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/js.js:864 +#: js/js.js:875 msgid "last month" msgstr "mis diwethaf" -#: js/js.js:865 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" @@ -201,15 +201,15 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/js.js:866 +#: js/js.js:877 msgid "months ago" msgstr "misoedd yn ôl" -#: js/js.js:867 +#: js/js.js:878 msgid "last year" msgstr "y llynedd" -#: js/js.js:868 +#: js/js.js:879 msgid "years ago" msgstr "blwyddyn yn ôl" diff --git a/l10n/cy_GB/files.po b/l10n/cy_GB/files.po index 5ae908e8ef1..e32823fc6da 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-11 13:31-0500\n" -"PO-Revision-Date: 2013-12-09 12:00+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "Rhannu" diff --git a/l10n/cy_GB/lib.po b/l10n/cy_GB/lib.po index f75d0d19a5e..e87c4c5b4db 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -53,15 +53,15 @@ msgstr "Gweinyddu" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "gwasanaethau gwe a reolir gennych" @@ -70,23 +70,23 @@ msgstr "gwasanaethau gwe a reolir gennych" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "Mae llwytho ZIP wedi ei ddiffodd." -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Mae angen llwytho ffeiliau i lawr fesul un." -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Nôl i Ffeiliau" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Mae'r ffeiliau ddewiswyd yn rhy fawr i gynhyrchu ffeil zip." -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "Testun" msgid "Images" msgstr "Delweddau" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s rhowch enw defnyddiwr y gronfa ddata." -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s rhowch enw'r gronfa ddata." -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s does dim hawl defnyddio dot yn enw'r gronfa ddata" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "Enw a/neu gyfrinair MySQL annilys" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "Gwall DB: \"%s\"" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "Enw a/neu gyfrinair Oracle annilys" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Y gorchymyn wnaeth beri tramgwydd oedd: \"%s\", enw: %s, cyfrinair: %s" @@ -339,7 +339,3 @@ msgstr "y llynedd" #: private/template/functions.php:142 msgid "years ago" msgstr "blwyddyn yn ôl" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/cy_GB/user_ldap.po b/l10n/cy_GB/user_ldap.po index b45c9bceba8..f32a619a70b 100644 --- a/l10n/cy_GB/user_ldap.po +++ b/l10n/cy_GB/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." @@ -86,43 +86,43 @@ msgstr "" msgid "Error" msgstr "Gwall" -#: js/settings.js:777 +#: js/settings.js:837 msgid "Configuration OK" msgstr "" -#: js/settings.js:786 +#: js/settings.js:846 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:795 +#: js/settings.js:855 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:872 js/settings.js:881 msgid "Select groups" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:875 js/settings.js:884 msgid "Select object classes" msgstr "" -#: js/settings.js:818 +#: js/settings.js:878 msgid "Select attributes" msgstr "" -#: js/settings.js:845 +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:852 +#: js/settings.js:912 msgid "Connection test failed" msgstr "" -#: js/settings.js:861 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:862 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "" @@ -144,11 +144,11 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:778 lib/wizard.php:790 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:952 +#: lib/wizard.php:951 msgid "Could not find the desired feature" msgstr "" diff --git a/l10n/da/core.po b/l10n/da/core.po index 24b8978988a..95c55f74fe2 100644 --- a/l10n/da/core.po +++ b/l10n/da/core.po @@ -6,15 +6,16 @@ # Sappe, 2013 # claus_chr <claus_chr@webspeed.dk>, 2013 # kaffeldt <kasper.affeldt@gmail.com>, 2013 +# lodahl <leiflodahl@gmail.com>, 2013 # Ole Holm Frandsen <froksen@gmail.com>, 2013 # Peter Jespersen <flywheeldk@gmail.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-12-21 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 21:40+0000\n" +"Last-Translator: lodahl <leiflodahl@gmail.com>\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" @@ -153,59 +154,59 @@ msgstr "November" msgid "December" msgstr "December" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Indstillinger" -#: js/js.js:858 +#: js/js.js:869 msgid "seconds ago" msgstr "sekunder siden" -#: js/js.js:859 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minut siden" msgstr[1] "%n minutter siden" -#: js/js.js:860 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n time siden" msgstr[1] "%n timer siden" -#: js/js.js:861 +#: js/js.js:872 msgid "today" msgstr "i dag" -#: js/js.js:862 +#: js/js.js:873 msgid "yesterday" msgstr "i går" -#: js/js.js:863 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n dag siden" msgstr[1] "%n dage siden" -#: js/js.js:864 +#: js/js.js:875 msgid "last month" msgstr "sidste måned" -#: js/js.js:865 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n måned siden" msgstr[1] "%n måneder siden" -#: js/js.js:866 +#: js/js.js:877 msgid "months ago" msgstr "måneder siden" -#: js/js.js:867 +#: js/js.js:878 msgid "last year" msgstr "sidste år" -#: js/js.js:868 +#: js/js.js:879 msgid "years ago" msgstr "år siden" @@ -448,7 +449,7 @@ msgstr "Ingen tags markeret til sletning." #: js/update.js:8 msgid "Please reload the page." -msgstr "" +msgstr "Genindlæs venligst siden" #: js/update.js:17 msgid "" @@ -591,7 +592,7 @@ msgstr "Hej med dig\n\nDette blot for at lade dig vide, at %s har delt %s med di #: templates/altmail.php:4 templates/mail.php:17 #, php-format msgid "The share will expire on %s." -msgstr "" +msgstr "Delingen vil udløbe om %s." #: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" @@ -691,7 +692,7 @@ msgid "" "This application requires JavaScript to be enabled for correct operation. " "Please <a href=\"http://enable-javascript.com/\" target=\"_blank\">enable " "JavaScript</a> and re-load this interface." -msgstr "" +msgstr "Programmet forudsætter at JavaScript er aktiveret for at kunne afvikles korrekt. <a href=\"http://enable-javascript.com/\" target=\"_blank\">Aktiver JavaScript</a> og genindlæs siden.." #: templates/layout.user.php:44 #, php-format @@ -749,11 +750,11 @@ msgstr "Hej med dig,<br><br>Dette blot for at lade dig vide, at %s har delt \"%s #: templates/singleuser.user.php:3 msgid "This ownCloud instance is currently in single user mode." -msgstr "" +msgstr "Denne ownCloud instans er lige nu i enkeltbruger tilstand." #: templates/singleuser.user.php:4 msgid "This means only administrators can use the instance." -msgstr "" +msgstr "Det betyder at det kun er administrator, som kan benytte ownCloud." #: templates/singleuser.user.php:5 templates/update.user.php:5 msgid "" diff --git a/l10n/da/files.po b/l10n/da/files.po index 47d179af3cb..53216837a8c 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.po @@ -5,14 +5,15 @@ # Translators: # Sappe, 2013 # claus_chr <claus_chr@webspeed.dk>, 2013 +# lodahl <leiflodahl@gmail.com>, 2013 # Ole Holm Frandsen <froksen@gmail.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-11 13:31-0500\n" -"PO-Revision-Date: 2013-12-09 12:00+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-12-22 01:55-0500\n" +"PO-Revision-Date: 2013-12-21 18:50+0000\n" +"Last-Translator: lodahl <leiflodahl@gmail.com>\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" @@ -36,39 +37,44 @@ msgstr "Filnavnet kan ikke stå tomt." #: ajax/newfile.php:62 msgid "File name must not contain \"/\". Please choose a different name." -msgstr "" +msgstr "Filnavnet må ikke indeholde \"/\". Vælg venligst et andet navn." #: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." -msgstr "" +msgstr "Navnet %s er allerede i brug i mappen %s. Vælg venligst et andet navn." #: ajax/newfile.php:81 msgid "Not a valid source" -msgstr "" +msgstr "Ikke en gyldig kilde" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "Server har ikke tilladelse til at åbne URL'er. Kontroller venligst serverens indstillinger" + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" -msgstr "" +msgstr "Fejl ved hentning af %s til %s" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" -msgstr "" +msgstr "Fejl ved oprettelse af fil" #: ajax/newfolder.php:21 msgid "Folder name cannot be empty." -msgstr "" +msgstr "Mappenavnet kan ikke være tomt." #: ajax/newfolder.php:27 msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "" +msgstr "Mappenavnet må ikke indeholde \"/\". Vælg venligst et andet navn." #: ajax/newfolder.php:56 msgid "Error when creating the folder" -msgstr "" +msgstr "Fejl ved oprettelse af mappen" #: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." @@ -156,11 +162,11 @@ msgstr "Fil upload kører. Hvis du forlader siden nu, vil uploadet blive annuler #: js/file-upload.js:523 msgid "URL cannot be empty" -msgstr "" +msgstr "URL kan ikke være tom" #: js/file-upload.js:527 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" +msgstr "Navnet 'Shared' er reserveret i hjemmemappen." #: js/file-upload.js:529 js/filelist.js:379 msgid "{new_name} already exists" @@ -168,11 +174,15 @@ msgstr "{new_name} eksisterer allerede" #: js/file-upload.js:595 msgid "Could not create file" -msgstr "" +msgstr "Kunne ikke oprette fil" #: js/file-upload.js:611 msgid "Could not create folder" -msgstr "" +msgstr "Kunne ikke oprette mappe" + +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "Fejl ved URL" #: js/fileactions.js:125 msgid "Share" @@ -192,7 +202,7 @@ msgstr "Afventer" #: js/filelist.js:405 msgid "Could not rename file" -msgstr "" +msgstr "Kunne ikke omdøbe filen" #: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" @@ -204,7 +214,7 @@ msgstr "fortryd" #: js/filelist.js:591 msgid "Error deleting file." -msgstr "" +msgstr "Fejl ved sletnign af fil." #: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" @@ -250,14 +260,14 @@ msgstr "Din opbevaringsplads er næsten fyldt op ({usedSpacePercent}%)" msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" -msgstr "" +msgstr "Krypteringsprogrammet er aktiveret, men din nøgle er ikke igangsat. Log venligst ud og ind igen." #: js/files.js:114 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." -msgstr "" +msgstr "Ugyldig privat nøgle for krypteringsprogrammet. Opdater venligst dit kodeord for den private nøgle i dine personlige indstillinger. Det kræves for at få adgang til dine krypterede filer." #: js/files.js:118 msgid "" @@ -293,7 +303,7 @@ msgstr "Ændret" #: lib/app.php:60 msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" +msgstr "Ugyldig mappenavn. 'Shared' er reserveret." #: lib/app.php:101 #, php-format @@ -342,7 +352,7 @@ msgstr "Ny" #: templates/index.php:8 msgid "New text file" -msgstr "" +msgstr "Ny tekstfil" #: templates/index.php:8 msgid "Text file" @@ -370,7 +380,7 @@ msgstr "Fortryd upload" #: templates/index.php:40 msgid "You don’t have permission to upload or create files here" -msgstr "" +msgstr "Du har ikke tilladelse til at uploade eller oprette filer her" #: templates/index.php:45 msgid "Nothing in here. Upload something!" diff --git a/l10n/da/files_encryption.po b/l10n/da/files_encryption.po index a285b06ce82..90861c46ca3 100644 --- a/l10n/da/files_encryption.po +++ b/l10n/da/files_encryption.po @@ -5,13 +5,14 @@ # Translators: # Sappe, 2013 # claus_chr <claus_chr@webspeed.dk>, 2013 +# lodahl <leiflodahl@gmail.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-29 19:09+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-12-22 01:55-0500\n" +"PO-Revision-Date: 2013-12-21 18:40+0000\n" +"Last-Translator: lodahl <leiflodahl@gmail.com>\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" @@ -60,7 +61,7 @@ msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." -msgstr "" +msgstr "Krypteringsprogrammet er ikke igangsat. Det kan skyldes at krypteringsprogrammet er blevet genaktiveret under din session. Prøv at logge ud og ind igen for at aktivere krypteringsprogrammet. " #: files/error.php:16 #, php-format @@ -68,38 +69,38 @@ msgid "" "Your private key is not valid! Likely your password was changed outside of " "%s (e.g. your corporate directory). You can update your private key password" " in your personal settings to recover access to your encrypted files." -msgstr "" +msgstr "Din private nøgle er ikke gyldig. Sandsynligvis er dit kodeord blevet ændret uden for %s (f.eks dit firmas adressebog). Du kan opdatere din private nøglekode i dine personlige indstillinger for at genskabe adgang til dine krypterede filer." #: files/error.php:19 msgid "" "Can not decrypt this file, probably this is a shared file. Please ask the " "file owner to reshare the file with you." -msgstr "" +msgstr "Kan ikke kryptere denne fil, sandsynligvis fordi felen er delt. Bed venligst filens ejer om at dele den med dig på ny." #: files/error.php:22 files/error.php:27 msgid "" "Unknown error please check your system settings or contact your " "administrator" -msgstr "" +msgstr "Ukendt fejl. Kontroller venligst dit system eller kontakt din administrator" -#: hooks/hooks.php:59 +#: hooks/hooks.php:62 msgid "Missing requirements." msgstr "Manglende betingelser." -#: hooks/hooks.php:60 +#: hooks/hooks.php:63 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "Sørg for at PHP 5.3.3 eller nyere er installeret og at OpenSSL sammen med PHP-udvidelsen er aktiveret og korrekt konfigureret. Indtil videre er krypteringsprogrammet deaktiveret." -#: hooks/hooks.php:273 +#: hooks/hooks.php:281 msgid "Following users are not set up for encryption:" msgstr "Følgende brugere er ikke sat op til kryptering:" #: js/detect-migration.js:21 msgid "Initial encryption started... This can take some time. Please wait." -msgstr "" +msgstr "Førstegangskryptering er påbegyndt... Dette kan tage nogen tid. Vent venligst." #: js/settings-admin.js:13 msgid "Saving..." @@ -107,7 +108,7 @@ msgstr "Gemmer..." #: templates/invalid_private_key.php:8 msgid "Go directly to your " -msgstr "" +msgstr "Gå direkte til din " #: templates/invalid_private_key.php:8 msgid "personal settings" @@ -128,7 +129,7 @@ msgstr "Gendannelsesnøgle kodeord" #: templates/settings-admin.php:14 msgid "Repeat Recovery key password" -msgstr "" +msgstr "Gentag gendannelse af nøglekoden" #: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" @@ -152,7 +153,7 @@ msgstr "Ny Gendannelsesnøgle kodeord" #: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" -msgstr "" +msgstr "Gentag dannelse af ny gendannaleses nøglekode" #: templates/settings-admin.php:58 msgid "Change Password" diff --git a/l10n/da/files_sharing.po b/l10n/da/files_sharing.po index 3509eda2d52..54b706c403e 100644 --- a/l10n/da/files_sharing.po +++ b/l10n/da/files_sharing.po @@ -4,13 +4,14 @@ # # Translators: # Sappe, 2013 +# lodahl <leiflodahl@gmail.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-12-22 01:55-0500\n" +"PO-Revision-Date: 2013-12-21 16:20+0000\n" +"Last-Translator: lodahl <leiflodahl@gmail.com>\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" @@ -20,7 +21,7 @@ msgstr "" #: templates/authenticate.php:4 msgid "This share is password-protected" -msgstr "" +msgstr "Delingen er beskyttet af kodeord" #: templates/authenticate.php:7 msgid "The password is wrong. Try again." @@ -82,4 +83,4 @@ msgstr "Forhåndsvisning ikke tilgængelig for" #: templates/public.php:99 msgid "Direct link" -msgstr "" +msgstr "Direkte link" diff --git a/l10n/da/lib.po b/l10n/da/lib.po index 1ed73ea3ca7..94320b42d86 100644 --- a/l10n/da/lib.po +++ b/l10n/da/lib.po @@ -5,14 +5,15 @@ # Translators: # Sappe, 2013 # claus_chr <claus_chr@webspeed.dk>, 2013 +# lodahl <leiflodahl@gmail.com>, 2013 # Ole Holm Frandsen <froksen@gmail.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-12-22 01:55-0500\n" +"PO-Revision-Date: 2013-12-21 16:01+0000\n" +"Last-Translator: lodahl <leiflodahl@gmail.com>\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" @@ -56,15 +57,15 @@ msgstr "Admin" msgid "Failed to upgrade \"%s\"." msgstr "Upgradering af \"%s\" fejlede" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "Ukendt filtype" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "Ugyldigt billede" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "Webtjenester under din kontrol" @@ -73,27 +74,27 @@ msgstr "Webtjenester under din kontrol" msgid "cannot open \"%s\"" msgstr "Kan ikke åbne \"%s\"" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "ZIP-download er slået fra." -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Filer skal downloades en for en." -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Tilbage til Filer" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "De markerede filer er for store til at generere en ZIP-fil." -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." -msgstr "" +msgstr "Hent venligst filerne hver for sig i mindre dele eller spørg din administrator." #: private/installer.php:63 msgid "No source specified when installing app" @@ -175,17 +176,17 @@ msgstr "SMS" msgid "Images" msgstr "Billeder" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s indtast database brugernavnet." -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s indtast database navnet." -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s du må ikke bruge punktummer i databasenavnet." @@ -206,11 +207,11 @@ msgid "MySQL username and/or password not valid" msgstr "MySQL brugernavn og/eller kodeord er ikke gyldigt." #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -218,10 +219,10 @@ msgid "DB Error: \"%s\"" msgstr "Databasefejl: \"%s\"" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -254,7 +255,7 @@ msgstr "Oracle forbindelsen kunne ikke etableres" msgid "Oracle username and/or password not valid" msgstr "Oracle brugernavn og/eller kodeord er ikke gyldigt." -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Fejlende kommando var: \"%s\", navn: %s, password: %s" @@ -334,7 +335,3 @@ msgstr "sidste år" #: private/template/functions.php:142 msgid "years ago" msgstr "år siden" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "Forårsaget af:" diff --git a/l10n/da/settings.po b/l10n/da/settings.po index c51980025cc..9b91fc8745a 100644 --- a/l10n/da/settings.po +++ b/l10n/da/settings.po @@ -4,15 +4,16 @@ # # Translators: # Sappe, 2013 +# lodahl <leiflodahl@gmail.com>, 2013 # Morten Juhl-Johansen Zölde-Fejér <morten@writtenandread.net>, 2013 # Ole Holm Frandsen <froksen@gmail.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-04 23:13+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-12-22 01:55-0500\n" +"PO-Revision-Date: 2013-12-21 16:40+0000\n" +"Last-Translator: lodahl <leiflodahl@gmail.com>\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" @@ -31,11 +32,11 @@ msgstr "Adgangsfejl" #: ajax/changedisplayname.php:31 msgid "Your full name has been changed." -msgstr "" +msgstr "Dit fulde navn er blevet ændret." #: ajax/changedisplayname.php:34 msgid "Unable to change full name" -msgstr "" +msgstr "Ikke i stand til at ændre dit fulde navn" #: ajax/creategroup.php:10 msgid "Group already exists" @@ -201,21 +202,21 @@ msgstr "Slet" msgid "add group" msgstr "Tilføj gruppe" -#: js/users.js:451 +#: js/users.js:454 msgid "A valid username must be provided" msgstr "Et gyldigt brugernavn skal angives" -#: js/users.js:452 js/users.js:458 js/users.js:473 +#: js/users.js:455 js/users.js:461 js/users.js:476 msgid "Error creating user" msgstr "Fejl ved oprettelse af bruger" -#: js/users.js:457 +#: js/users.js:460 msgid "A valid password must be provided" msgstr "En gyldig adgangskode skal angives" -#: js/users.js:481 +#: js/users.js:484 msgid "Warning: Home directory for user \"{user}\" already exists" -msgstr "" +msgstr "Advarsel: Hjemmemappen for bruger \"{user}\" findes allerede" #: personal.php:45 personal.php:46 msgid "__language_name__" @@ -223,23 +224,23 @@ msgstr "Dansk" #: templates/admin.php:8 msgid "Everything (fatal issues, errors, warnings, info, debug)" -msgstr "" +msgstr "Alt (alvorlige fejl, fejl, advarsler, info, debug)" #: templates/admin.php:9 msgid "Info, warnings, errors and fatal issues" -msgstr "" +msgstr "Info, advarsler, fejl og alvorlige fejl" #: templates/admin.php:10 msgid "Warnings, errors and fatal issues" -msgstr "" +msgstr "Advarsler, fejl og alvorlige fejl" #: templates/admin.php:11 msgid "Errors and fatal issues" -msgstr "" +msgstr "Fejl og alvorlige fejl" #: templates/admin.php:12 msgid "Fatal issues only" -msgstr "" +msgstr "Kun alvorlige fejl" #: templates/admin.php:22 templates/admin.php:36 msgid "Security Warning" @@ -250,7 +251,7 @@ msgstr "Sikkerhedsadvarsel" msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." -msgstr "" +msgstr "Du tilgår %s via HTTP. Vi anbefaler at du konfigurerer din server til i stedet at kræve HTTPS." #: templates/admin.php:39 msgid "" @@ -288,14 +289,14 @@ msgstr "PHP modulet 'fileinfo' mangler. Vi anbefaler stærkt at aktivere dette m #: templates/admin.php:79 msgid "Your PHP version is outdated" -msgstr "" +msgstr "Din PHP-version er forældet" #: templates/admin.php:82 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." -msgstr "" +msgstr "Din PHP-version er forældet. Vi anbefaler at du opgraderer til 5.3.8 eller nyere, fordi ældre versioner har kendte fejl. Det er derfor muligt at installationen ikke fungerer korrekt." #: templates/admin.php:93 msgid "Locale not working" @@ -303,20 +304,20 @@ msgstr "Landestandard fungerer ikke" #: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." -msgstr "" +msgstr "Systemets locale kan ikke sættes til et der bruger UTF-8." #: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." -msgstr "" +msgstr "Det betyder at der kan være problemer med visse tegn i filnavne." #: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." -msgstr "" +msgstr "Vi anbefaler at du installerer den krævede pakke på dit system, for at understøtte følgende locales: %s." #: templates/admin.php:118 msgid "Internet connection not working" @@ -343,11 +344,11 @@ msgstr "Udføre en opgave med hver side indlæst" msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." -msgstr "" +msgstr "cron.php er registreret til at en webcron service skal kalde cron.php hvert 15 minut over http." #: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." -msgstr "" +msgstr "Brug systemets cron service til at kalde cron.php hvert 15. minut." #: templates/admin.php:163 msgid "Sharing" @@ -535,7 +536,7 @@ msgstr "Skift kodeord" #: templates/personal.php:58 templates/users.php:88 msgid "Full Name" -msgstr "" +msgstr "Fulde navn" #: templates/personal.php:73 msgid "Email" @@ -571,7 +572,7 @@ msgstr "Enten png eller jpg. Ideelt firkantet men du har mulighed for at beskær #: templates/personal.php:97 msgid "Your avatar is provided by your original account." -msgstr "" +msgstr "Din avatar kommer fra din oprindelige konto." #: templates/personal.php:101 msgid "Abort" @@ -598,7 +599,7 @@ msgstr "WebDAV" msgid "" "Use this address to <a href=\"%s\" target=\"_blank\">access your Files via " "WebDAV</a>" -msgstr "" +msgstr "Brug denne adresse for at <a href=\"%s\" target=\"_blank\">tilgå dine filer via WebDAV</a>" #: templates/personal.php:150 msgid "Encryption" @@ -606,7 +607,7 @@ msgstr "Kryptering" #: templates/personal.php:152 msgid "The encryption app is no longer enabled, please decrypt all your files" -msgstr "" +msgstr "Krypteringsprogrammet er ikke længere aktiveret. Dekrypter venligst alle dine filer" #: templates/personal.php:158 msgid "Log-in password" @@ -640,7 +641,7 @@ msgstr "Standard opbevaring" #: templates/users.php:44 templates/users.php:139 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" -msgstr "" +msgstr "Indtast venligst lagerkvote (f.eks. \"512 MB\" eller \"12 GB\")" #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" @@ -660,7 +661,7 @@ msgstr "Opbevaring" #: templates/users.php:108 msgid "change full name" -msgstr "" +msgstr "ændre fulde navn" #: templates/users.php:112 msgid "set new password" diff --git a/l10n/da/user_ldap.po b/l10n/da/user_ldap.po index 4f19cdfc752..1012e98413f 100644 --- a/l10n/da/user_ldap.po +++ b/l10n/da/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -26,17 +26,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "Kunne ikke slette server konfigurationen" -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "Konfigurationen er korrekt og forbindelsen kunne etableres!" -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." @@ -87,43 +87,43 @@ msgstr "Succes" msgid "Error" msgstr "Fejl" -#: js/settings.js:777 +#: js/settings.js:837 msgid "Configuration OK" msgstr "" -#: js/settings.js:786 +#: js/settings.js:846 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:795 +#: js/settings.js:855 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:872 js/settings.js:881 msgid "Select groups" msgstr "Vælg grupper" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:875 js/settings.js:884 msgid "Select object classes" msgstr "" -#: js/settings.js:818 +#: js/settings.js:878 msgid "Select attributes" msgstr "" -#: js/settings.js:845 +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "Forbindelsestest lykkedes" -#: js/settings.js:852 +#: js/settings.js:912 msgid "Connection test failed" msgstr "Forbindelsestest mislykkedes" -#: js/settings.js:861 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "Ønsker du virkelig at slette den nuværende Server Konfiguration?" -#: js/settings.js:862 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "Bekræft Sletning" @@ -141,11 +141,11 @@ msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:778 lib/wizard.php:790 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:952 +#: lib/wizard.php:951 msgid "Could not find the desired feature" msgstr "" diff --git a/l10n/de/core.po b/l10n/de/core.po index 29dffaf01dd..c3ee3e52b21 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-09 06:39-0500\n" -"PO-Revision-Date: 2013-12-08 20:42+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:22+0000\n" "Last-Translator: Mario Siegmann <mario_siegmann@web.de>\n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" @@ -157,59 +157,59 @@ msgstr "November" msgid "December" msgstr "Dezember" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Einstellungen" -#: js/js.js:858 +#: js/js.js:869 msgid "seconds ago" msgstr "Gerade eben" -#: js/js.js:859 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "Vor %n Minute" msgstr[1] "Vor %n Minuten" -#: js/js.js:860 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Vor %n Stunde" msgstr[1] "Vor %n Stunden" -#: js/js.js:861 +#: js/js.js:872 msgid "today" msgstr "Heute" -#: js/js.js:862 +#: js/js.js:873 msgid "yesterday" msgstr "Gestern" -#: js/js.js:863 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "Vor %n Tag" msgstr[1] "Vor %n Tagen" -#: js/js.js:864 +#: js/js.js:875 msgid "last month" msgstr "Letzten Monat" -#: js/js.js:865 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Vor %n Monat" msgstr[1] "Vor %n Monaten" -#: js/js.js:866 +#: js/js.js:877 msgid "months ago" msgstr "Vor Monaten" -#: js/js.js:867 +#: js/js.js:878 msgid "last year" msgstr "Letztes Jahr" -#: js/js.js:868 +#: js/js.js:879 msgid "years ago" msgstr "Vor Jahren" diff --git a/l10n/de/files.po b/l10n/de/files.po index 0eb3ff2ea57..628bdcb0c94 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-11 13:31-0500\n" -"PO-Revision-Date: 2013-12-09 12:00+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" +"Last-Translator: Mario Siegmann <mario_siegmann@web.de>\n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -52,12 +52,17 @@ msgstr "Der Name %s wird bereits im Ordner %s benutzt. Bitte wähle einen ander msgid "Not a valid source" msgstr "Keine gültige Quelle" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "Dem Server ist das Öffnen von URLs nicht erlaubt, bitte die Serverkonfiguration prüfen" + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" msgstr "Fehler beim Herunterladen von %s nach %s" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "Fehler beim Erstellen der Datei" @@ -177,6 +182,10 @@ msgstr "Die Datei konnte nicht erstellt werden" msgid "Could not create folder" msgstr "Der Ordner konnte nicht erstellt werden" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "Fehler beim Abrufen der URL" + #: js/fileactions.js:125 msgid "Share" msgstr "Teilen" diff --git a/l10n/de/lib.po b/l10n/de/lib.po index d43aa96eb38..3a4258bd224 100644 --- a/l10n/de/lib.po +++ b/l10n/de/lib.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-06 11:00+0000\n" -"Last-Translator: Mirodin <blobbyjj@ymail.com>\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -335,7 +335,3 @@ msgstr "Letztes Jahr" #: private/template/functions.php:142 msgid "years ago" msgstr "Vor Jahren" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "Verursacht durch:" diff --git a/l10n/de/user_ldap.po b/l10n/de/user_ldap.po index fe5916be96d..c060c235627 100644 --- a/l10n/de/user_ldap.po +++ b/l10n/de/user_ldap.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" @@ -29,17 +29,17 @@ msgstr "Löschen der Zuordnung fehlgeschlagen." msgid "Failed to delete the server configuration" msgstr "Löschen der Serverkonfiguration fehlgeschlagen" -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "Die Konfiguration ist gültig und die Verbindung konnte hergestellt werden!" -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "Die Konfiguration ist gültig aber die Verbindung ist fehlgeschlagen. Bitte überprüfe die Servereinstellungen und Anmeldeinformationen." -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." @@ -90,43 +90,43 @@ msgstr "Erfolgreich" msgid "Error" msgstr "Fehler" -#: js/settings.js:777 +#: js/settings.js:837 msgid "Configuration OK" msgstr "Konfiguration OK" -#: js/settings.js:786 +#: js/settings.js:846 msgid "Configuration incorrect" msgstr "Konfiguration nicht korrekt" -#: js/settings.js:795 +#: js/settings.js:855 msgid "Configuration incomplete" msgstr "Konfiguration nicht vollständig" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:872 js/settings.js:881 msgid "Select groups" msgstr "Wähle Gruppen aus" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:875 js/settings.js:884 msgid "Select object classes" msgstr "Objekt-Klassen auswählen" -#: js/settings.js:818 +#: js/settings.js:878 msgid "Select attributes" msgstr "Attribute auswählen" -#: js/settings.js:845 +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "Verbindungstest erfolgreich" -#: js/settings.js:852 +#: js/settings.js:912 msgid "Connection test failed" msgstr "Verbindungstest fehlgeschlagen" -#: js/settings.js:861 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "Möchtest Du die aktuelle Serverkonfiguration wirklich löschen?" -#: js/settings.js:862 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "Löschung bestätigen" @@ -144,11 +144,11 @@ msgid_plural "%s users found" msgstr[0] "%s Benutzer gefunden" msgstr[1] "%s Benutzer gefunden" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:778 lib/wizard.php:790 msgid "Invalid Host" msgstr "Ungültiger Host" -#: lib/wizard.php:952 +#: lib/wizard.php:951 msgid "Could not find the desired feature" msgstr "Konnte die gewünschte Funktion nicht finden" diff --git a/l10n/de_AT/files.po b/l10n/de_AT/files.po index 0d262aa4e57..bb1821599ca 100644 --- a/l10n/de_AT/files.po +++ b/l10n/de_AT/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" +"POT-Creation-Date: 2013-12-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06:55+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n" "MIME-Version: 1.0\n" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "" diff --git a/l10n/de_AT/lib.po b/l10n/de_AT/lib.po index 1fcf0fb278a..49d351f3f82 100644 --- a/l10n/de_AT/lib.po +++ b/l10n/de_AT/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n" "MIME-Version: 1.0\n" @@ -53,15 +53,15 @@ msgstr "" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "" @@ -70,23 +70,23 @@ msgstr "" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "" msgid "Images" msgstr "" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -331,7 +331,3 @@ msgstr "" #: private/template/functions.php:142 msgid "years ago" msgstr "" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/de_CH/core.po b/l10n/de_CH/core.po index 6dd965fcfeb..deb192be2d4 100644 --- a/l10n/de_CH/core.po +++ b/l10n/de_CH/core.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" @@ -158,59 +158,59 @@ msgstr "November" msgid "December" msgstr "Dezember" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Einstellungen" -#: js/js.js:858 +#: js/js.js:869 msgid "seconds ago" msgstr "Gerade eben" -#: js/js.js:859 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "Vor %n Minute" msgstr[1] "Vor %n Minuten" -#: js/js.js:860 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Vor %n Stunde" msgstr[1] "Vor %n Stunden" -#: js/js.js:861 +#: js/js.js:872 msgid "today" msgstr "Heute" -#: js/js.js:862 +#: js/js.js:873 msgid "yesterday" msgstr "Gestern" -#: js/js.js:863 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "Vor %n Tag" msgstr[1] "Vor %n Tagen" -#: js/js.js:864 +#: js/js.js:875 msgid "last month" msgstr "Letzten Monat" -#: js/js.js:865 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Vor %n Monat" msgstr[1] "Vor %n Monaten" -#: js/js.js:866 +#: js/js.js:877 msgid "months ago" msgstr "Vor Monaten" -#: js/js.js:867 +#: js/js.js:878 msgid "last year" msgstr "Letztes Jahr" -#: js/js.js:868 +#: js/js.js:879 msgid "years ago" msgstr "Vor Jahren" diff --git a/l10n/de_CH/files.po b/l10n/de_CH/files.po index 514b5a7096f..3d90c347be1 100644 --- a/l10n/de_CH/files.po +++ b/l10n/de_CH/files.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-11 13:31-0500\n" -"PO-Revision-Date: 2013-12-09 12:00+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" @@ -55,12 +55,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -180,6 +185,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "Teilen" diff --git a/l10n/de_CH/lib.po b/l10n/de_CH/lib.po index ef31022f851..60b3f52c359 100644 --- a/l10n/de_CH/lib.po +++ b/l10n/de_CH/lib.po @@ -6,13 +6,13 @@ # FlorianScholz <work@bgstyle.de>, 2013 # FlorianScholz <work@bgstyle.de>, 2013 # Mario Siegmann <mario_siegmann@web.de>, 2013 -# traductor <transifex-2.7.mensaje@spamgourmet.com>, 2013 +# traductor <transifex-3.7.mensaje@spamgourmet.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" @@ -57,15 +57,15 @@ msgstr "Administrator" msgid "Failed to upgrade \"%s\"." msgstr "Konnte \"%s\" nicht aktualisieren." -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "Web-Services unter Ihrer Kontrolle" @@ -74,23 +74,23 @@ msgstr "Web-Services unter Ihrer Kontrolle" msgid "cannot open \"%s\"" msgstr "Öffnen von \"%s\" fehlgeschlagen" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "Der ZIP-Download ist deaktiviert." -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Die Dateien müssen einzeln heruntergeladen werden." -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Zurück zu \"Dateien\"" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Die gewählten Dateien sind zu gross, um eine ZIP-Datei zu erstellen." -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -176,17 +176,17 @@ msgstr "Text" msgid "Images" msgstr "Bilder" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s geben Sie den Datenbank-Benutzernamen an." -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s geben Sie den Datenbank-Namen an." -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s Der Datenbank-Name darf keine Punkte enthalten" @@ -207,11 +207,11 @@ msgid "MySQL username and/or password not valid" msgstr "MySQL Benutzername und/oder Passwort ungültig" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -219,10 +219,10 @@ msgid "DB Error: \"%s\"" msgstr "DB Fehler: \"%s\"" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -255,7 +255,7 @@ msgstr "Die Oracle-Verbindung konnte nicht aufgebaut werden." msgid "Oracle username and/or password not valid" msgstr "Oracle Benutzername und/oder Passwort ungültig" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Fehlerhafter Befehl war: \"%s\", Name: %s, Passwort: %s" @@ -335,7 +335,3 @@ msgstr "Letztes Jahr" #: private/template/functions.php:142 msgid "years ago" msgstr "Vor Jahren" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "Verursacht durch:" diff --git a/l10n/de_CH/user_ldap.po b/l10n/de_CH/user_ldap.po index 6e519bd5670..e5935ea7894 100644 --- a/l10n/de_CH/user_ldap.po +++ b/l10n/de_CH/user_ldap.po @@ -10,13 +10,13 @@ # Marcel Kühlhorn <susefan93@gmx.de>, 2013 # Mario Siegmann <mario_siegmann@web.de>, 2013 # multimill <multimill@gmail.com>, 2012 -# traductor <transifex-2.7.mensaje@spamgourmet.com>, 2012-2013 +# traductor <transifex-3.7.mensaje@spamgourmet.com>, 2012-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" @@ -33,17 +33,17 @@ msgstr "Löschen der Zuordnung fehlgeschlagen." msgid "Failed to delete the server configuration" msgstr "Löschen der Serverkonfiguration fehlgeschlagen" -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "Die Konfiguration ist gültig und die Verbindung konnte hergestellt werden!" -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "Die Konfiguration ist gültig aber die Verbindung ist fehlgeschlagen. Bitte überprüfen Sie die Servereinstellungen und die Anmeldeinformationen." -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." @@ -94,43 +94,43 @@ msgstr "Erfolg" msgid "Error" msgstr "Fehler" -#: js/settings.js:777 +#: js/settings.js:837 msgid "Configuration OK" msgstr "" -#: js/settings.js:786 +#: js/settings.js:846 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:795 +#: js/settings.js:855 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:872 js/settings.js:881 msgid "Select groups" msgstr "Wähle Gruppen" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:875 js/settings.js:884 msgid "Select object classes" msgstr "" -#: js/settings.js:818 +#: js/settings.js:878 msgid "Select attributes" msgstr "" -#: js/settings.js:845 +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "Verbindungstest erfolgreich" -#: js/settings.js:852 +#: js/settings.js:912 msgid "Connection test failed" msgstr "Verbindungstest fehlgeschlagen" -#: js/settings.js:861 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "Möchten Sie die aktuelle Serverkonfiguration wirklich löschen?" -#: js/settings.js:862 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "Löschung bestätigen" @@ -148,11 +148,11 @@ msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:778 lib/wizard.php:790 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:952 +#: lib/wizard.php:951 msgid "Could not find the desired feature" msgstr "" diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po index e7bfc4dff90..d5844a27add 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_DE/core.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-13 14:43-0500\n" -"PO-Revision-Date: 2013-12-12 21:10+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" @@ -156,59 +156,59 @@ msgstr "November" msgid "December" msgstr "Dezember" -#: js/js.js:394 +#: js/js.js:398 msgid "Settings" msgstr "Einstellungen" -#: js/js.js:865 +#: js/js.js:869 msgid "seconds ago" msgstr "Gerade eben" -#: js/js.js:866 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "Vor %n Minute" msgstr[1] "Vor %n Minuten" -#: js/js.js:867 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Vor %n Stunde" msgstr[1] "Vor %n Stunden" -#: js/js.js:868 +#: js/js.js:872 msgid "today" msgstr "Heute" -#: js/js.js:869 +#: js/js.js:873 msgid "yesterday" msgstr "Gestern" -#: js/js.js:870 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "Vor %n Tag" msgstr[1] "Vor %n Tagen" -#: js/js.js:871 +#: js/js.js:875 msgid "last month" msgstr "Letzten Monat" -#: js/js.js:872 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Vor %n Monat" msgstr[1] "Vor %n Monaten" -#: js/js.js:873 +#: js/js.js:877 msgid "months ago" msgstr "Vor Monaten" -#: js/js.js:874 +#: js/js.js:878 msgid "last year" msgstr "Letztes Jahr" -#: js/js.js:875 +#: js/js.js:879 msgid "years ago" msgstr "Vor Jahren" diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index 766b8216d27..4dfeb00de56 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/files.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-11 13:31-0500\n" -"PO-Revision-Date: 2013-12-09 12:00+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" +"Last-Translator: Mario Siegmann <mario_siegmann@web.de>\n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -55,12 +55,17 @@ msgstr "Der Name %s wird bereits im Ordner %s benutzt. Bitte wählen Sie einen a msgid "Not a valid source" msgstr "Keine gültige Quelle" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "Dem Server ist das Öffnen von URLs nicht erlaubt, bitte die Serverkonfiguration prüfen" + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" msgstr "Fehler beim Herunterladen von %s nach %s" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "Fehler beim Erstellen der Datei" @@ -180,6 +185,10 @@ msgstr "Die Datei konnte nicht erstellt werden" msgid "Could not create folder" msgstr "Der Ordner konnte nicht erstellt werden" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "Fehler beim Abrufen der URL" + #: js/fileactions.js:125 msgid "Share" msgstr "Teilen" diff --git a/l10n/de_DE/lib.po b/l10n/de_DE/lib.po index d80fe487df9..25b901469e0 100644 --- a/l10n/de_DE/lib.po +++ b/l10n/de_DE/lib.po @@ -4,15 +4,15 @@ # # Translators: # Mario Siegmann <mario_siegmann@web.de>, 2013 -# traductor <transifex-2.7.mensaje@spamgourmet.com>, 2013 +# traductor <transifex-3.7.mensaje@spamgourmet.com>, 2013 # noxin <transifex.com@davidmainzer.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-24 00:13-0500\n" -"PO-Revision-Date: 2013-11-22 08:30+0000\n" -"Last-Translator: Mario Siegmann <mario_siegmann@web.de>\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -56,15 +56,15 @@ msgstr "Administrator" msgid "Failed to upgrade \"%s\"." msgstr "Konnte \"%s\" nicht aktualisieren." -#: private/avatar.php:62 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "Unbekannter Dateityp" -#: private/avatar.php:67 +#: private/avatar.php:71 msgid "Invalid image" msgstr "Ungültiges Bild" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "Web-Services unter Ihrer Kontrolle" @@ -73,23 +73,23 @@ msgstr "Web-Services unter Ihrer Kontrolle" msgid "cannot open \"%s\"" msgstr "Öffnen von \"%s\" fehlgeschlagen" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "Der ZIP-Download ist deaktiviert." -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Die Dateien müssen einzeln heruntergeladen werden." -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Zurück zu \"Dateien\"" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Die gewählten Dateien sind zu groß, um eine ZIP-Datei zu erstellen." -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -175,17 +175,17 @@ msgstr "Text" msgid "Images" msgstr "Bilder" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s geben Sie den Datenbank-Benutzernamen an." -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s geben Sie den Datenbank-Namen an." -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s Der Datenbank-Name darf keine Punkte enthalten" @@ -206,11 +206,11 @@ msgid "MySQL username and/or password not valid" msgstr "MySQL Benutzername und/oder Passwort ungültig" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -218,10 +218,10 @@ msgid "DB Error: \"%s\"" msgstr "DB Fehler: \"%s\"" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -254,7 +254,7 @@ msgstr "Die Oracle-Verbindung konnte nicht aufgebaut werden." msgid "Oracle username and/or password not valid" msgstr "Oracle Benutzername und/oder Passwort ungültig" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Fehlerhafter Befehl war: \"%s\", Name: %s, Passwort: %s" @@ -334,7 +334,3 @@ msgstr "Letztes Jahr" #: private/template/functions.php:142 msgid "years ago" msgstr "Vor Jahren" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "Verursacht durch:" diff --git a/l10n/de_DE/user_ldap.po b/l10n/de_DE/user_ldap.po index 5821d03da7a..ea78203877f 100644 --- a/l10n/de_DE/user_ldap.po +++ b/l10n/de_DE/user_ldap.po @@ -7,14 +7,14 @@ # Marcel Kühlhorn <susefan93@gmx.de>, 2013 # Mario Siegmann <mario_siegmann@web.de>, 2013 # JamFX <niko@nik-o-mat.de>, 2013 -# traductor <transifex-2.7.mensaje@spamgourmet.com>, 2013 +# traductor <transifex-3.7.mensaje@spamgourmet.com>, 2013 # noxin <transifex.com@davidmainzer.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" @@ -31,17 +31,17 @@ msgstr "Löschen der Zuordnung fehlgeschlagen." msgid "Failed to delete the server configuration" msgstr "Löschen der Serverkonfiguration fehlgeschlagen" -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "Die Konfiguration ist gültig und die Verbindung konnte hergestellt werden!" -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "Die Konfiguration ist gültig aber die Verbindung ist fehlgeschlagen. Bitte überprüfen Sie die Servereinstellungen und die Anmeldeinformationen." -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." @@ -92,43 +92,43 @@ msgstr "Erfolg" msgid "Error" msgstr "Fehler" -#: js/settings.js:777 +#: js/settings.js:837 msgid "Configuration OK" msgstr "Konfiguration OK" -#: js/settings.js:786 +#: js/settings.js:846 msgid "Configuration incorrect" msgstr "Konfiguration nicht korrekt" -#: js/settings.js:795 +#: js/settings.js:855 msgid "Configuration incomplete" msgstr "Konfiguration nicht vollständig" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:872 js/settings.js:881 msgid "Select groups" msgstr "Wähle Gruppen" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:875 js/settings.js:884 msgid "Select object classes" msgstr "Objekt-Klassen auswählen" -#: js/settings.js:818 +#: js/settings.js:878 msgid "Select attributes" msgstr "Attribute auswählen" -#: js/settings.js:845 +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "Verbindungstest erfolgreich" -#: js/settings.js:852 +#: js/settings.js:912 msgid "Connection test failed" msgstr "Verbindungstest fehlgeschlagen" -#: js/settings.js:861 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "Möchten Sie die aktuelle Serverkonfiguration wirklich löschen?" -#: js/settings.js:862 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "Löschung bestätigen" @@ -146,11 +146,11 @@ msgid_plural "%s users found" msgstr[0] "%s Benutzer gefunden" msgstr[1] "%s Benutzer gefunden" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:778 lib/wizard.php:790 msgid "Invalid Host" msgstr "Ungültiger Host" -#: lib/wizard.php:952 +#: lib/wizard.php:951 msgid "Could not find the desired feature" msgstr "Konnte die gewünschte Funktion nicht finden" diff --git a/l10n/el/core.po b/l10n/el/core.po index d406fadb589..b0f4b9ecc5c 100644 --- a/l10n/el/core.po +++ b/l10n/el/core.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2014-01-04 01:55-0500\n" +"PO-Revision-Date: 2014-01-02 17:40+0000\n" +"Last-Translator: vkehayas <vkehayas@gmail.com>\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" @@ -50,16 +50,16 @@ msgstr "Ενημερωμένη βάση δεδομένων" #: ajax/update.php:20 msgid "Updating filecache, this may take really long..." -msgstr "" +msgstr "Ενημέρωση αποθηκευμένων αρχείων, αυτό μπορεί να πάρα πολύ ώρα..." #: ajax/update.php:23 msgid "Updated filecache" -msgstr "" +msgstr "Ενημέρωση αποθηκευμένων αρχείων" #: ajax/update.php:26 #, php-format msgid "... %d%% done ..." -msgstr "" +msgstr "... %d%% ολοκληρώθηκαν ..." #: avatar/controller.php:62 msgid "No image or file provided" @@ -75,11 +75,11 @@ msgstr "Μη έγκυρη εικόνα" #: avatar/controller.php:115 avatar/controller.php:142 msgid "No temporary profile picture available, try again" -msgstr "" +msgstr "Δεν υπάρχει προσωρινή φωτογραφία προφίλ διαθέσιμη, δοκιμάστε ξανά" #: avatar/controller.php:135 msgid "No crop data provided" -msgstr "" +msgstr "Δεν δόθηκαν δεδομένα περικοπής" #: js/config.php:32 msgid "Sunday" @@ -157,59 +157,59 @@ msgstr "Νοέμβριος" msgid "December" msgstr "Δεκέμβριος" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Ρυθμίσεις" -#: js/js.js:858 +#: js/js.js:869 msgid "seconds ago" msgstr "δευτερόλεπτα πριν" -#: js/js.js:859 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n λεπτό πριν" msgstr[1] "%n λεπτά πριν" -#: js/js.js:860 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%n ώρα πριν" +msgstr[1] "%n ώρες πριν" -#: js/js.js:861 +#: js/js.js:872 msgid "today" msgstr "σήμερα" -#: js/js.js:862 +#: js/js.js:873 msgid "yesterday" msgstr "χτες" -#: js/js.js:863 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%n ημέρα πριν" +msgstr[1] "%n ημέρες πριν" -#: js/js.js:864 +#: js/js.js:875 msgid "last month" msgstr "τελευταίο μήνα" -#: js/js.js:865 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%n μήνας πριν" +msgstr[1] "%n μήνες πριν" -#: js/js.js:866 +#: js/js.js:877 msgid "months ago" msgstr "μήνες πριν" -#: js/js.js:867 +#: js/js.js:878 msgid "last year" msgstr "τελευταίο χρόνο" -#: js/js.js:868 +#: js/js.js:879 msgid "years ago" msgstr "χρόνια πριν" @@ -219,7 +219,7 @@ msgstr "Επιλέξτε" #: js/oc-dialogs.js:146 msgid "Error loading file picker template: {error}" -msgstr "" +msgstr "Σφάλμα κατά την φόρτωση προτύπου επιλογέα αρχείων: {σφάλμα}" #: js/oc-dialogs.js:172 msgid "Yes" @@ -235,17 +235,17 @@ msgstr "Οκ" #: js/oc-dialogs.js:219 msgid "Error loading message template: {error}" -msgstr "" +msgstr "Σφάλμα φόρτωσης προτύπου μηνυμάτων: {σφάλμα}" #: js/oc-dialogs.js:347 msgid "{count} file conflict" msgid_plural "{count} file conflicts" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "{count} αρχείο διαφέρει" +msgstr[1] "{count} αρχεία διαφέρουν" #: js/oc-dialogs.js:361 msgid "One file conflict" -msgstr "" +msgstr "Ένα αρχείο διαφέρει" #: js/oc-dialogs.js:367 msgid "Which files do you want to keep?" @@ -271,7 +271,7 @@ msgstr "(όλα τα επιλεγμένα)" #: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "({count} selected)" -msgstr "" +msgstr "({count} επιλέχθησαν)" #: js/oc-dialogs.js:457 msgid "Error loading file exists template" @@ -444,15 +444,15 @@ msgstr "Επεξεργασία ετικετών" #: js/tags.js:57 msgid "Error loading dialog template: {error}" -msgstr "" +msgstr "Σφάλμα φόρτωσης προτύπου διαλόγων: {σφάλμα}" #: js/tags.js:261 msgid "No tags selected for deletion." -msgstr "" +msgstr "Καμμία ετικέτα δεν επιλέχθηκε για διαγραφή." #: js/update.js:8 msgid "Please reload the page." -msgstr "" +msgstr "Παρακαλώ επαναφορτώστε τη σελίδα." #: js/update.js:17 msgid "" @@ -468,7 +468,7 @@ msgstr "Η ενημέρωση ήταν επιτυχής. Μετάβαση στο #: lostpassword/controller.php:62 #, php-format msgid "%s password reset" -msgstr "" +msgstr "%s επαναφορά κωδικού πρόσβασης" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" @@ -548,7 +548,7 @@ msgstr "Βοήθεια" #: tags/controller.php:22 msgid "Error loading tags" -msgstr "" +msgstr "Σφάλμα φόρτωσης ετικετών" #: tags/controller.php:48 msgid "Tag already exists" @@ -556,23 +556,23 @@ msgstr "Υπάρχει ήδη η ετικέτα" #: tags/controller.php:64 msgid "Error deleting tag(s)" -msgstr "" +msgstr "Σφάλμα διαγραφής ετικέτας(ων)" #: tags/controller.php:75 msgid "Error tagging" -msgstr "" +msgstr "Σφάλμα προσθήκης ετικέτας" #: tags/controller.php:86 msgid "Error untagging" -msgstr "" +msgstr "Σφάλμα αφαίρεσης ετικέτας" #: tags/controller.php:97 msgid "Error favoriting" -msgstr "" +msgstr "Σφάλμα προσθήκης στα αγαπημένα" #: tags/controller.php:108 msgid "Error unfavoriting" -msgstr "" +msgstr "Σφάλμα αφαίρεσης από τα αγαπημένα" #: templates/403.php:12 msgid "Access forbidden" @@ -590,7 +590,7 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -msgstr "" +msgstr "Γειά χαρά,\n\nαπλά σας ενημερώνω πως ο %s μοιράστηκε το %s με εσάς.\nΔείτε το: %s\n\n" #: templates/altmail.php:4 templates/mail.php:17 #, php-format @@ -599,7 +599,7 @@ msgstr "Ο διαμοιρασμός θα λήξει σε %s." #: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" -msgstr "" +msgstr "Χαιρετισμούς!" #: templates/installation.php:25 templates/installation.php:32 #: templates/installation.php:39 @@ -695,7 +695,7 @@ msgid "" "This application requires JavaScript to be enabled for correct operation. " "Please <a href=\"http://enable-javascript.com/\" target=\"_blank\">enable " "JavaScript</a> and re-load this interface." -msgstr "" +msgstr "Αυτή η εφαρμογή απαιτεί η JavaScript να είναι ενεργοποιημένη για σωστή λειτουργία. Παρακαλώ <a href=\"http://enable-javascript.com/\" target=\"_blank\">ενεργοποιήστε τη JavaScript</a> και επαναφορτώστε αυτή τη διεπαφή." #: templates/layout.user.php:44 #, php-format @@ -749,15 +749,15 @@ msgstr "Εναλλακτικές Συνδέσεις" msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " "href=\"%s\">View it!</a><br><br>" -msgstr "" +msgstr "Γειά χαρά,<br><br>απλά σας ενημερώνω πως ο %s μοιράστηκε το »%s« με εσάς.<br><a href=\"%s\">Δείτε το!</a><br><br>" #: templates/singleuser.user.php:3 msgid "This ownCloud instance is currently in single user mode." -msgstr "" +msgstr "Αυτή η εγκατάσταση ownCloud είναι τώρα σε κατάσταση ενός χρήστη." #: templates/singleuser.user.php:4 msgid "This means only administrators can use the instance." -msgstr "" +msgstr "Αυτό σημαίνει ότι μόνο διαχειριστές μπορούν να χρησιμοποιήσουν την εγκατάσταση." #: templates/singleuser.user.php:5 templates/update.user.php:5 msgid "" diff --git a/l10n/el/files.po b/l10n/el/files.po index 3e956350c03..1171a1f7284 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.po @@ -7,13 +7,14 @@ # Efstathios Iosifidis <iosifidis@opensuse.org>, 2013 # gtsamis <gtsamis@yahoo.com>, 2013 # frerisp <petrosfreris@gmail.com>, 2013 +# vkehayas <vkehayas@gmail.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-11 13:31-0500\n" -"PO-Revision-Date: 2013-12-09 12:00+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-12-31 01:55-0500\n" +"PO-Revision-Date: 2013-12-30 16:00+0000\n" +"Last-Translator: vkehayas <vkehayas@gmail.com>\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" @@ -37,39 +38,44 @@ msgstr "Το όνομα αρχείου δεν μπορεί να είναι κε #: ajax/newfile.php:62 msgid "File name must not contain \"/\". Please choose a different name." -msgstr "" +msgstr "Το όνομα αρχείου δεν μπορεί να περιέχει \"/\". Παρακαλώ επιλέξτε ένα διαφορετικό όνομα. " #: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." -msgstr "" +msgstr "Το όνομα %s χρησιμοποιείτε ήδη στον φάκελο %s. Παρακαλώ επιλέξτε ένα άλλο όνομα." #: ajax/newfile.php:81 msgid "Not a valid source" -msgstr "" +msgstr "Μη έγκυρη πηγή" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "Ο διακομιστής δεν επιτρέπεται να ανοίγει URL, παρακαλώ ελέγξτε τις ρυθμίσεις του διακομιστή" + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" -msgstr "" +msgstr "Σφάλμα κατά τη λήψη του %s στο %s" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" -msgstr "" +msgstr "Σφάλμα κατά τη δημιουργία του αρχείου" #: ajax/newfolder.php:21 msgid "Folder name cannot be empty." -msgstr "" +msgstr "Το όνομα φακέλου δεν μπορεί να είναι κενό." #: ajax/newfolder.php:27 msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "" +msgstr "Το όνομα φακέλου δεν μπορεί να περιέχει \"/\". Παρακαλώ επιλέξτε ένα διαφορετικό όνομα. " #: ajax/newfolder.php:56 msgid "Error when creating the folder" -msgstr "" +msgstr "Σφάλμα δημιουργίας φακέλου" #: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." @@ -120,11 +126,11 @@ msgstr "Μη επαρκής διαθέσιμος αποθηκευτικός χώ #: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." -msgstr "" +msgstr "Η φόρτωση απέτυχε. Αδυναμία λήψης πληροφοριών αρχείων." #: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" -msgstr "" +msgstr "Η φόρτωση απέτυχε. Αδυναμία εύρεσης αρχείου προς φόρτωση." #: ajax/upload.php:172 msgid "Invalid directory." @@ -136,7 +142,7 @@ msgstr "Αρχεία" #: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" -msgstr "" +msgstr "Αδυναμία φόρτωσης {filename} καθώς είναι κατάλογος αρχείων ή έχει 0 bytes" #: js/file-upload.js:239 msgid "Not enough space available" @@ -148,7 +154,7 @@ msgstr "Η αποστολή ακυρώθηκε." #: js/file-upload.js:344 msgid "Could not get result from server." -msgstr "" +msgstr "Αδυναμία λήψης αποτελέσματος από το διακομιστή." #: js/file-upload.js:436 msgid "" @@ -157,11 +163,11 @@ msgstr "Η αποστολή του αρχείου βρίσκεται σε εξέ #: js/file-upload.js:523 msgid "URL cannot be empty" -msgstr "" +msgstr "Η URL δεν πρέπει να είναι κενή" #: js/file-upload.js:527 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" +msgstr "Στον αρχικό φάκελο το όνομα 'Shared' διατηρείται από το σύστημα" #: js/file-upload.js:529 js/filelist.js:379 msgid "{new_name} already exists" @@ -169,11 +175,15 @@ msgstr "{new_name} υπάρχει ήδη" #: js/file-upload.js:595 msgid "Could not create file" -msgstr "" +msgstr "Αδυναμία δημιουργίας αρχείου" #: js/file-upload.js:611 msgid "Could not create folder" -msgstr "" +msgstr "Αδυναμία δημιουργίας φακέλου" + +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "Σφάλμα φόρτωσης URL" #: js/fileactions.js:125 msgid "Share" @@ -193,7 +203,7 @@ msgstr "Εκκρεμεί" #: js/filelist.js:405 msgid "Could not rename file" -msgstr "" +msgstr "Αδυναμία μετονομασίας αρχείου" #: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" @@ -205,7 +215,7 @@ msgstr "αναίρεση" #: js/filelist.js:591 msgid "Error deleting file." -msgstr "" +msgstr "Σφάλμα διαγραφής αρχείου." #: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" @@ -221,7 +231,7 @@ msgstr[1] "%n αρχεία" #: js/filelist.js:617 msgid "{dirs} and {files}" -msgstr "" +msgstr "{Κατάλογοι αρχείων} και {αρχεία}" #: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" @@ -251,14 +261,14 @@ msgstr "Ο αποθηκευτικός χώρος είναι σχεδόν γεμ msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" -msgstr "" +msgstr "Η εφαρμογή κρυπτογράφησης είναι ενεργοποιημένη αλλά τα κλειδιά σας δεν έχουν καταγραφεί, παρακαλώ αποσυνδεθείτε και επανασυνδεθείτε." #: js/files.js:114 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." -msgstr "" +msgstr "Άκυρο προσωπικό κλειδί για την εφαρμογή κρυπτογράφησης. Παρακαλώ ενημερώστε τον κωδικό του προσωπικού κλειδίου σας στις προσωπικές ρυθμίσεις για να επανακτήσετε πρόσβαση στα κρυπτογραφημένα σας αρχεία." #: js/files.js:118 msgid "" @@ -294,7 +304,7 @@ msgstr "Τροποποιήθηκε" #: lib/app.php:60 msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" +msgstr "Άκυρο όνομα φακέλου. Η χρήση του 'Shared' διατηρείται από το σύστημα." #: lib/app.php:101 #, php-format @@ -343,7 +353,7 @@ msgstr "Νέο" #: templates/index.php:8 msgid "New text file" -msgstr "" +msgstr "Νέο αρχείο κειμένου" #: templates/index.php:8 msgid "Text file" @@ -371,7 +381,7 @@ msgstr "Ακύρωση αποστολής" #: templates/index.php:40 msgid "You don’t have permission to upload or create files here" -msgstr "" +msgstr "Δεν έχετε δικαιώματα φόρτωσης ή δημιουργίας αρχείων εδώ" #: templates/index.php:45 msgid "Nothing in here. Upload something!" diff --git a/l10n/el/files_encryption.po b/l10n/el/files_encryption.po index b539c970800..18e02898e39 100644 --- a/l10n/el/files_encryption.po +++ b/l10n/el/files_encryption.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-29 19:09+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-12-28 01:55-0500\n" +"PO-Revision-Date: 2013-12-27 15:42+0000\n" +"Last-Translator: vkehayas <vkehayas@gmail.com>\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" @@ -63,7 +63,7 @@ msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." -msgstr "" +msgstr "Η εφαρμογή κρυπτογράφησης δεν έχει εκκινήσει! Ίσως η εφαρμογή κρυπτογράφησης επανενεργοποιήθηκε κατά τη διάρκεια της τρέχουσας σύνδεσής σας. Παρακαλώ προσπαθήστε να αποσυνδεθείτε και να ξανασυνδεθείτε για να εκκινήσετε την εφαρμογή κρυπτογράφησης." #: files/error.php:16 #, php-format @@ -71,13 +71,13 @@ msgid "" "Your private key is not valid! Likely your password was changed outside of " "%s (e.g. your corporate directory). You can update your private key password" " in your personal settings to recover access to your encrypted files." -msgstr "" +msgstr "Το προσωπικό σας κλειδί δεν είναι έγκυρο! Πιθανόν ο κωδικός σας να άλλαξε έξω από το %s (π.χ. τη λίστα διευθύνσεων της εταιρείας σας). Μπορείτε να ενημερώσετε το προσωπικό σας κλειδί επαναφοράς κωδικού στις προσωπικές σας ρυθμίσεις για να επανακτήσετε πρόσβαση στα κρυπτογραφημένα σας αρχεία." #: files/error.php:19 msgid "" "Can not decrypt this file, probably this is a shared file. Please ask the " "file owner to reshare the file with you." -msgstr "" +msgstr "Δεν ήταν δυνατό να αποκρυπτογραφηθεί αυτό το αρχείο, πιθανόν πρόκειται για κοινόχρηστο αρχείο. Παρακαλώ ζητήστε από τον ιδιοκτήτη του αρχείου να το ξαναμοιραστεί μαζί σας." #: files/error.php:22 files/error.php:27 msgid "" @@ -85,24 +85,24 @@ msgid "" "administrator" msgstr "Άγνωστο σφάλμα, παρακαλώ ελέγξτε τις ρυθμίσεις συστήματος ή επικοινωνήστε με τον διαχειριστή σας " -#: hooks/hooks.php:59 +#: hooks/hooks.php:62 msgid "Missing requirements." msgstr "Προαπαιτούμενα που απουσιάζουν." -#: hooks/hooks.php:60 +#: hooks/hooks.php:63 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "Παρακαλώ επιβεβαιώστε ότι η PHP 5.3.3 ή νεότερη είναι εγκατεστημένη και ότι το OpenSSL μαζί με το PHP extension είναι ενεργοποιήμένο και έχει ρυθμιστεί σωστά. Προς το παρόν, η εφαρμογή κρυπτογράφησης είναι απενεργοποιημένη." -#: hooks/hooks.php:273 +#: hooks/hooks.php:281 msgid "Following users are not set up for encryption:" msgstr "Οι κάτωθι χρήστες δεν έχουν ρυθμιστεί για κρυπογράφηση:" #: js/detect-migration.js:21 msgid "Initial encryption started... This can take some time. Please wait." -msgstr "" +msgstr "Η αρχική κρυπτογράφηση άρχισε... Αυτό μπορεί να πάρει κάποια ώρα. Παρακαλώ περιμένετε." #: js/settings-admin.js:13 msgid "Saving..." @@ -123,7 +123,7 @@ msgstr "Κρυπτογράφηση" #: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" -msgstr "" +msgstr "Ενεργοποίηση κλειδιού ανάκτησης (επιτρέψτε την ανάκτηση αρχείων χρηστών σε περίπτωση απώλειας κωδικού):" #: templates/settings-admin.php:11 msgid "Recovery key password" @@ -131,7 +131,7 @@ msgstr "Επαναφορά κωδικού κλειδιού" #: templates/settings-admin.php:14 msgid "Repeat Recovery key password" -msgstr "" +msgstr "Επαναλάβετε το κλειδί επαναφοράς κωδικού" #: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" @@ -143,11 +143,11 @@ msgstr "Απενεργοποιημένο" #: templates/settings-admin.php:34 msgid "Change recovery key password:" -msgstr "" +msgstr "Αλλαγή κλειδιού επαναφοράς κωδικού:" #: templates/settings-admin.php:40 msgid "Old Recovery key password" -msgstr "" +msgstr "Παλιό κλειδί επαναφοράς κωδικού" #: templates/settings-admin.php:47 msgid "New Recovery key password" @@ -155,7 +155,7 @@ msgstr "Νέο κλειδί επαναφοράς κωδικού" #: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" -msgstr "" +msgstr "Επαναλάβετε νέο κλειδί επαναφοράς κωδικού" #: templates/settings-admin.php:58 msgid "Change Password" @@ -167,7 +167,7 @@ msgstr "Ο κωδικός του προσωπικού κλειδιού δεν τ #: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." -msgstr "" +msgstr "Ορίστε το παλιό σας προσωπικό κλειδί ως τον τρέχων κωδικό πρόσβασης." #: templates/settings-personal.php:14 msgid "" diff --git a/l10n/el/files_sharing.po b/l10n/el/files_sharing.po index 276e7044c67..09221d38d5c 100644 --- a/l10n/el/files_sharing.po +++ b/l10n/el/files_sharing.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-24 00:13-0500\n" -"PO-Revision-Date: 2013-11-23 01:30+0000\n" +"POT-Creation-Date: 2014-01-04 01:55-0500\n" +"PO-Revision-Date: 2014-01-02 17:40+0000\n" "Last-Translator: vkehayas <vkehayas@gmail.com>\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 bb1e7107c87..f59d5fe6101 100644 --- a/l10n/el/lib.po +++ b/l10n/el/lib.po @@ -4,13 +4,14 @@ # # Translators: # Efstathios Iosifidis <iosifidis@opensuse.org>, 2013 +# vkehayas <vkehayas@gmail.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-24 00:13-0500\n" -"PO-Revision-Date: 2013-11-23 01:50+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-12-27 01:55-0500\n" +"PO-Revision-Date: 2013-12-26 13:10+0000\n" +"Last-Translator: vkehayas <vkehayas@gmail.com>\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" @@ -18,51 +19,51 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: private/app.php:243 +#: private/app.php:245 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." -msgstr "" +msgstr "Η εφαρμογή \"%s\" δεν μπορεί να εγκατασταθεί επειδή δεν είναι συμβατή με αυτή την έκδοση του ownCloud." -#: private/app.php:255 +#: private/app.php:257 msgid "No app name specified" -msgstr "" +msgstr "Δεν προδιορίστηκε όνομα εφαρμογής" -#: private/app.php:360 +#: private/app.php:362 msgid "Help" msgstr "Βοήθεια" -#: private/app.php:373 +#: private/app.php:375 msgid "Personal" msgstr "Προσωπικά" -#: private/app.php:384 +#: private/app.php:386 msgid "Settings" msgstr "Ρυθμίσεις" -#: private/app.php:396 +#: private/app.php:398 msgid "Users" msgstr "Χρήστες" -#: private/app.php:409 +#: private/app.php:411 msgid "Admin" msgstr "Διαχειριστής" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Αποτυχία αναβάθμισης του \"%s\"." -#: private/avatar.php:62 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "Άγνωστος τύπος αρχείου" -#: private/avatar.php:67 +#: private/avatar.php:71 msgid "Invalid image" msgstr "Μη έγκυρη εικόνα" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "υπηρεσίες δικτύου υπό τον έλεγχό σας" @@ -71,62 +72,62 @@ msgstr "υπηρεσίες δικτύου υπό τον έλεγχό σας" msgid "cannot open \"%s\"" msgstr "αδυναμία ανοίγματος \"%s\"" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "Η λήψη ZIP απενεργοποιήθηκε." -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Τα αρχεία πρέπει να ληφθούν ένα-ένα." -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Πίσω στα Αρχεία" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Τα επιλεγμένα αρχεία είναι μεγάλα ώστε να δημιουργηθεί αρχείο zip." -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." -msgstr "" +msgstr "Παρακαλώ κάντε λήψη των αρχείων σε μικρότερα κομμάτια ή ζητήστε το από το διαχειριστή σας." #: private/installer.php:63 msgid "No source specified when installing app" -msgstr "" +msgstr "Δεν προσδιορίστηκε πηγή κατά την εγκατάσταση της εφαρμογής" #: private/installer.php:70 msgid "No href specified when installing app from http" -msgstr "" +msgstr "Δεν προσδιορίστηκε href κατά την εγκατάσταση της εφαρμογής μέσω http " #: private/installer.php:75 msgid "No path specified when installing app from local file" -msgstr "" +msgstr "Δεν προσδιορίστηκε μονοπάτι κατά την εγκατάσταση εφαρμογής από τοπικό αρχείο" #: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" -msgstr "" +msgstr "Συλλογές αρχείων τύπου %s δεν υποστηρίζονται" #: private/installer.php:103 msgid "Failed to open archive when installing app" -msgstr "" +msgstr "Αποτυχία ανοίγματος συλλογής αρχείων κατά την εγκατάσταση εφαρμογής" #: private/installer.php:125 msgid "App does not provide an info.xml file" -msgstr "" +msgstr "Η εφαρμογή δεν παρέχει αρχείο info.xml" #: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" -msgstr "" +msgstr "Η εφαρμογή δεν μπορεί να εγκατασταθεί λόγω μη-επιτρεπόμενου κώδικα μέσα στην Εφαρμογή" #: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" -msgstr "" +msgstr "Η εφαρμογή δεν μπορεί να εγκατασταθεί επειδή δεν είναι συμβατή με αυτή την έκδοση ownCloud" #: private/installer.php:146 msgid "" @@ -138,16 +139,16 @@ msgstr "" msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" -msgstr "" +msgstr "Η εφαρμογή δεν μπορεί να εγκατασταθεί επειδή η έκδοση στο info.xml/version δεν είναι η ίδια με την έκδοση που αναφέρεται στο κατάστημα εφαρμογών" #: private/installer.php:169 msgid "App directory already exists" -msgstr "" +msgstr "Ο κατάλογος εφαρμογών υπάρχει ήδη" #: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" -msgstr "" +msgstr "Δεν είναι δυνατόν να δημιουργηθεί ο φάκελος εφαρμογής. Παρακαλώ διορθώστε τις άδειες πρόσβασης. %s" #: private/json.php:28 msgid "Application is not enabled" @@ -173,17 +174,17 @@ msgstr "Κείμενο" msgid "Images" msgstr "Εικόνες" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s εισάγετε το όνομα χρήστη της βάσης δεδομένων." -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s εισάγετε το όνομα της βάσης δεδομένων." -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s μάλλον δεν χρησιμοποιείτε τελείες στο όνομα της βάσης δεδομένων" @@ -204,11 +205,11 @@ msgid "MySQL username and/or password not valid" msgstr "Μη έγκυρος χρήστης και/ή συνθηματικό της MySQL" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -216,10 +217,10 @@ msgid "DB Error: \"%s\"" msgstr "Σφάλμα Βάσης Δεδομένων: \"%s\"" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -252,7 +253,7 @@ msgstr "Αδυναμία σύνδεσης Oracle" msgid "Oracle username and/or password not valid" msgstr "Μη έγκυρος χρήστης και/ή συνθηματικό της Oracle" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Η εντολη παραβατικοτητας ηταν: \"%s\", ονομα: %s, κωδικος: %s" @@ -299,7 +300,7 @@ msgstr[1] "%n λεπτά πριν" msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -msgstr[1] "" +msgstr[1] "%n ώρες πριν" #: private/template/functions.php:133 msgid "today" @@ -313,7 +314,7 @@ msgstr "χτες" msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" -msgstr[1] "" +msgstr[1] "%n ημέρες πριν" #: private/template/functions.php:138 msgid "last month" @@ -323,7 +324,7 @@ msgstr "τελευταίο μήνα" msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -msgstr[1] "" +msgstr[1] "%n μήνες πριν" #: private/template/functions.php:141 msgid "last year" @@ -332,7 +333,3 @@ msgstr "τελευταίο χρόνο" #: private/template/functions.php:142 msgid "years ago" msgstr "χρόνια πριν" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "Προκλήθηκε από:" diff --git a/l10n/el/settings.po b/l10n/el/settings.po index d711909a2e6..a899dcc3fc6 100644 --- a/l10n/el/settings.po +++ b/l10n/el/settings.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-04 23:13+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2014-01-04 01:55-0500\n" +"PO-Revision-Date: 2014-01-02 18:11+0000\n" +"Last-Translator: vkehayas <vkehayas@gmail.com>\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" @@ -205,19 +205,19 @@ msgstr "Διαγραφή" msgid "add group" msgstr "προσθήκη ομάδας" -#: js/users.js:451 +#: js/users.js:454 msgid "A valid username must be provided" msgstr "Πρέπει να δοθεί έγκυρο όνομα χρήστη" -#: js/users.js:452 js/users.js:458 js/users.js:473 +#: js/users.js:455 js/users.js:461 js/users.js:476 msgid "Error creating user" msgstr "Σφάλμα δημιουργίας χρήστη" -#: js/users.js:457 +#: js/users.js:460 msgid "A valid password must be provided" msgstr "Πρέπει να δοθεί έγκυρο συνθηματικό" -#: js/users.js:481 +#: js/users.js:484 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Προειδοποίηση: Ο μητρικός κατάλογος του χρήστη \"{user}\" υπάρχει ήδη" @@ -254,7 +254,7 @@ msgstr "Προειδοποίηση Ασφαλείας" msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." -msgstr "" +msgstr "Έχετε πρόσβαση στο %s μέσω HTTP. Προτείνουμε ανεπιφύλακτα να ρυθμίσετε το διακομιστή σας ώστε να απαιτεί χρήση HTTPS αντ' αυτού." #: templates/admin.php:39 msgid "" @@ -292,14 +292,14 @@ msgstr "Η PHP ενοτητα 'fileinfo' λειπει. Σας συνιστούμ #: templates/admin.php:79 msgid "Your PHP version is outdated" -msgstr "" +msgstr "Η έκδοση PHP είναι απαρχαιωμένη" #: templates/admin.php:82 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." -msgstr "" +msgstr "Η έκδοση PHP είναι απαρχαιωμένη. Συνιστούμε ανεπιφύλακτα να ενημερώσετε στην 5.3.8 ή νεώτερη καθώς παλαιότερες εκδόσεις είναι γνωστό πως περιέχουν σφάλματα. Είναι πιθανόν ότι αυτή η εγκατάσταση δεν λειτουργεί σωστά." #: templates/admin.php:93 msgid "Locale not working" @@ -575,7 +575,7 @@ msgstr "Είτε png ή jpg. Ιδανικά τετράγωνη αλλά θα ε #: templates/personal.php:97 msgid "Your avatar is provided by your original account." -msgstr "" +msgstr "Το άβατάρ σας παρέχεται από τον αρχικό σας λογαριασμό." #: templates/personal.php:101 msgid "Abort" @@ -610,7 +610,7 @@ msgstr "Κρυπτογράφηση" #: templates/personal.php:152 msgid "The encryption app is no longer enabled, please decrypt all your files" -msgstr "" +msgstr "Η εφαρμογή κρυπτογράφησης δεν είναι πλέον ενεργοποιημένη, παρακαλώ αποκρυπτογραφήστε όλα τα αρχεία σας" #: templates/personal.php:158 msgid "Log-in password" diff --git a/l10n/el/user_ldap.po b/l10n/el/user_ldap.po index a6940fccaf3..a7c6ef95f42 100644 --- a/l10n/el/user_ldap.po +++ b/l10n/el/user_ldap.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Marios Bekatoros <>, 2013 # vkehayas <vkehayas@gmail.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2014-01-04 01:55-0500\n" +"PO-Revision-Date: 2014-01-02 18:11+0000\n" +"Last-Translator: vkehayas <vkehayas@gmail.com>\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" @@ -26,33 +27,33 @@ msgstr "Αποτυχία εκκαθάρισης των αντιστοιχιών. msgid "Failed to delete the server configuration" msgstr "Αποτυχία διαγραφής ρυθμίσεων διακομιστή" -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "Οι ρυθμίσεις είναι έγκυρες και η σύνδεση μπορεί να πραγματοποιηθεί!" -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "Οι ρυθμίσεις είναι έγκυρες, αλλά απέτυχε η σύνδεση. Παρακαλώ ελέγξτε τις ρυθμίσεις του διακομιστή και τα διαπιστευτήρια." -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." -msgstr "" +msgstr "Η διαμόρφωση είναι άκυρη. Παρακαλώ ελέγξτε τα αρχεία σφαλμάτων για περαιτέρω λεπτομέρειες." #: ajax/wizard.php:32 msgid "No action specified" -msgstr "" +msgstr "Καμμία εντολή δεν προσδιορίστηκε" #: ajax/wizard.php:38 msgid "No configuration specified" -msgstr "" +msgstr "Καμμία διαμόρφωση δεν προσδιορίστηκε" #: ajax/wizard.php:81 msgid "No data specified" -msgstr "" +msgstr "Δεν προσδιορίστηκαν δεδομένα" #: ajax/wizard.php:89 #, php-format @@ -87,43 +88,43 @@ msgstr "Επιτυχία" msgid "Error" msgstr "Σφάλμα" -#: js/settings.js:777 +#: js/settings.js:837 msgid "Configuration OK" -msgstr "" +msgstr "Η διαμόρφωση είναι εντάξει" -#: js/settings.js:786 +#: js/settings.js:846 msgid "Configuration incorrect" -msgstr "" +msgstr "Η διαμόρφωση είναι λανθασμένη" -#: js/settings.js:795 +#: js/settings.js:855 msgid "Configuration incomplete" -msgstr "" +msgstr "Η διαμόρφωση είναι ελλιπής" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:872 js/settings.js:881 msgid "Select groups" msgstr "Επιλέξτε ομάδες" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:875 js/settings.js:884 msgid "Select object classes" -msgstr "" +msgstr "Επιλογή κλάσης αντικειμένων" -#: js/settings.js:818 +#: js/settings.js:878 msgid "Select attributes" -msgstr "" +msgstr "Επιλογή χαρακτηριστικών" -#: js/settings.js:845 +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "Επιτυχημένη δοκιμαστική σύνδεση" -#: js/settings.js:852 +#: js/settings.js:912 msgid "Connection test failed" msgstr "Αποτυχημένη δοκιμαστική σύνδεσης." -#: js/settings.js:861 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "Θέλετε να διαγράψετε τις τρέχουσες ρυθμίσεις του διακομιστή;" -#: js/settings.js:862 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "Επιβεβαίωση Διαγραφής" @@ -131,23 +132,23 @@ msgstr "Επιβεβαίωση Διαγραφής" #, php-format msgid "%s group found" msgid_plural "%s groups found" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%s ομάδα βρέθηκε" +msgstr[1] "%s ομάδες βρέθηκαν" #: lib/wizard.php:122 #, php-format msgid "%s user found" msgid_plural "%s users found" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%s χρήστης βρέθηκε" +msgstr[1] "%s χρήστες βρέθηκαν" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:778 lib/wizard.php:790 msgid "Invalid Host" -msgstr "" +msgstr "Άκυρος εξυπηρετητής" -#: lib/wizard.php:952 +#: lib/wizard.php:951 msgid "Could not find the desired feature" -msgstr "" +msgstr "Αδυναμία εύρεσης επιθυμητου χαρακτηριστικού" #: templates/part.settingcontrols.php:2 msgid "Save" @@ -164,62 +165,62 @@ msgstr "Βοήθεια" #: templates/part.wizard-groupfilter.php:4 #, php-format msgid "Limit the access to %s to groups meeting this criteria:" -msgstr "" +msgstr "Περιορισμός πρόσβασης %s σε ομάδες που ταιριάζουν αυτά τα κριτήρια:" #: templates/part.wizard-groupfilter.php:8 #: templates/part.wizard-userfilter.php:8 msgid "only those object classes:" -msgstr "" +msgstr "μόνο αυτές οι κλάσεις αντικειμένων:" #: templates/part.wizard-groupfilter.php:17 #: templates/part.wizard-userfilter.php:17 msgid "only from those groups:" -msgstr "" +msgstr "μόνο από αυτές τις ομάδες:" #: templates/part.wizard-groupfilter.php:25 #: templates/part.wizard-loginfilter.php:32 #: templates/part.wizard-userfilter.php:25 msgid "Edit raw filter instead" -msgstr "" +msgstr "Επεξεργασία πρωτογενούς φίλτρου αντί αυτού" #: templates/part.wizard-groupfilter.php:30 #: templates/part.wizard-loginfilter.php:37 #: templates/part.wizard-userfilter.php:30 msgid "Raw LDAP filter" -msgstr "" +msgstr "Πρωτογενές φίλτρο " #: templates/part.wizard-groupfilter.php:31 #, php-format msgid "" "The filter specifies which LDAP groups shall have access to the %s instance." -msgstr "" +msgstr "Το φίλτρο καθορίζει ποιες ομάδες LDAP θα έχουν πρόσβαση στην εγκατάσταση %s." #: templates/part.wizard-groupfilter.php:38 msgid "groups found" -msgstr "" +msgstr "ομάδες βρέθηκαν" #: templates/part.wizard-loginfilter.php:4 msgid "What attribute shall be used as login name:" -msgstr "" +msgstr "Ποια ιδιότητα θα χρησιμοποιηθεί ως όνομα σύνδεσης:" #: templates/part.wizard-loginfilter.php:8 msgid "LDAP Username:" -msgstr "" +msgstr "Όνομα χρήστη LDAP:" #: templates/part.wizard-loginfilter.php:16 msgid "LDAP Email Address:" -msgstr "" +msgstr "Διεύθυνση ηλ. ταχυδρομείου LDAP:" #: templates/part.wizard-loginfilter.php:24 msgid "Other Attributes:" -msgstr "" +msgstr "Άλλες Ιδιότητες:" #: templates/part.wizard-loginfilter.php:38 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action. Example: \"uid=%%uid\"" -msgstr "" +msgstr "Ορίζει το φίλτρο που θα εφαρμοστεί, όταν επιχειριθεί σύνδεση. Το %%uid αντικαθιστά το όνομα χρήστη κατά τη σύνδεση. Παράδειγμα: \"uid=%%uid\"" #: templates/part.wizard-server.php:18 msgid "Add Server Configuration" @@ -268,17 +269,17 @@ msgstr "Μπορείτε να καθορίσετε το Base DN για χρήσ #: templates/part.wizard-userfilter.php:4 #, php-format msgid "Limit the access to %s to users meeting this criteria:" -msgstr "" +msgstr "Περιορισμός πρόσβασης %s σε χρήστες που ταιριάζουν αυτά τα κριτήρια:" #: templates/part.wizard-userfilter.php:31 #, php-format msgid "" "The filter specifies which LDAP users shall have access to the %s instance." -msgstr "" +msgstr "Το φίλτρο καθορίζει ποιοι χρήστες LDAP θα έχουν πρόσβαση στην εγκατάσταση %s." #: templates/part.wizard-userfilter.php:38 msgid "users found" -msgstr "" +msgstr "χρήστες βρέθηκαν" #: templates/part.wizardcontrols.php:5 msgid "Back" @@ -348,7 +349,7 @@ msgstr "Απενεργοποίηση επικύρωσης πιστοποιητι msgid "" "Not recommended, use it for testing only! If connection only works with this" " option, import the LDAP server's SSL certificate in your %s server." -msgstr "" +msgstr "Δεν προτείνεται, χρησιμοποιείστε το μόνο για δοκιμές! Εάν η σύνδεση λειτουργεί μόνο με αυτή την επιλογή, εισάγετε το πιστοποιητικό SSL του διακομιστή LDAP στο %s διακομιστή σας." #: templates/settings.php:28 msgid "Cache Time-To-Live" @@ -368,7 +369,7 @@ msgstr "Πεδίο Ονόματος Χρήστη" #: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." -msgstr "" +msgstr "Η ιδιότητα LDAP προς χρήση για δημιουργία του προβαλλόμενου ονόματος χρήστη." #: templates/settings.php:33 msgid "Base User Tree" @@ -392,7 +393,7 @@ msgstr "Group Display Name Field" #: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." -msgstr "" +msgstr "Η ιδιότητα LDAP προς χρήση για δημιουργία του προβαλλόμενου ονόματος ομάδας." #: templates/settings.php:36 msgid "Base Group Tree" @@ -458,7 +459,7 @@ msgid "" "behavior as before ownCloud 5 enter the user display name attribute in the " "following field. Leave it empty for default behavior. Changes will have " "effect only on newly mapped (added) LDAP users." -msgstr "" +msgstr "Εξ ορισμού, το εσωτερικό όνομα χρήστη θα δημιουργηθεί από το χαρακτηριστικό UUID. Αυτό βεβαιώνει ότι το όνομα χρήστη είναι μοναδικό και δεν χρειάζεται μετατροπή χαρακτήρων. Το εσωτερικό όνομα χρήστη έχει τον περιορισμό ότι μόνο αυτοί οι χαρακτήρες επιτρέπονται: [ a-zA-Z0-9_.@- ]. Οι άλλοι χαρακτήρες αντικαθίστανται με τους αντίστοιχους ASCII ή απλά παραλείπονται. Στις συγκρούσεις ένας αριθμός θα προστεθεί / αυξηθεί. Το εσωτερικό όνομα χρήστη χρησιμοποιείται για την αναγνώριση ενός χρήστη εσωτερικά. Είναι επίσης το προεπιλεγμένο όνομα για τον αρχικό φάκελο χρήστη. Αποτελεί επίσης μέρος των απομακρυσμένων διευθύνσεων URL, για παράδειγμα για όλες τις υπηρεσίες *DAV. Με αυτή τη ρύθμιση, η προεπιλεγμένη συμπεριφορά μπορεί να παρακαμφθεί. Για να επιτευχθεί μια παρόμοια συμπεριφορά όπως πριν το ownCloud 5 εισάγετε το χαρακτηριστικό του προβαλλόμενου ονόματος χρήστη στο παρακάτω πεδίο. Αφήστε το κενό για την προεπιλεγμένη λειτουργία. Οι αλλαγές θα έχουν ισχύ μόνο σε νεώτερους (προστιθέμενους) χρήστες LDAP." #: templates/settings.php:53 msgid "Internal Username Attribute:" @@ -466,7 +467,7 @@ msgstr "Ιδιότητα Εσωτερικού Ονόματος Χρήστη:" #: templates/settings.php:54 msgid "Override UUID detection" -msgstr "" +msgstr "Παράκαμψη ανίχνευσης UUID" #: templates/settings.php:55 msgid "" @@ -477,19 +478,19 @@ msgid "" "You must make sure that the attribute of your choice can be fetched for both" " users and groups and it is unique. Leave it empty for default behavior. " "Changes will have effect only on newly mapped (added) LDAP users and groups." -msgstr "" +msgstr "Από προεπιλογή, το χαρακτηριστικό UUID εντοπίζεται αυτόματα. Το χαρακτηριστικό UUID χρησιμοποιείται για την αναγνώριση χωρίς αμφιβολία χρηστών και ομάδων LDAP. Επίσης, το εσωτερικό όνομα χρήστη θα δημιουργηθεί με βάση το UUID, εφόσον δεν ορίζεται διαφορετικά ανωτέρω. Μπορείτε να παρακάμψετε τη ρύθμιση και να ορίσετε ένα χαρακτηριστικό της επιλογής σας. Θα πρέπει να βεβαιωθείτε ότι το χαρακτηριστικό της επιλογής σας μπορεί να ληφθεί για τους χρήστες και τις ομάδες και ότι είναι μοναδικό. Αφήστε το κενό για την προεπιλεγμένη λειτουργία. Οι αλλαγές θα έχουν ισχύ μόνο σε πρόσφατα αντιστοιχισμένους (προστιθέμενους) χρήστες και ομάδες LDAP." #: templates/settings.php:56 msgid "UUID Attribute for Users:" -msgstr "" +msgstr "Χαρακτηριστικό UUID για Χρήστες:" #: templates/settings.php:57 msgid "UUID Attribute for Groups:" -msgstr "" +msgstr "Χαρακτηριστικό UUID για Ομάδες:" #: templates/settings.php:58 msgid "Username-LDAP User Mapping" -msgstr "" +msgstr "Αντιστοίχιση Χρηστών Όνομα Χρήστη-LDAP" #: templates/settings.php:59 msgid "" @@ -503,12 +504,12 @@ msgid "" " is not configuration sensitive, it affects all LDAP configurations! Never " "clear the mappings in a production environment, only in a testing or " "experimental stage." -msgstr "" +msgstr "Τα ονόματα χρηστών χρησιμοποιούνται για την αποθήκευση και την ανάθεση (μετα) δεδομένων. Προκειμένου να προσδιοριστούν με ακρίβεια και να αναγνωρίστουν οι χρήστες, κάθε χρήστης LDAP θα έχει ένα εσωτερικό όνομα. Αυτό απαιτεί μια αντιστοίχιση του ονόματος χρήστη με το χρήστη LDAP. Το όνομα χρήστη που δημιουργήθηκε αντιστοιχίζεται στην UUID του χρήστη LDAP. Επιπροσθέτως, το DN αποθηκεύεται προσωρινά (cache) ώστε να μειωθεί η αλληλεπίδραση LDAP, αλλά δεν χρησιμοποιείται για την ταυτοποίηση. Αν το DN αλλάξει, οι αλλαγές θα βρεθούν. Το εσωτερικό όνομα χρήστη χρησιμοποιείται παντού. Η εκκαθάριση των αντιστοιχίσεων θα αφήσει κατάλοιπα παντού. Η εκκαθάριση των αντιστοιχίσεων δεν επηρεάζεται από τη διαμόρφωση, επηρεάζει όλες τις διαμορφώσεις LDAP! Μην διαγράψετε ποτέ τις αντιστοιχίσεις σε ένα λειτουργικό περιβάλλον παρά μόνο σε δοκιμές ή σε πειραματικό στάδιο." #: templates/settings.php:60 msgid "Clear Username-LDAP User Mapping" -msgstr "" +msgstr "Διαγραφή αντιστοίχησης Ονόματος Χρήστη LDAP-Χρήστη" #: templates/settings.php:60 msgid "Clear Groupname-LDAP Group Mapping" -msgstr "" +msgstr "Διαγραφή αντιστοίχησης Ονόματος Ομάδας-LDAP Ομάδας" diff --git a/l10n/el/user_webdavauth.po b/l10n/el/user_webdavauth.po index 85544e07257..ce04dbf8a6c 100644 --- a/l10n/el/user_webdavauth.po +++ b/l10n/el/user_webdavauth.po @@ -9,13 +9,14 @@ # Efstathios Iosifidis <iosifidis@opensuse.org>, 2012-2013 # Konstantinos Tzanidis <tzanidis@gmail.com>, 2012 # Marios Bekatoros <>, 2013 +# vkehayas <vkehayas@gmail.com>, 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-06 08:10+0000\n" -"Last-Translator: Efstathios Iosifidis <iefstathios@gmail.com>\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-01-04 01:55-0500\n" +"PO-Revision-Date: 2014-01-02 18:00+0000\n" +"Last-Translator: vkehayas <vkehayas@gmail.com>\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" @@ -25,7 +26,7 @@ msgstr "" #: templates/settings.php:3 msgid "WebDAV Authentication" -msgstr "Αυθεντικοποίηση μέσω WebDAV " +msgstr "Πιστοποίηση μέσω WebDAV " #: templates/settings.php:4 msgid "Address: " diff --git a/l10n/en@pirate/files.po b/l10n/en@pirate/files.po index fbea9751bc4..531771612fb 100644 --- a/l10n/en@pirate/files.po +++ b/l10n/en@pirate/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" +"POT-Creation-Date: 2013-12-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06:55+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "" diff --git a/l10n/en@pirate/lib.po b/l10n/en@pirate/lib.po index d5acd01a2e2..5d487df1422 100644 --- a/l10n/en@pirate/lib.po +++ b/l10n/en@pirate/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" @@ -53,15 +53,15 @@ msgstr "" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "web services under your control" @@ -70,23 +70,23 @@ msgstr "web services under your control" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "" msgid "Images" msgstr "" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -331,7 +331,3 @@ msgstr "" #: private/template/functions.php:142 msgid "years ago" msgstr "" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/en_GB/core.po b/l10n/en_GB/core.po index 2308ae785cf..5dc93a2d23f 100644 --- a/l10n/en_GB/core.po +++ b/l10n/en_GB/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-11 13:31-0500\n" -"PO-Revision-Date: 2013-12-09 16:10+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: mnestis <transifex@mnestis.net>\n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" @@ -149,59 +149,59 @@ msgstr "November" msgid "December" msgstr "December" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Settings" -#: js/js.js:858 +#: js/js.js:869 msgid "seconds ago" msgstr "seconds ago" -#: js/js.js:859 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minute ago" msgstr[1] "%n minutes ago" -#: js/js.js:860 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n hour ago" msgstr[1] "%n hours ago" -#: js/js.js:861 +#: js/js.js:872 msgid "today" msgstr "today" -#: js/js.js:862 +#: js/js.js:873 msgid "yesterday" msgstr "yesterday" -#: js/js.js:863 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n day ago" msgstr[1] "%n days ago" -#: js/js.js:864 +#: js/js.js:875 msgid "last month" msgstr "last month" -#: js/js.js:865 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n month ago" msgstr[1] "%n months ago" -#: js/js.js:866 +#: js/js.js:877 msgid "months ago" msgstr "months ago" -#: js/js.js:867 +#: js/js.js:878 msgid "last year" msgstr "last year" -#: js/js.js:868 +#: js/js.js:879 msgid "years ago" msgstr "years ago" diff --git a/l10n/en_GB/files.po b/l10n/en_GB/files.po index 9963cad365f..259e932c171 100644 --- a/l10n/en_GB/files.po +++ b/l10n/en_GB/files.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-11 13:31-0500\n" -"PO-Revision-Date: 2013-12-09 12:00+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-12-22 01:55-0500\n" +"PO-Revision-Date: 2013-12-21 14:50+0000\n" +"Last-Translator: mnestis <transifex@mnestis.net>\n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -47,12 +47,17 @@ msgstr "The name %s is already used in the folder %s. Please choose a different msgid "Not a valid source" msgstr "Not a valid source" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "Server is not allowed to open URLs, please check the server configuration" + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" msgstr "Error whilst downloading %s to %s" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "Error when creating the file" @@ -172,6 +177,10 @@ msgstr "Could not create file" msgid "Could not create folder" msgstr "Could not create folder" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "Error fetching URL" + #: js/fileactions.js:125 msgid "Share" msgstr "Share" diff --git a/l10n/en_GB/lib.po b/l10n/en_GB/lib.po index 3857ebb302a..94418cfa7d9 100644 --- a/l10n/en_GB/lib.po +++ b/l10n/en_GB/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 21:06-0500\n" -"PO-Revision-Date: 2013-11-21 15:22+0000\n" -"Last-Translator: mnestis <transifex@mnestis.net>\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -54,15 +54,15 @@ msgstr "Admin" msgid "Failed to upgrade \"%s\"." msgstr "Failed to upgrade \"%s\"." -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "Unknown filetype" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "Invalid image" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "web services under your control" @@ -71,23 +71,23 @@ msgstr "web services under your control" msgid "cannot open \"%s\"" msgstr "cannot open \"%s\"" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "ZIP download is turned off." -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Files need to be downloaded one by one." -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Back to Files" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Selected files too large to generate zip file." -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -173,17 +173,17 @@ msgstr "Text" msgid "Images" msgstr "Images" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s enter the database username." -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s enter the database name." -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s you may not use dots in the database name" @@ -204,11 +204,11 @@ msgid "MySQL username and/or password not valid" msgstr "MySQL username and/or password not valid" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -216,10 +216,10 @@ msgid "DB Error: \"%s\"" msgstr "DB Error: \"%s\"" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -252,7 +252,7 @@ msgstr "Oracle connection could not be established" msgid "Oracle username and/or password not valid" msgstr "Oracle username and/or password not valid" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Offending command was: \"%s\", name: %s, password: %s" @@ -332,7 +332,3 @@ msgstr "last year" #: private/template/functions.php:142 msgid "years ago" msgstr "years ago" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "Caused by:" diff --git a/l10n/en_GB/user_ldap.po b/l10n/en_GB/user_ldap.po index 7dee8928aae..b41d0ae0216 100644 --- a/l10n/en_GB/user_ldap.po +++ b/l10n/en_GB/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" @@ -26,17 +26,17 @@ msgstr "Failed to clear the mappings." msgid "Failed to delete the server configuration" msgstr "Failed to delete the server configuration" -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "The configuration is valid and the connection could be established!" -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "The configuration is valid, but the Bind failed. Please check the server settings and credentials." -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." @@ -87,43 +87,43 @@ msgstr "Success" msgid "Error" msgstr "Error" -#: js/settings.js:777 +#: js/settings.js:837 msgid "Configuration OK" msgstr "Configuration OK" -#: js/settings.js:786 +#: js/settings.js:846 msgid "Configuration incorrect" msgstr "Configuration incorrect" -#: js/settings.js:795 +#: js/settings.js:855 msgid "Configuration incomplete" msgstr "Configuration incomplete" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:872 js/settings.js:881 msgid "Select groups" msgstr "Select groups" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:875 js/settings.js:884 msgid "Select object classes" msgstr "Select object classes" -#: js/settings.js:818 +#: js/settings.js:878 msgid "Select attributes" msgstr "Select attributes" -#: js/settings.js:845 +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "Connection test succeeded" -#: js/settings.js:852 +#: js/settings.js:912 msgid "Connection test failed" msgstr "Connection test failed" -#: js/settings.js:861 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "Do you really want to delete the current Server Configuration?" -#: js/settings.js:862 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "Confirm Deletion" @@ -141,11 +141,11 @@ msgid_plural "%s users found" msgstr[0] "%s user found" msgstr[1] "%s users found" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:778 lib/wizard.php:790 msgid "Invalid Host" msgstr "Invalid Host" -#: lib/wizard.php:952 +#: lib/wizard.php:951 msgid "Could not find the desired feature" msgstr "Could not find the desired feature" diff --git a/l10n/eo/core.po b/l10n/eo/core.po index 3f73702cdf8..66aa1f14f4b 100644 --- a/l10n/eo/core.po +++ b/l10n/eo/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -150,59 +150,59 @@ msgstr "Novembro" msgid "December" msgstr "Decembro" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Agordo" -#: js/js.js:858 +#: js/js.js:869 msgid "seconds ago" msgstr "sekundoj antaŭe" -#: js/js.js:859 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:860 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:861 +#: js/js.js:872 msgid "today" msgstr "hodiaŭ" -#: js/js.js:862 +#: js/js.js:873 msgid "yesterday" msgstr "hieraŭ" -#: js/js.js:863 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:864 +#: js/js.js:875 msgid "last month" msgstr "lastamonate" -#: js/js.js:865 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:866 +#: js/js.js:877 msgid "months ago" msgstr "monatoj antaŭe" -#: js/js.js:867 +#: js/js.js:878 msgid "last year" msgstr "lastajare" -#: js/js.js:868 +#: js/js.js:879 msgid "years ago" msgstr "jaroj antaŭe" diff --git a/l10n/eo/files.po b/l10n/eo/files.po index 44b77d5a2ca..cb3d5db5598 100644 --- a/l10n/eo/files.po +++ b/l10n/eo/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-11 13:31-0500\n" -"PO-Revision-Date: 2013-12-09 12:00+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -47,12 +47,17 @@ msgstr "La nomo %s jam uziĝas en la dosierujo %s. Bonvolu elekti malsaman nomon msgid "Not a valid source" msgstr "Nevalida fonto" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" msgstr "Eraris elŝuto de %s al %s" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "Eraris la kreo de la dosiero" @@ -172,6 +177,10 @@ msgstr "Ne povis kreiĝi dosiero" msgid "Could not create folder" msgstr "Ne povis kreiĝi dosierujo" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "Kunhavigi" diff --git a/l10n/eo/lib.po b/l10n/eo/lib.po index dc44de6f28a..cceb200d023 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -54,15 +54,15 @@ msgstr "Administranto" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "TTT-servoj regataj de vi" @@ -71,23 +71,23 @@ msgstr "TTT-servoj regataj de vi" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "ZIP-elŝuto estas malkapabligita." -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Dosieroj devas elŝutiĝi unuope." -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Reen al la dosieroj" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "La elektitaj dosieroj tro grandas por genero de ZIP-dosiero." -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -173,17 +173,17 @@ msgstr "Teksto" msgid "Images" msgstr "Bildoj" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s enigu la uzantonomon de la datumbazo." -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s enigu la nomon de la datumbazo." -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s vi ne povas uzi punktojn en la nomo de la datumbazo" @@ -204,11 +204,11 @@ msgid "MySQL username and/or password not valid" msgstr "La uzantonomo de MySQL aŭ la pasvorto ne validas" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -216,10 +216,10 @@ msgid "DB Error: \"%s\"" msgstr "Datumbaza eraro: “%s”" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -252,7 +252,7 @@ msgstr "Konekto al Oracle ne povas stariĝi" msgid "Oracle username and/or password not valid" msgstr "La uzantonomo de Oracle aŭ la pasvorto ne validas" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -332,7 +332,3 @@ msgstr "lastajare" #: private/template/functions.php:142 msgid "years ago" msgstr "jaroj antaŭe" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/eo/user_ldap.po b/l10n/eo/user_ldap.po index 4b332a0762d..8ba0c5153c1 100644 --- a/l10n/eo/user_ldap.po +++ b/l10n/eo/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -26,17 +26,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "Malsukcesis forigo de la agordo de servilo" -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." @@ -87,43 +87,43 @@ msgstr "Sukceso" msgid "Error" msgstr "Eraro" -#: js/settings.js:777 +#: js/settings.js:837 msgid "Configuration OK" msgstr "" -#: js/settings.js:786 +#: js/settings.js:846 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:795 +#: js/settings.js:855 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:872 js/settings.js:881 msgid "Select groups" msgstr "Elekti grupojn" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:875 js/settings.js:884 msgid "Select object classes" msgstr "Elekti objektoklasojn" -#: js/settings.js:818 +#: js/settings.js:878 msgid "Select attributes" msgstr "Elekti atribuojn" -#: js/settings.js:845 +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "Provo de konekto sukcesis" -#: js/settings.js:852 +#: js/settings.js:912 msgid "Connection test failed" msgstr "Provo de konekto malsukcesis" -#: js/settings.js:861 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:862 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "Konfirmi forigon" @@ -141,11 +141,11 @@ msgid_plural "%s users found" msgstr[0] "%s uzanto troviĝis" msgstr[1] "%s uzanto troviĝis" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:778 lib/wizard.php:790 msgid "Invalid Host" msgstr "Nevalida gastigo" -#: lib/wizard.php:952 +#: lib/wizard.php:951 msgid "Could not find the desired feature" msgstr "" diff --git a/l10n/es/core.po b/l10n/es/core.po index d51e07b4b9e..ed95b47d7f1 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -19,8 +19,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-13 14:43-0500\n" -"PO-Revision-Date: 2013-12-11 21:40+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:10+0000\n" "Last-Translator: juanman <juanma@kde.org.ar>\n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -160,59 +160,59 @@ msgstr "Noviembre" msgid "December" msgstr "Diciembre" -#: js/js.js:394 +#: js/js.js:398 msgid "Settings" msgstr "Ajustes" -#: js/js.js:865 +#: js/js.js:869 msgid "seconds ago" msgstr "segundos antes" -#: js/js.js:866 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "Hace %n minuto" msgstr[1] "Hace %n minutos" -#: js/js.js:867 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Hace %n hora" msgstr[1] "Hace %n horas" -#: js/js.js:868 +#: js/js.js:872 msgid "today" msgstr "hoy" -#: js/js.js:869 +#: js/js.js:873 msgid "yesterday" msgstr "ayer" -#: js/js.js:870 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "Hace %n día" msgstr[1] "Hace %n días" -#: js/js.js:871 +#: js/js.js:875 msgid "last month" msgstr "el mes pasado" -#: js/js.js:872 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Hace %n mes" msgstr[1] "Hace %n meses" -#: js/js.js:873 +#: js/js.js:877 msgid "months ago" msgstr "meses antes" -#: js/js.js:874 +#: js/js.js:878 msgid "last year" msgstr "el año pasado" -#: js/js.js:875 +#: js/js.js:879 msgid "years ago" msgstr "años antes" diff --git a/l10n/es/files.po b/l10n/es/files.po index 394af7cad3d..0cfd42968eb 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-11 13:31-0500\n" -"PO-Revision-Date: 2013-12-09 12:00+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:10+0000\n" +"Last-Translator: Art O. Pal <artopal@fastmail.fm>\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" @@ -55,12 +55,17 @@ msgstr "El nombre %s ya está en uso por la carpeta %s. Por favor elija uno dife msgid "Not a valid source" msgstr "No es un origen válido" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "El servidor no puede acceder URLs; revise la configuración del servidor." + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" msgstr "Error mientras se descargaba %s a %s" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "Error al crear el archivo" @@ -180,6 +185,10 @@ msgstr "No se pudo crear el archivo" msgid "Could not create folder" msgstr "No se pudo crear la carpeta" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "Error al descargar URL." + #: js/fileactions.js:125 msgid "Share" msgstr "Compartir" diff --git a/l10n/es/lib.po b/l10n/es/lib.po index cae01947e87..6e80e0b1fe2 100644 --- a/l10n/es/lib.po +++ b/l10n/es/lib.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-02 17:27-0500\n" -"PO-Revision-Date: 2013-11-29 22:20+0000\n" -"Last-Translator: Raul Fernandez Garcia <raulfg3@gmail.com>\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:10+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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" @@ -75,23 +75,23 @@ msgstr "Servicios web bajo su control" msgid "cannot open \"%s\"" msgstr "No se puede abrir \"%s\"" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "La descarga en ZIP está desactivada." -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Los archivos deben ser descargados uno por uno." -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Volver a Archivos" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Los archivos seleccionados son demasiado grandes para generar el archivo zip." -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -177,17 +177,17 @@ msgstr "Texto" msgid "Images" msgstr "Imágenes" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s ingresar el usuario de la base de datos." -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s ingresar el nombre de la base de datos" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s puede utilizar puntos en el nombre de la base de datos" @@ -208,11 +208,11 @@ msgid "MySQL username and/or password not valid" msgstr "Usuario y/o contraseña de MySQL no válidos" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -220,10 +220,10 @@ msgid "DB Error: \"%s\"" msgstr "Error BD: \"%s\"" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -256,7 +256,7 @@ msgstr "No se pudo establecer la conexión a Oracle" msgid "Oracle username and/or password not valid" msgstr "Usuario y/o contraseña de Oracle no válidos" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Comando infractor: \"%s\", nombre: %s, contraseña: %s" @@ -336,7 +336,3 @@ msgstr "año pasado" #: private/template/functions.php:142 msgid "years ago" msgstr "hace años" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "Causado por:" diff --git a/l10n/es/user_ldap.po b/l10n/es/user_ldap.po index 5d3a627794e..4f999d4127f 100644 --- a/l10n/es/user_ldap.po +++ b/l10n/es/user_ldap.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:10+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -32,17 +32,17 @@ msgstr "Ocurrió un fallo al borrar las asignaciones." msgid "Failed to delete the server configuration" msgstr "No se pudo borrar la configuración del servidor" -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "¡La configuración es válida y la conexión puede establecerse!" -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "La configuración es válida, pero falló el Enlace. Por favor, compruebe la configuración del servidor y las credenciales." -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." @@ -93,43 +93,43 @@ msgstr "Éxito" msgid "Error" msgstr "Error" -#: js/settings.js:777 +#: js/settings.js:837 msgid "Configuration OK" msgstr "Configuración OK" -#: js/settings.js:786 +#: js/settings.js:846 msgid "Configuration incorrect" msgstr "Configuración Incorrecta" -#: js/settings.js:795 +#: js/settings.js:855 msgid "Configuration incomplete" msgstr "Configuración incompleta" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:872 js/settings.js:881 msgid "Select groups" msgstr "Seleccionar grupos" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:875 js/settings.js:884 msgid "Select object classes" msgstr "Seleccionar la clase de objeto" -#: js/settings.js:818 +#: js/settings.js:878 msgid "Select attributes" msgstr "Seleccionar atributos" -#: js/settings.js:845 +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "La prueba de conexión fue exitosa" -#: js/settings.js:852 +#: js/settings.js:912 msgid "Connection test failed" msgstr "La prueba de conexión falló" -#: js/settings.js:861 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "¿Realmente desea eliminar la configuración actual del servidor?" -#: js/settings.js:862 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "Confirmar eliminación" @@ -147,11 +147,11 @@ msgid_plural "%s users found" msgstr[0] "Usuario %s encontrado" msgstr[1] "Usuarios %s encontrados" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:778 lib/wizard.php:790 msgid "Invalid Host" msgstr "Host inválido" -#: lib/wizard.php:952 +#: lib/wizard.php:951 msgid "Could not find the desired feature" msgstr "No se puede encontrar la función deseada." diff --git a/l10n/es_AR/core.po b/l10n/es_AR/core.po index fa5b5b88dc5..598b6b7cf18 100644 --- a/l10n/es_AR/core.po +++ b/l10n/es_AR/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -149,59 +149,59 @@ msgstr "noviembre" msgid "December" msgstr "diciembre" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Configuración" -#: js/js.js:858 +#: js/js.js:869 msgid "seconds ago" msgstr "segundos atrás" -#: js/js.js:859 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "Hace %n minuto" msgstr[1] "Hace %n minutos" -#: js/js.js:860 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Hace %n hora" msgstr[1] "Hace %n horas" -#: js/js.js:861 +#: js/js.js:872 msgid "today" msgstr "hoy" -#: js/js.js:862 +#: js/js.js:873 msgid "yesterday" msgstr "ayer" -#: js/js.js:863 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "Hace %n día" msgstr[1] "Hace %n días" -#: js/js.js:864 +#: js/js.js:875 msgid "last month" msgstr "el mes pasado" -#: js/js.js:865 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Hace %n mes" msgstr[1] "Hace %n meses" -#: js/js.js:866 +#: js/js.js:877 msgid "months ago" msgstr "meses atrás" -#: js/js.js:867 +#: js/js.js:878 msgid "last year" msgstr "el año pasado" -#: js/js.js:868 +#: js/js.js:879 msgid "years ago" msgstr "años atrás" diff --git a/l10n/es_AR/files.po b/l10n/es_AR/files.po index 00d7dc97019..85f0e087448 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-11 13:31-0500\n" -"PO-Revision-Date: 2013-12-09 12:00+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -50,12 +50,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -175,6 +180,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "Compartir" diff --git a/l10n/es_AR/lib.po b/l10n/es_AR/lib.po index 9f5fcc9a19d..6fa78e41c13 100644 --- a/l10n/es_AR/lib.po +++ b/l10n/es_AR/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -54,15 +54,15 @@ msgstr "Administración" msgid "Failed to upgrade \"%s\"." msgstr "No se pudo actualizar \"%s\"." -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "Tipo de archivo desconocido" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "Imagen inválida" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "servicios web sobre los que tenés control" @@ -71,23 +71,23 @@ msgstr "servicios web sobre los que tenés control" msgid "cannot open \"%s\"" msgstr "no se puede abrir \"%s\"" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "La descarga en ZIP está desactivada." -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Los archivos deben ser descargados de a uno." -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Volver a Archivos" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Los archivos seleccionados son demasiado grandes para generar el archivo zip." -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -173,17 +173,17 @@ msgstr "Texto" msgid "Images" msgstr "Imágenes" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s Entrá el usuario de la base de datos" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s Entrá el nombre de la base de datos." -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s no podés usar puntos en el nombre de la base de datos" @@ -204,11 +204,11 @@ msgid "MySQL username and/or password not valid" msgstr "Usuario y/o contraseña MySQL no válido" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -216,10 +216,10 @@ msgid "DB Error: \"%s\"" msgstr "Error DB: \"%s\"" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -252,7 +252,7 @@ msgstr "No fue posible establecer la conexión a Oracle" msgid "Oracle username and/or password not valid" msgstr "El nombre de usuario y/o contraseña no son válidos" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "El comando no comprendido es: \"%s\", nombre: \"%s\", contraseña: \"%s\"" @@ -332,7 +332,3 @@ msgstr "el año pasado" #: private/template/functions.php:142 msgid "years ago" msgstr "años atrás" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "Provocado por:" diff --git a/l10n/es_AR/user_ldap.po b/l10n/es_AR/user_ldap.po index 641248a61ae..4588bc43a22 100644 --- a/l10n/es_AR/user_ldap.po +++ b/l10n/es_AR/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -26,17 +26,17 @@ msgstr "Hubo un error al borrar las asignaciones." msgid "Failed to delete the server configuration" msgstr "Fallo al borrar la configuración del servidor" -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "La configuración es válida y la conexión pudo ser establecida." -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "La configuración es válida, pero el enlace falló. Por favor, comprobá la configuración del servidor y las credenciales." -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." @@ -87,43 +87,43 @@ msgstr "Éxito" msgid "Error" msgstr "Error" -#: js/settings.js:777 +#: js/settings.js:837 msgid "Configuration OK" msgstr "" -#: js/settings.js:786 +#: js/settings.js:846 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:795 +#: js/settings.js:855 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:872 js/settings.js:881 msgid "Select groups" msgstr "Seleccionar grupos" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:875 js/settings.js:884 msgid "Select object classes" msgstr "" -#: js/settings.js:818 +#: js/settings.js:878 msgid "Select attributes" msgstr "" -#: js/settings.js:845 +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "El este de conexión ha sido completado satisfactoriamente" -#: js/settings.js:852 +#: js/settings.js:912 msgid "Connection test failed" msgstr "Falló es test de conexión" -#: js/settings.js:861 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "¿Realmente desea borrar la configuración actual del servidor?" -#: js/settings.js:862 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "Confirmar borrado" @@ -141,11 +141,11 @@ msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:778 lib/wizard.php:790 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:952 +#: lib/wizard.php:951 msgid "Could not find the desired feature" msgstr "" diff --git a/l10n/es_CL/core.po b/l10n/es_CL/core.po new file mode 100644 index 00000000000..05b6eb1d9ed --- /dev/null +++ b/l10n/es_CL/core.po @@ -0,0 +1,775 @@ +# 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: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/share.php:119 ajax/share.php:198 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "" + +#: avatar/controller.php:62 +msgid "No image or file provided" +msgstr "" + +#: avatar/controller.php:81 +msgid "Unknown filetype" +msgstr "" + +#: avatar/controller.php:85 +msgid "Invalid image" +msgstr "" + +#: avatar/controller.php:115 avatar/controller.php:142 +msgid "No temporary profile picture available, try again" +msgstr "" + +#: avatar/controller.php:135 +msgid "No crop data provided" +msgstr "" + +#: js/config.php:32 +msgid "Sunday" +msgstr "" + +#: js/config.php:33 +msgid "Monday" +msgstr "" + +#: js/config.php:34 +msgid "Tuesday" +msgstr "" + +#: js/config.php:35 +msgid "Wednesday" +msgstr "" + +#: js/config.php:36 +msgid "Thursday" +msgstr "" + +#: js/config.php:37 +msgid "Friday" +msgstr "" + +#: js/config.php:38 +msgid "Saturday" +msgstr "" + +#: js/config.php:43 +msgid "January" +msgstr "" + +#: js/config.php:44 +msgid "February" +msgstr "" + +#: js/config.php:45 +msgid "March" +msgstr "" + +#: js/config.php:46 +msgid "April" +msgstr "" + +#: js/config.php:47 +msgid "May" +msgstr "" + +#: js/config.php:48 +msgid "June" +msgstr "" + +#: js/config.php:49 +msgid "July" +msgstr "" + +#: js/config.php:50 +msgid "August" +msgstr "" + +#: js/config.php:51 +msgid "September" +msgstr "" + +#: js/config.php:52 +msgid "October" +msgstr "" + +#: js/config.php:53 +msgid "November" +msgstr "" + +#: js/config.php:54 +msgid "December" +msgstr "" + +#: js/js.js:398 +msgid "Settings" +msgstr "Configuración" + +#: js/js.js:869 +msgid "seconds ago" +msgstr "" + +#: js/js.js:870 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:871 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:872 +msgid "today" +msgstr "" + +#: js/js.js:873 +msgid "yesterday" +msgstr "" + +#: js/js.js:874 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:875 +msgid "last month" +msgstr "" + +#: js/js.js:876 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:877 +msgid "months ago" +msgstr "" + +#: js/js.js:878 +msgid "last year" +msgstr "" + +#: js/js.js:879 +msgid "years ago" +msgstr "" + +#: js/oc-dialogs.js:123 +msgid "Choose" +msgstr "" + +#: js/oc-dialogs.js:146 +msgid "Error loading file picker template: {error}" +msgstr "" + +#: js/oc-dialogs.js:172 +msgid "Yes" +msgstr "" + +#: js/oc-dialogs.js:182 +msgid "No" +msgstr "" + +#: js/oc-dialogs.js:199 +msgid "Ok" +msgstr "" + +#: js/oc-dialogs.js:219 +msgid "Error loading message template: {error}" +msgstr "" + +#: js/oc-dialogs.js:347 +msgid "{count} file conflict" +msgid_plural "{count} file conflicts" +msgstr[0] "" +msgstr[1] "" + +#: js/oc-dialogs.js:361 +msgid "One file conflict" +msgstr "" + +#: js/oc-dialogs.js:367 +msgid "Which files do you want to keep?" +msgstr "" + +#: js/oc-dialogs.js:368 +msgid "" +"If you select both versions, the copied file will have a number added to its" +" name." +msgstr "" + +#: js/oc-dialogs.js:376 +msgid "Cancel" +msgstr "" + +#: js/oc-dialogs.js:386 +msgid "Continue" +msgstr "" + +#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +msgid "(all selected)" +msgstr "" + +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +msgid "({count} selected)" +msgstr "" + +#: js/oc-dialogs.js:457 +msgid "Error loading file exists template" +msgstr "" + +#: js/share.js:51 js/share.js:66 js/share.js:106 +msgid "Shared" +msgstr "" + +#: js/share.js:109 +msgid "Share" +msgstr "" + +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "" + +#: js/share.js:160 js/share.js:747 +msgid "Error while sharing" +msgstr "" + +#: js/share.js:171 +msgid "Error while unsharing" +msgstr "" + +#: js/share.js:178 +msgid "Error while changing permissions" +msgstr "" + +#: js/share.js:187 +msgid "Shared with you and the group {group} by {owner}" +msgstr "" + +#: js/share.js:189 +msgid "Shared with you by {owner}" +msgstr "" + +#: js/share.js:213 +msgid "Share with user or group …" +msgstr "" + +#: js/share.js:219 +msgid "Share link" +msgstr "" + +#: js/share.js:222 +msgid "Password protect" +msgstr "" + +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +msgid "Password" +msgstr "Clave" + +#: js/share.js:229 +msgid "Allow Public Upload" +msgstr "" + +#: js/share.js:233 +msgid "Email link to person" +msgstr "" + +#: js/share.js:234 +msgid "Send" +msgstr "" + +#: js/share.js:239 +msgid "Set expiration date" +msgstr "" + +#: js/share.js:240 +msgid "Expiration date" +msgstr "" + +#: js/share.js:275 +msgid "Share via email:" +msgstr "" + +#: js/share.js:278 +msgid "No people found" +msgstr "" + +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "" + +#: js/share.js:333 +msgid "Resharing is not allowed" +msgstr "" + +#: js/share.js:375 +msgid "Shared in {item} with {user}" +msgstr "" + +#: js/share.js:397 +msgid "Unshare" +msgstr "" + +#: js/share.js:405 +msgid "notify by email" +msgstr "" + +#: js/share.js:408 +msgid "can edit" +msgstr "" + +#: js/share.js:410 +msgid "access control" +msgstr "" + +#: js/share.js:413 +msgid "create" +msgstr "" + +#: js/share.js:416 +msgid "update" +msgstr "" + +#: js/share.js:419 +msgid "delete" +msgstr "" + +#: js/share.js:422 +msgid "share" +msgstr "" + +#: js/share.js:694 +msgid "Password protected" +msgstr "" + +#: js/share.js:707 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:719 +msgid "Error setting expiration date" +msgstr "" + +#: js/share.js:734 +msgid "Sending ..." +msgstr "" + +#: js/share.js:745 +msgid "Email sent" +msgstr "" + +#: js/share.js:769 +msgid "Warning" +msgstr "" + +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "" + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "" + +#: js/tags.js:31 +msgid "Add" +msgstr "" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "" + +#: js/update.js:8 +msgid "Please reload the page." +msgstr "" + +#: js/update.js:17 +msgid "" +"The update was unsuccessful. Please report this issue to the <a " +"href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud " +"community</a>." +msgstr "" + +#: js/update.js:21 +msgid "The update was successful. Redirecting you to ownCloud now." +msgstr "" + +#: lostpassword/controller.php:62 +#, php-format +msgid "%s password reset" +msgstr "" + +#: lostpassword/templates/email.php:2 +msgid "Use the following link to reset your password: {link}" +msgstr "" + +#: lostpassword/templates/lostpassword.php:7 +msgid "" +"The link to reset your password has been sent to your email.<br>If you do " +"not receive it within a reasonable amount of time, check your spam/junk " +"folders.<br>If it is not there ask your local administrator ." +msgstr "" + +#: lostpassword/templates/lostpassword.php:15 +msgid "Request failed!<br>Did you make sure your email/username was right?" +msgstr "" + +#: lostpassword/templates/lostpassword.php:18 +msgid "You will receive a link to reset your password via Email." +msgstr "" + +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 +msgid "Username" +msgstr "Usuario" + +#: lostpassword/templates/lostpassword.php:25 +msgid "" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" +msgstr "" + +#: lostpassword/templates/lostpassword.php:27 +msgid "Yes, I really want to reset my password now" +msgstr "" + +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" +msgstr "" + +#: lostpassword/templates/resetpassword.php:4 +msgid "Your password was reset" +msgstr "" + +#: lostpassword/templates/resetpassword.php:5 +msgid "To login page" +msgstr "" + +#: lostpassword/templates/resetpassword.php:8 +msgid "New password" +msgstr "" + +#: lostpassword/templates/resetpassword.php:11 +msgid "Reset password" +msgstr "" + +#: strings.php:5 +msgid "Personal" +msgstr "" + +#: strings.php:6 +msgid "Users" +msgstr "" + +#: strings.php:7 templates/layout.user.php:111 +msgid "Apps" +msgstr "" + +#: strings.php:8 +msgid "Admin" +msgstr "" + +#: strings.php:9 +msgid "Help" +msgstr "" + +#: tags/controller.php:22 +msgid "Error loading tags" +msgstr "" + +#: tags/controller.php:48 +msgid "Tag already exists" +msgstr "" + +#: tags/controller.php:64 +msgid "Error deleting tag(s)" +msgstr "" + +#: tags/controller.php:75 +msgid "Error tagging" +msgstr "" + +#: tags/controller.php:86 +msgid "Error untagging" +msgstr "" + +#: tags/controller.php:97 +msgid "Error favoriting" +msgstr "" + +#: tags/controller.php:108 +msgid "Error unfavoriting" +msgstr "" + +#: templates/403.php:12 +msgid "Access forbidden" +msgstr "" + +#: templates/404.php:15 +msgid "Cloud not found" +msgstr "" + +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +msgstr "" + +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" +msgstr "" + +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 +msgid "Security Warning" +msgstr "" + +#: templates/installation.php:26 +msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" +msgstr "" + +#: templates/installation.php:27 +#, php-format +msgid "Please update your PHP installation to use %s securely." +msgstr "" + +#: templates/installation.php:33 +msgid "" +"No secure random number generator is available, please enable the PHP " +"OpenSSL extension." +msgstr "" + +#: templates/installation.php:34 +msgid "" +"Without a secure random number generator an attacker may be able to predict " +"password reset tokens and take over your account." +msgstr "" + +#: templates/installation.php:40 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + +#: templates/installation.php:42 +#, php-format +msgid "" +"For information how to properly configure your server, please see the <a " +"href=\"%s\" target=\"_blank\">documentation</a>." +msgstr "" + +#: templates/installation.php:48 +msgid "Create an <strong>admin account</strong>" +msgstr "" + +#: templates/installation.php:67 +msgid "Advanced" +msgstr "" + +#: templates/installation.php:74 +msgid "Data folder" +msgstr "" + +#: templates/installation.php:86 +msgid "Configure the database" +msgstr "" + +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 +msgid "will be used" +msgstr "" + +#: templates/installation.php:149 +msgid "Database user" +msgstr "" + +#: templates/installation.php:156 +msgid "Database password" +msgstr "" + +#: templates/installation.php:161 +msgid "Database name" +msgstr "" + +#: templates/installation.php:169 +msgid "Database tablespace" +msgstr "" + +#: templates/installation.php:176 +msgid "Database host" +msgstr "" + +#: templates/installation.php:185 +msgid "Finish setup" +msgstr "" + +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "" + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please <a href=\"http://enable-javascript.com/\" target=\"_blank\">enable " +"JavaScript</a> and re-load this interface." +msgstr "" + +#: templates/layout.user.php:44 +#, php-format +msgid "%s is available. Get more information on how to update." +msgstr "" + +#: templates/layout.user.php:72 templates/singleuser.user.php:8 +msgid "Log out" +msgstr "" + +#: templates/login.php:9 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:10 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:12 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:44 +msgid "Lost your password?" +msgstr "" + +#: templates/login.php:49 +msgid "remember" +msgstr "" + +#: templates/login.php:52 +msgid "Log in" +msgstr "" + +#: templates/login.php:58 +msgid "Alternative Logins" +msgstr "" + +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " +"href=\"%s\">View it!</a><br><br>" +msgstr "" + +#: templates/singleuser.user.php:3 +msgid "This ownCloud instance is currently in single user mode." +msgstr "" + +#: templates/singleuser.user.php:4 +msgid "This means only administrators can use the instance." +msgstr "" + +#: templates/singleuser.user.php:5 templates/update.user.php:5 +msgid "" +"Contact your system administrator if this message persists or appeared " +"unexpectedly." +msgstr "" + +#: templates/singleuser.user.php:7 templates/update.user.php:6 +msgid "Thank you for your patience." +msgstr "" + +#: templates/update.admin.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" + +#: templates/update.user.php:3 +msgid "" +"This ownCloud instance is currently being updated, which may take a while." +msgstr "" + +#: templates/update.user.php:4 +msgid "Please reload this page after a short time to continue using ownCloud." +msgstr "" diff --git a/l10n/es_CL/files.po b/l10n/es_CL/files.po new file mode 100644 index 00000000000..2bb37f65f47 --- /dev/null +++ b/l10n/es_CL/files.po @@ -0,0 +1,413 @@ +# 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: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06:55+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\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/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "" + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "" + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "" + +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "" + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "" + +#: ajax/upload.php:18 ajax/upload.php:50 +msgid "Unable to set upload directory." +msgstr "" + +#: ajax/upload.php:27 +msgid "Invalid Token" +msgstr "" + +#: ajax/upload.php:64 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:71 +msgid "There is no error, the file uploaded with success" +msgstr "" + +#: ajax/upload.php:72 +msgid "" +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " +msgstr "" + +#: ajax/upload.php:74 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "" + +#: ajax/upload.php:75 +msgid "The uploaded file was only partially uploaded" +msgstr "" + +#: ajax/upload.php:76 +msgid "No file was uploaded" +msgstr "" + +#: ajax/upload.php:77 +msgid "Missing a temporary folder" +msgstr "" + +#: ajax/upload.php:78 +msgid "Failed to write to disk" +msgstr "" + +#: ajax/upload.php:96 +msgid "Not enough storage available" +msgstr "" + +#: ajax/upload.php:127 ajax/upload.php:154 +msgid "Upload failed. Could not get file info." +msgstr "" + +#: ajax/upload.php:144 +msgid "Upload failed. Could not find uploaded file" +msgstr "" + +#: ajax/upload.php:172 +msgid "Invalid directory." +msgstr "" + +#: appinfo/app.php:11 +msgid "Files" +msgstr "Archivos" + +#: js/file-upload.js:228 +msgid "Unable to upload {filename} as it is a directory or has 0 bytes" +msgstr "" + +#: js/file-upload.js:239 +msgid "Not enough space available" +msgstr "" + +#: js/file-upload.js:306 +msgid "Upload cancelled." +msgstr "" + +#: js/file-upload.js:344 +msgid "Could not get result from server." +msgstr "" + +#: js/file-upload.js:436 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/file-upload.js:523 +msgid "URL cannot be empty" +msgstr "" + +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" +msgstr "" + +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" +msgstr "" + +#: js/file-upload.js:595 +msgid "Could not create file" +msgstr "" + +#: js/file-upload.js:611 +msgid "Could not create folder" +msgstr "" + +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + +#: js/fileactions.js:125 +msgid "Share" +msgstr "" + +#: js/fileactions.js:137 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:194 +msgid "Rename" +msgstr "" + +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +msgid "Pending" +msgstr "" + +#: js/filelist.js:405 +msgid "Could not rename file" +msgstr "" + +#: js/filelist.js:539 +msgid "replaced {new_name} with {old_name}" +msgstr "" + +#: js/filelist.js:539 +msgid "undo" +msgstr "" + +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" + +#: js/filelist.js:617 +msgid "{dirs} and {files}" +msgstr "" + +#: js/filelist.js:828 js/filelist.js:866 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" + +#: js/files.js:72 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:81 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: js/files.js:93 +msgid "Your storage is full, files can not be updated or synced anymore!" +msgstr "" + +#: js/files.js:97 +msgid "Your storage is almost full ({usedSpacePercent}%)" +msgstr "" + +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "" + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "" + +#: js/files.js:118 +msgid "" +"Encryption was disabled but your files are still encrypted. Please go to " +"your personal settings to decrypt your files." +msgstr "" + +#: js/files.js:349 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" + +#: js/files.js:558 js/files.js:596 +msgid "Error moving file" +msgstr "" + +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "" + +#: js/files.js:613 templates/index.php:56 +msgid "Name" +msgstr "" + +#: js/files.js:614 templates/index.php:68 +msgid "Size" +msgstr "" + +#: js/files.js:615 templates/index.php:70 +msgid "Modified" +msgstr "" + +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "" + +#: lib/app.php:101 +#, php-format +msgid "%s could not be renamed" +msgstr "" + +#: lib/helper.php:11 templates/index.php:16 +msgid "Upload" +msgstr "Subir" + +#: 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:5 +msgid "New" +msgstr "" + +#: templates/index.php:8 +msgid "New text file" +msgstr "" + +#: templates/index.php:8 +msgid "Text file" +msgstr "" + +#: templates/index.php:10 +msgid "New folder" +msgstr "" + +#: templates/index.php:10 +msgid "Folder" +msgstr "" + +#: templates/index.php:12 +msgid "From link" +msgstr "" + +#: templates/index.php:29 +msgid "Deleted files" +msgstr "" + +#: templates/index.php:34 +msgid "Cancel upload" +msgstr "" + +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" +msgstr "" + +#: templates/index.php:45 +msgid "Nothing in here. Upload something!" +msgstr "" + +#: templates/index.php:62 +msgid "Download" +msgstr "" + +#: templates/index.php:73 templates/index.php:74 +msgid "Delete" +msgstr "" + +#: templates/index.php:86 +msgid "Upload too large" +msgstr "" + +#: templates/index.php:88 +msgid "" +"The files you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "" + +#: templates/index.php:93 +msgid "Files are being scanned, please wait." +msgstr "" + +#: templates/index.php:96 +msgid "Current scanning" +msgstr "" + +#: templates/upgrade.php:2 +msgid "Upgrading filesystem cache..." +msgstr "" diff --git a/l10n/es_CL/files_encryption.po b/l10n/es_CL/files_encryption.po new file mode 100644 index 00000000000..27a1d9e6e5a --- /dev/null +++ b/l10n/es_CL/files_encryption.po @@ -0,0 +1,201 @@ +# 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: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-16 14:34+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/adminrecovery.php:29 +msgid "Recovery key successfully enabled" +msgstr "" + +#: ajax/adminrecovery.php:34 +msgid "" +"Could not enable recovery key. Please check your recovery key password!" +msgstr "" + +#: ajax/adminrecovery.php:48 +msgid "Recovery key successfully disabled" +msgstr "" + +#: ajax/adminrecovery.php:53 +msgid "" +"Could not disable recovery key. Please check your recovery key password!" +msgstr "" + +#: ajax/changeRecoveryPassword.php:49 +msgid "Password successfully changed." +msgstr "" + +#: ajax/changeRecoveryPassword.php:51 +msgid "Could not change the password. Maybe the old password was not correct." +msgstr "" + +#: ajax/updatePrivateKeyPassword.php:52 +msgid "Private key password successfully updated." +msgstr "" + +#: ajax/updatePrivateKeyPassword.php:54 +msgid "" +"Could not update the private key password. Maybe the old password was not " +"correct." +msgstr "" + +#: files/error.php:12 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:16 +#, php-format +msgid "" +"Your private key is not valid! Likely your password was changed outside of " +"%s (e.g. your corporate directory). You can update your private key password" +" in your personal settings to recover access to your encrypted files." +msgstr "" + +#: files/error.php:19 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:22 files/error.php:27 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + +#: hooks/hooks.php:59 +msgid "Missing requirements." +msgstr "" + +#: hooks/hooks.php:60 +msgid "" +"Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " +"together with the PHP extension is enabled and configured properly. For now," +" the encryption app has been disabled." +msgstr "" + +#: hooks/hooks.php:278 +msgid "Following users are not set up for encryption:" +msgstr "" + +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." +msgstr "" + +#: js/settings-admin.js:13 +msgid "Saving..." +msgstr "" + +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " +msgstr "" + +#: templates/invalid_private_key.php:8 +msgid "personal settings" +msgstr "" + +#: templates/settings-admin.php:4 templates/settings-personal.php:3 +msgid "Encryption" +msgstr "" + +#: templates/settings-admin.php:7 +msgid "" +"Enable recovery key (allow to recover users files in case of password loss):" +msgstr "" + +#: templates/settings-admin.php:11 +msgid "Recovery key password" +msgstr "" + +#: templates/settings-admin.php:14 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:21 templates/settings-personal.php:51 +msgid "Enabled" +msgstr "" + +#: templates/settings-admin.php:29 templates/settings-personal.php:59 +msgid "Disabled" +msgstr "" + +#: templates/settings-admin.php:34 +msgid "Change recovery key password:" +msgstr "" + +#: templates/settings-admin.php:40 +msgid "Old Recovery key password" +msgstr "" + +#: templates/settings-admin.php:47 +msgid "New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:53 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:58 +msgid "Change Password" +msgstr "" + +#: templates/settings-personal.php:9 +msgid "Your private key password no longer match your log-in password:" +msgstr "" + +#: templates/settings-personal.php:12 +msgid "Set your old private key password to your current log-in password." +msgstr "" + +#: templates/settings-personal.php:14 +msgid "" +" If you don't remember your old password you can ask your administrator to " +"recover your files." +msgstr "" + +#: templates/settings-personal.php:22 +msgid "Old log-in password" +msgstr "" + +#: templates/settings-personal.php:28 +msgid "Current log-in password" +msgstr "" + +#: templates/settings-personal.php:33 +msgid "Update Private Key Password" +msgstr "" + +#: templates/settings-personal.php:42 +msgid "Enable password recovery:" +msgstr "" + +#: templates/settings-personal.php:44 +msgid "" +"Enabling this option will allow you to reobtain access to your encrypted " +"files in case of password loss" +msgstr "" + +#: templates/settings-personal.php:60 +msgid "File recovery settings updated" +msgstr "" + +#: templates/settings-personal.php:61 +msgid "Could not update file recovery" +msgstr "" diff --git a/l10n/es_CL/files_external.po b/l10n/es_CL/files_external.po new file mode 100644 index 00000000000..9537ed24684 --- /dev/null +++ b/l10n/es_CL/files_external.po @@ -0,0 +1,123 @@ +# 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: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-16 14:34+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +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:86 +msgid "Grant access" +msgstr "" + +#: js/dropbox.js:101 +msgid "Please provide a valid Dropbox app key and secret." +msgstr "" + +#: js/google.js:42 js/google.js:121 +msgid "Error configuring Google Drive storage" +msgstr "" + +#: lib/config.php:467 +msgid "" +"<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares " +"is not possible. Please ask your system administrator to install it." +msgstr "" + +#: lib/config.php:471 +msgid "" +"<b>Warning:</b> 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 "" + +#: lib/config.php:474 +msgid "" +"<b>Warning:</b> The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive 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 "" + +#: 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/es_CL/files_sharing.po b/l10n/es_CL/files_sharing.po new file mode 100644 index 00000000000..a4836e6eea7 --- /dev/null +++ b/l10n/es_CL/files_sharing.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: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-17 16:42-0500\n" +"PO-Revision-Date: 2013-12-17 15:30+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "" + +#: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:10 +msgid "Password" +msgstr "Clave" + +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "" + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "" + +#: templates/public.php:18 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "" + +#: templates/public.php:21 +#, php-format +msgid "%s shared the file %s with you" +msgstr "" + +#: templates/public.php:29 templates/public.php:95 +msgid "Download" +msgstr "" + +#: templates/public.php:46 templates/public.php:49 +msgid "Upload" +msgstr "Subir" + +#: templates/public.php:59 +msgid "Cancel upload" +msgstr "" + +#: templates/public.php:92 +msgid "No preview available for" +msgstr "" + +#: templates/public.php:99 +msgid "Direct link" +msgstr "" diff --git a/l10n/es_CL/files_trashbin.po b/l10n/es_CL/files_trashbin.po new file mode 100644 index 00000000000..1e0643be9b2 --- /dev/null +++ b/l10n/es_CL/files_trashbin.po @@ -0,0 +1,60 @@ +# 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: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-16 14:34+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/delete.php:63 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:43 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/trash.js:18 js/trash.js:45 js/trash.js:88 js/trash.js:142 +msgid "Error" +msgstr "" + +#: lib/trashbin.php:905 lib/trashbin.php:907 +msgid "restored" +msgstr "" + +#: templates/index.php:7 +msgid "Nothing in here. Your trash bin is empty!" +msgstr "" + +#: templates/index.php:20 +msgid "Name" +msgstr "" + +#: templates/index.php:23 templates/index.php:25 +msgid "Restore" +msgstr "" + +#: templates/index.php:31 +msgid "Deleted" +msgstr "" + +#: templates/index.php:34 templates/index.php:35 +msgid "Delete" +msgstr "" + +#: templates/part.breadcrumb.php:8 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/es_CL/files_versions.po b/l10n/es_CL/files_versions.po new file mode 100644 index 00000000000..96a6427ad99 --- /dev/null +++ b/l10n/es_CL/files_versions.po @@ -0,0 +1,43 @@ +# 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: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-16 14:34+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/rollbackVersion.php:13 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: js/versions.js:14 +msgid "Versions" +msgstr "" + +#: js/versions.js:60 +msgid "Failed to revert {file} to revision {timestamp}." +msgstr "" + +#: js/versions.js:86 +msgid "More versions..." +msgstr "" + +#: js/versions.js:123 +msgid "No other versions available" +msgstr "" + +#: js/versions.js:154 +msgid "Restore" +msgstr "" diff --git a/l10n/es_CL/lib.po b/l10n/es_CL/lib.po new file mode 100644 index 00000000000..a6cad8d93cb --- /dev/null +++ b/l10n/es_CL/lib.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: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: private/app.php:243 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: private/app.php:255 +msgid "No app name specified" +msgstr "" + +#: private/app.php:360 +msgid "Help" +msgstr "" + +#: private/app.php:373 +msgid "Personal" +msgstr "" + +#: private/app.php:384 +msgid "Settings" +msgstr "Configuración" + +#: private/app.php:396 +msgid "Users" +msgstr "" + +#: private/app.php:409 +msgid "Admin" +msgstr "" + +#: private/app.php:873 +#, php-format +msgid "Failed to upgrade \"%s\"." +msgstr "" + +#: private/avatar.php:66 +msgid "Unknown filetype" +msgstr "" + +#: private/avatar.php:71 +msgid "Invalid image" +msgstr "" + +#: private/defaults.php:34 +msgid "web services under your control" +msgstr "" + +#: private/files.php:66 private/files.php:98 +#, php-format +msgid "cannot open \"%s\"" +msgstr "" + +#: private/files.php:231 +msgid "ZIP download is turned off." +msgstr "" + +#: private/files.php:232 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: private/files.php:233 private/files.php:261 +msgid "Back to Files" +msgstr "" + +#: private/files.php:258 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: private/files.php:259 +msgid "" +"Please download the files separately in smaller chunks or kindly ask your " +"administrator." +msgstr "" + +#: private/installer.php:63 +msgid "No source specified when installing app" +msgstr "" + +#: private/installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: private/installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: private/installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: private/installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: private/installer.php:125 +msgid "App does not provide an info.xml file" +msgstr "" + +#: private/installer.php:131 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: private/installer.php:140 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: private/installer.php:146 +msgid "" +"App can't be installed because it contains the <shipped>true</shipped> tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: private/installer.php:159 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: private/installer.php:169 +msgid "App directory already exists" +msgstr "" + +#: private/installer.php:182 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + +#: private/json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: private/json.php:39 private/json.php:62 private/json.php:73 +msgid "Authentication error" +msgstr "" + +#: private/json.php:51 +msgid "Token expired. Please reload page." +msgstr "" + +#: private/search/provider/file.php:18 private/search/provider/file.php:36 +msgid "Files" +msgstr "Archivos" + +#: private/search/provider/file.php:27 private/search/provider/file.php:34 +msgid "Text" +msgstr "" + +#: private/search/provider/file.php:30 +msgid "Images" +msgstr "" + +#: private/setup/abstractdatabase.php:26 +#, php-format +msgid "%s enter the database username." +msgstr "" + +#: private/setup/abstractdatabase.php:29 +#, php-format +msgid "%s enter the database name." +msgstr "" + +#: private/setup/abstractdatabase.php:32 +#, php-format +msgid "%s you may not use dots in the database name" +msgstr "" + +#: private/setup/mssql.php:20 +#, php-format +msgid "MS SQL username and/or password not valid: %s" +msgstr "" + +#: private/setup/mssql.php:21 private/setup/mysql.php:13 +#: private/setup/oci.php:114 private/setup/postgresql.php:24 +#: private/setup/postgresql.php:70 +msgid "You need to enter either an existing account or the administrator." +msgstr "" + +#: private/setup/mysql.php:12 +msgid "MySQL username and/or password not valid" +msgstr "" + +#: private/setup/mysql.php:67 private/setup/oci.php:54 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 +#: private/setup/postgresql.php:98 private/setup/postgresql.php:115 +#: private/setup/postgresql.php:125 private/setup/postgresql.php:134 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: private/setup/mysql.php:68 private/setup/oci.php:55 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 +#, php-format +msgid "Offending command was: \"%s\"" +msgstr "" + +#: private/setup/mysql.php:85 +#, php-format +msgid "MySQL user '%s'@'localhost' exists already." +msgstr "" + +#: private/setup/mysql.php:86 +msgid "Drop this user from MySQL" +msgstr "" + +#: private/setup/mysql.php:91 +#, php-format +msgid "MySQL user '%s'@'%%' already exists" +msgstr "" + +#: private/setup/mysql.php:92 +msgid "Drop this user from MySQL." +msgstr "" + +#: private/setup/oci.php:34 +msgid "Oracle connection could not be established" +msgstr "" + +#: private/setup/oci.php:41 private/setup/oci.php:113 +msgid "Oracle username and/or password not valid" +msgstr "" + +#: private/setup/oci.php:170 private/setup/oci.php:202 +#, php-format +msgid "Offending command was: \"%s\", name: %s, password: %s" +msgstr "" + +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +msgid "PostgreSQL username and/or password not valid" +msgstr "" + +#: private/setup.php:28 +msgid "Set an admin username." +msgstr "" + +#: private/setup.php:31 +msgid "Set an admin password." +msgstr "" + +#: private/setup.php:195 +msgid "" +"Your web server is not yet properly setup to allow files synchronization " +"because the WebDAV interface seems to be broken." +msgstr "" + +#: private/setup.php:196 +#, php-format +msgid "Please double check the <a href='%s'>installation guides</a>." +msgstr "" + +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" + +#: private/template/functions.php:130 +msgid "seconds ago" +msgstr "" + +#: private/template/functions.php:131 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:132 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:133 +msgid "today" +msgstr "" + +#: private/template/functions.php:134 +msgid "yesterday" +msgstr "" + +#: private/template/functions.php:136 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:138 +msgid "last month" +msgstr "" + +#: private/template/functions.php:139 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:141 +msgid "last year" +msgstr "" + +#: private/template/functions.php:142 +msgid "years ago" +msgstr "" diff --git a/l10n/es_CL/settings.po b/l10n/es_CL/settings.po new file mode 100644 index 00000000000..75d4de7ece4 --- /dev/null +++ b/l10n/es_CL/settings.po @@ -0,0 +1,668 @@ +# 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: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-17 16:42-0500\n" +"PO-Revision-Date: 2013-12-17 15:30+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/apps/ocs.php:20 +msgid "Unable to load list from App Store" +msgstr "" + +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/togglegroups.php:20 changepassword/controller.php:55 +msgid "Authentication error" +msgstr "" + +#: ajax/changedisplayname.php:31 +msgid "Your full name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 +msgid "Unable to change full name" +msgstr "" + +#: ajax/creategroup.php:10 +msgid "Group already exists" +msgstr "" + +#: ajax/creategroup.php:19 +msgid "Unable to add group" +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:25 +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 "" + +#: changepassword/controller.php:20 +msgid "Wrong password" +msgstr "" + +#: changepassword/controller.php:42 +msgid "No user supplied" +msgstr "" + +#: changepassword/controller.php:74 +msgid "" +"Please provide an admin recovery password, otherwise all user data will be " +"lost" +msgstr "" + +#: changepassword/controller.php:79 +msgid "" +"Wrong admin recovery password. Please check the password and try again." +msgstr "" + +#: changepassword/controller.php:87 +msgid "" +"Back-end doesn't support password change, but the users encryption key was " +"successfully updated." +msgstr "" + +#: changepassword/controller.php:92 changepassword/controller.php:103 +msgid "Unable to change password" +msgstr "" + +#: js/apps.js:43 +msgid "Update to {appversion}" +msgstr "" + +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +msgid "Disable" +msgstr "" + +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +msgid "Enable" +msgstr "" + +#: js/apps.js:71 +msgid "Please wait...." +msgstr "" + +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +msgid "Error while disabling app" +msgstr "" + +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:125 +msgid "Updating...." +msgstr "" + +#: js/apps.js:128 +msgid "Error while updating app" +msgstr "" + +#: js/apps.js:128 +msgid "Error" +msgstr "" + +#: js/apps.js:129 templates/apps.php:43 +msgid "Update" +msgstr "" + +#: js/apps.js:132 +msgid "Updated" +msgstr "" + +#: js/personal.js:220 +msgid "Select a profile picture" +msgstr "" + +#: js/personal.js:266 +msgid "Decrypting files... Please wait, this can take some time." +msgstr "" + +#: js/personal.js:287 +msgid "Saving..." +msgstr "" + +#: js/users.js:47 +msgid "deleted" +msgstr "" + +#: js/users.js:47 +msgid "undo" +msgstr "" + +#: js/users.js:79 +msgid "Unable to remove user" +msgstr "" + +#: js/users.js:95 templates/users.php:26 templates/users.php:90 +#: templates/users.php:118 +msgid "Groups" +msgstr "" + +#: js/users.js:100 templates/users.php:92 templates/users.php:130 +msgid "Group Admin" +msgstr "" + +#: js/users.js:123 templates/users.php:170 +msgid "Delete" +msgstr "" + +#: js/users.js:284 +msgid "add group" +msgstr "" + +#: js/users.js:454 +msgid "A valid username must be provided" +msgstr "" + +#: js/users.js:455 js/users.js:461 js/users.js:476 +msgid "Error creating user" +msgstr "" + +#: js/users.js:460 +msgid "A valid password must be provided" +msgstr "" + +#: js/users.js:484 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "" + +#: personal.php:45 personal.php:46 +msgid "__language_name__" +msgstr "" + +#: templates/admin.php:8 +msgid "Everything (fatal issues, errors, warnings, info, debug)" +msgstr "" + +#: templates/admin.php:9 +msgid "Info, warnings, errors and fatal issues" +msgstr "" + +#: templates/admin.php:10 +msgid "Warnings, errors and fatal issues" +msgstr "" + +#: templates/admin.php:11 +msgid "Errors and fatal issues" +msgstr "" + +#: templates/admin.php:12 +msgid "Fatal issues only" +msgstr "" + +#: templates/admin.php:22 templates/admin.php:36 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:25 +#, php-format +msgid "" +"You are accessing %s via HTTP. We strongly suggest you configure your server" +" to require using HTTPS instead." +msgstr "" + +#: templates/admin.php:39 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file 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:50 +msgid "Setup Warning" +msgstr "" + +#: templates/admin.php:53 +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:54 +#, php-format +msgid "Please double check the <a href=\"%s\">installation guides</a>." +msgstr "" + +#: templates/admin.php:65 +msgid "Module 'fileinfo' missing" +msgstr "" + +#: templates/admin.php:68 +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:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 +msgid "Locale not working" +msgstr "" + +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:106 +#, php-format +msgid "" +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" + +#: templates/admin.php:118 +msgid "Internet connection not working" +msgstr "" + +#: templates/admin.php:121 +msgid "" +"This 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." +msgstr "" + +#: templates/admin.php:135 +msgid "Cron" +msgstr "" + +#: templates/admin.php:142 +msgid "Execute one task with each page loaded" +msgstr "" + +#: templates/admin.php:150 +msgid "" +"cron.php is registered at a webcron service to call cron.php every 15 " +"minutes over http." +msgstr "" + +#: templates/admin.php:158 +msgid "Use systems cron service to call the cron.php file every 15 minutes." +msgstr "" + +#: templates/admin.php:163 +msgid "Sharing" +msgstr "" + +#: templates/admin.php:169 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:170 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:177 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:178 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:186 +msgid "Allow public uploads" +msgstr "" + +#: templates/admin.php:187 +msgid "" +"Allow users to enable others to upload into their publicly shared folders" +msgstr "" + +#: templates/admin.php:195 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:196 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:203 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:206 +msgid "Allow users to only share with users in their groups" +msgstr "" + +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:214 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:221 +msgid "Security" +msgstr "" + +#: templates/admin.php:234 +msgid "Enforce HTTPS" +msgstr "" + +#: templates/admin.php:236 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." +msgstr "" + +#: templates/admin.php:242 +#, php-format +msgid "" +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." +msgstr "" + +#: templates/admin.php:254 +msgid "Log" +msgstr "" + +#: templates/admin.php:255 +msgid "Log level" +msgstr "" + +#: templates/admin.php:287 +msgid "More" +msgstr "" + +#: templates/admin.php:288 +msgid "Less" +msgstr "" + +#: templates/admin.php:294 templates/personal.php:173 +msgid "Version" +msgstr "" + +#: templates/admin.php:298 templates/personal.php:176 +msgid "" +"Developed by the <a href=\"http://ownCloud.org/contact\" " +"target=\"_blank\">ownCloud community</a>, the <a " +"href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is " +"licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" " +"target=\"_blank\"><abbr title=\"Affero General Public " +"License\">AGPL</abbr></a>." +msgstr "" + +#: templates/apps.php:13 +msgid "Add your App" +msgstr "" + +#: templates/apps.php:28 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:33 +msgid "Select an App" +msgstr "" + +#: templates/apps.php:39 +msgid "See application page at apps.owncloud.com" +msgstr "" + +#: templates/apps.php:41 +msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" +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 +msgid "Get the apps to sync your files" +msgstr "" + +#: templates/personal.php:19 +msgid "Show First Run Wizard again" +msgstr "" + +#: templates/personal.php:27 +#, php-format +msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>" +msgstr "" + +#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +msgid "Password" +msgstr "Clave" + +#: templates/personal.php:40 +msgid "Your password was changed" +msgstr "" + +#: templates/personal.php:41 +msgid "Unable to change your password" +msgstr "" + +#: templates/personal.php:42 +msgid "Current password" +msgstr "" + +#: templates/personal.php:44 +msgid "New password" +msgstr "" + +#: templates/personal.php:46 +msgid "Change password" +msgstr "" + +#: templates/personal.php:58 templates/users.php:88 +msgid "Full Name" +msgstr "" + +#: templates/personal.php:73 +msgid "Email" +msgstr "" + +#: templates/personal.php:75 +msgid "Your email address" +msgstr "" + +#: templates/personal.php:76 +msgid "Fill in an email address to enable password recovery" +msgstr "" + +#: templates/personal.php:86 +msgid "Profile picture" +msgstr "" + +#: templates/personal.php:91 +msgid "Upload new" +msgstr "" + +#: templates/personal.php:93 +msgid "Select new from Files" +msgstr "" + +#: templates/personal.php:94 +msgid "Remove image" +msgstr "" + +#: templates/personal.php:95 +msgid "Either png or jpg. Ideally square but you will be able to crop it." +msgstr "" + +#: templates/personal.php:97 +msgid "Your avatar is provided by your original account." +msgstr "" + +#: templates/personal.php:101 +msgid "Abort" +msgstr "" + +#: templates/personal.php:102 +msgid "Choose as profile image" +msgstr "" + +#: templates/personal.php:110 templates/personal.php:111 +msgid "Language" +msgstr "" + +#: templates/personal.php:130 +msgid "Help translate" +msgstr "" + +#: templates/personal.php:137 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:139 +#, php-format +msgid "" +"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via " +"WebDAV</a>" +msgstr "" + +#: templates/personal.php:150 +msgid "Encryption" +msgstr "" + +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" +msgstr "" + +#: templates/personal.php:158 +msgid "Log-in password" +msgstr "" + +#: templates/personal.php:163 +msgid "Decrypt all Files" +msgstr "" + +#: templates/users.php:21 +msgid "Login Name" +msgstr "" + +#: templates/users.php:30 +msgid "Create" +msgstr "" + +#: templates/users.php:36 +msgid "Admin Recovery Password" +msgstr "" + +#: templates/users.php:37 templates/users.php:38 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:42 +msgid "Default Storage" +msgstr "" + +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "" + +#: templates/users.php:48 templates/users.php:148 +msgid "Unlimited" +msgstr "" + +#: templates/users.php:66 templates/users.php:163 +msgid "Other" +msgstr "" + +#: templates/users.php:87 +msgid "Username" +msgstr "Usuario" + +#: templates/users.php:94 +msgid "Storage" +msgstr "" + +#: templates/users.php:108 +msgid "change full name" +msgstr "" + +#: templates/users.php:112 +msgid "set new password" +msgstr "" + +#: templates/users.php:143 +msgid "Default" +msgstr "" diff --git a/l10n/es_CL/user_ldap.po b/l10n/es_CL/user_ldap.po new file mode 100644 index 00000000000..d7d15250941 --- /dev/null +++ b/l10n/es_CL/user_ldap.po @@ -0,0 +1,513 @@ +# 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: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-17 16:42-0500\n" +"PO-Revision-Date: 2013-12-17 15:30+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/clearMappings.php:34 +msgid "Failed to clear the mappings." +msgstr "" + +#: ajax/deleteConfiguration.php:34 +msgid "Failed to delete the server configuration" +msgstr "" + +#: ajax/testConfiguration.php:39 +msgid "The configuration is valid and the connection could be established!" +msgstr "" + +#: ajax/testConfiguration.php:42 +msgid "" +"The configuration is valid, but the Bind failed. Please check the server " +"settings and credentials." +msgstr "" + +#: ajax/testConfiguration.php:46 +msgid "" +"The configuration is invalid. Please have a look at the logs for further " +"details." +msgstr "" + +#: ajax/wizard.php:32 +msgid "No action specified" +msgstr "" + +#: ajax/wizard.php:38 +msgid "No configuration specified" +msgstr "" + +#: ajax/wizard.php:81 +msgid "No data specified" +msgstr "" + +#: ajax/wizard.php:89 +#, php-format +msgid " Could not set configuration %s" +msgstr "" + +#: js/settings.js:67 +msgid "Deletion failed" +msgstr "" + +#: js/settings.js:83 +msgid "Take over settings from recent server configuration?" +msgstr "" + +#: js/settings.js:84 +msgid "Keep settings?" +msgstr "" + +#: js/settings.js:99 +msgid "Cannot add server configuration" +msgstr "" + +#: js/settings.js:127 +msgid "mappings cleared" +msgstr "" + +#: js/settings.js:128 +msgid "Success" +msgstr "" + +#: js/settings.js:133 +msgid "Error" +msgstr "" + +#: js/settings.js:837 +msgid "Configuration OK" +msgstr "" + +#: js/settings.js:846 +msgid "Configuration incorrect" +msgstr "" + +#: js/settings.js:855 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:872 js/settings.js:881 +msgid "Select groups" +msgstr "" + +#: js/settings.js:875 js/settings.js:884 +msgid "Select object classes" +msgstr "" + +#: js/settings.js:878 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:905 +msgid "Connection test succeeded" +msgstr "" + +#: js/settings.js:912 +msgid "Connection test failed" +msgstr "" + +#: js/settings.js:921 +msgid "Do you really want to delete the current Server Configuration?" +msgstr "" + +#: js/settings.js:922 +msgid "Confirm Deletion" +msgstr "" + +#: lib/wizard.php:79 lib/wizard.php:93 +#, php-format +msgid "%s group found" +msgid_plural "%s groups found" +msgstr[0] "" +msgstr[1] "" + +#: lib/wizard.php:122 +#, php-format +msgid "%s user found" +msgid_plural "%s users found" +msgstr[0] "" +msgstr[1] "" + +#: lib/wizard.php:778 lib/wizard.php:790 +msgid "Invalid Host" +msgstr "" + +#: lib/wizard.php:951 +msgid "Could not find the desired feature" +msgstr "" + +#: templates/part.settingcontrols.php:2 +msgid "Save" +msgstr "" + +#: templates/part.settingcontrols.php:4 +msgid "Test Configuration" +msgstr "" + +#: templates/part.settingcontrols.php:10 templates/part.wizardcontrols.php:14 +msgid "Help" +msgstr "" + +#: templates/part.wizard-groupfilter.php:4 +#, php-format +msgid "Limit the access to %s to groups meeting this criteria:" +msgstr "" + +#: templates/part.wizard-groupfilter.php:8 +#: templates/part.wizard-userfilter.php:8 +msgid "only those object classes:" +msgstr "" + +#: templates/part.wizard-groupfilter.php:17 +#: templates/part.wizard-userfilter.php:17 +msgid "only from those groups:" +msgstr "" + +#: templates/part.wizard-groupfilter.php:25 +#: templates/part.wizard-loginfilter.php:32 +#: templates/part.wizard-userfilter.php:25 +msgid "Edit raw filter instead" +msgstr "" + +#: templates/part.wizard-groupfilter.php:30 +#: templates/part.wizard-loginfilter.php:37 +#: templates/part.wizard-userfilter.php:30 +msgid "Raw LDAP filter" +msgstr "" + +#: templates/part.wizard-groupfilter.php:31 +#, php-format +msgid "" +"The filter specifies which LDAP groups shall have access to the %s instance." +msgstr "" + +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" +msgstr "" + +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" +msgstr "" + +#: templates/part.wizard-loginfilter.php:8 +msgid "LDAP Username:" +msgstr "" + +#: templates/part.wizard-loginfilter.php:16 +msgid "LDAP Email Address:" +msgstr "" + +#: templates/part.wizard-loginfilter.php:24 +msgid "Other Attributes:" +msgstr "" + +#: templates/part.wizard-loginfilter.php:38 +#, php-format +msgid "" +"Defines the filter to apply, when login is attempted. %%uid replaces the " +"username in the login action. Example: \"uid=%%uid\"" +msgstr "" + +#: templates/part.wizard-server.php:18 +msgid "Add Server Configuration" +msgstr "" + +#: templates/part.wizard-server.php:30 +msgid "Host" +msgstr "" + +#: templates/part.wizard-server.php:31 +msgid "" +"You can omit the protocol, except you require SSL. Then start with ldaps://" +msgstr "" + +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "" + +#: templates/part.wizard-server.php:44 +msgid "User DN" +msgstr "" + +#: templates/part.wizard-server.php:45 +msgid "" +"The DN of the client user with which the bind shall be done, e.g. " +"uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " +"empty." +msgstr "" + +#: templates/part.wizard-server.php:52 +msgid "Password" +msgstr "Clave" + +#: templates/part.wizard-server.php:53 +msgid "For anonymous access, leave DN and Password empty." +msgstr "" + +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" +msgstr "" + +#: templates/part.wizard-server.php:61 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "" + +#: templates/part.wizard-userfilter.php:4 +#, php-format +msgid "Limit the access to %s to users meeting this criteria:" +msgstr "" + +#: templates/part.wizard-userfilter.php:31 +#, php-format +msgid "" +"The filter specifies which LDAP users shall have access to the %s instance." +msgstr "" + +#: templates/part.wizard-userfilter.php:38 +msgid "users found" +msgstr "" + +#: templates/part.wizardcontrols.php:5 +msgid "Back" +msgstr "" + +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "" + +#: templates/settings.php:11 +msgid "" +"<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." +msgstr "" + +#: templates/settings.php:14 +msgid "" +"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "" + +#: templates/settings.php:20 +msgid "Connection Settings" +msgstr "" + +#: templates/settings.php:22 +msgid "Configuration Active" +msgstr "" + +#: templates/settings.php:22 +msgid "When unchecked, this configuration will be skipped." +msgstr "" + +#: templates/settings.php:23 +msgid "Backup (Replica) Host" +msgstr "" + +#: templates/settings.php:23 +msgid "" +"Give an optional backup host. It must be a replica of the main LDAP/AD " +"server." +msgstr "" + +#: templates/settings.php:24 +msgid "Backup (Replica) Port" +msgstr "" + +#: templates/settings.php:25 +msgid "Disable Main Server" +msgstr "" + +#: templates/settings.php:25 +msgid "Only connect to the replica server." +msgstr "" + +#: templates/settings.php:26 +msgid "Case insensitve LDAP server (Windows)" +msgstr "" + +#: templates/settings.php:27 +msgid "Turn off SSL certificate validation." +msgstr "" + +#: templates/settings.php:27 +#, php-format +msgid "" +"Not recommended, use it for testing only! If connection only works with this" +" option, import the LDAP server's SSL certificate in your %s server." +msgstr "" + +#: templates/settings.php:28 +msgid "Cache Time-To-Live" +msgstr "" + +#: templates/settings.php:28 +msgid "in seconds. A change empties the cache." +msgstr "" + +#: templates/settings.php:30 +msgid "Directory Settings" +msgstr "" + +#: templates/settings.php:32 +msgid "User Display Name Field" +msgstr "" + +#: templates/settings.php:32 +msgid "The LDAP attribute to use to generate the user's display name." +msgstr "" + +#: templates/settings.php:33 +msgid "Base User Tree" +msgstr "" + +#: templates/settings.php:33 +msgid "One User Base DN per line" +msgstr "" + +#: templates/settings.php:34 +msgid "User Search Attributes" +msgstr "" + +#: templates/settings.php:34 templates/settings.php:37 +msgid "Optional; one attribute per line" +msgstr "" + +#: templates/settings.php:35 +msgid "Group Display Name Field" +msgstr "" + +#: templates/settings.php:35 +msgid "The LDAP attribute to use to generate the groups's display name." +msgstr "" + +#: templates/settings.php:36 +msgid "Base Group Tree" +msgstr "" + +#: templates/settings.php:36 +msgid "One Group Base DN per line" +msgstr "" + +#: templates/settings.php:37 +msgid "Group Search Attributes" +msgstr "" + +#: templates/settings.php:38 +msgid "Group-Member association" +msgstr "" + +#: templates/settings.php:40 +msgid "Special Attributes" +msgstr "" + +#: templates/settings.php:42 +msgid "Quota Field" +msgstr "" + +#: templates/settings.php:43 +msgid "Quota Default" +msgstr "" + +#: templates/settings.php:43 +msgid "in bytes" +msgstr "" + +#: templates/settings.php:44 +msgid "Email Field" +msgstr "" + +#: templates/settings.php:45 +msgid "User Home Folder Naming Rule" +msgstr "" + +#: templates/settings.php:45 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:51 +msgid "Internal Username" +msgstr "" + +#: templates/settings.php:52 +msgid "" +"By default the internal username will be created from the UUID attribute. It" +" makes sure that the username is unique and characters do not need to be " +"converted. The internal username has the restriction that only these " +"characters are allowed: [ a-zA-Z0-9_.@- ]. Other characters are replaced " +"with their ASCII correspondence or simply omitted. On collisions a number " +"will be added/increased. The internal username is used to identify a user " +"internally. It is also the default name for the user home folder. It is also" +" a part of remote URLs, for instance for all *DAV services. With this " +"setting, the default behavior can be overridden. To achieve a similar " +"behavior as before ownCloud 5 enter the user display name attribute in the " +"following field. Leave it empty for default behavior. Changes will have " +"effect only on newly mapped (added) LDAP users." +msgstr "" + +#: templates/settings.php:53 +msgid "Internal Username Attribute:" +msgstr "" + +#: templates/settings.php:54 +msgid "Override UUID detection" +msgstr "" + +#: templates/settings.php:55 +msgid "" +"By default, the UUID attribute is automatically detected. The UUID attribute" +" is used to doubtlessly identify LDAP users and groups. Also, the internal " +"username will be created based on the UUID, if not specified otherwise " +"above. You can override the setting and pass an attribute of your choice. " +"You must make sure that the attribute of your choice can be fetched for both" +" users and groups and it is unique. Leave it empty for default behavior. " +"Changes will have effect only on newly mapped (added) LDAP users and groups." +msgstr "" + +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" +msgstr "" + +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" +msgstr "" + +#: templates/settings.php:58 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:59 +msgid "" +"Usernames are used to store and assign (meta) data. In order to precisely " +"identify and recognize users, each LDAP user will have a internal username. " +"This requires a mapping from username to LDAP user. The created username is " +"mapped to the UUID of the LDAP user. Additionally the DN is cached as well " +"to reduce LDAP interaction, but it is not used for identification. If the DN" +" changes, the changes will be found. The internal username is used all over." +" Clearing the mappings will have leftovers everywhere. Clearing the mappings" +" is not configuration sensitive, it affects all LDAP configurations! Never " +"clear the mappings in a production environment, only in a testing or " +"experimental stage." +msgstr "" + +#: templates/settings.php:60 +msgid "Clear Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:60 +msgid "Clear Groupname-LDAP Group Mapping" +msgstr "" diff --git a/l10n/es_CL/user_webdavauth.po b/l10n/es_CL/user_webdavauth.po new file mode 100644 index 00000000000..80f00766160 --- /dev/null +++ b/l10n/es_CL/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: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-16 14:34+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "" + +#: templates/settings.php:4 +msgid "Address: " +msgstr "" + +#: templates/settings.php:7 +msgid "" +"The user credentials will be sent to this address. 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/es_MX/core.po b/l10n/es_MX/core.po index 81be7d788f7..978e2ba5a47 100644 --- a/l10n/es_MX/core.po +++ b/l10n/es_MX/core.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2014-01-02 01:55-0500\n" +"PO-Revision-Date: 2014-01-02 01:23+0000\n" +"Last-Translator: byoship\n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,470 +20,470 @@ msgstr "" #: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" -msgstr "" +msgstr "%s ha compartido »%s« contigo" #: ajax/share.php:169 #, php-format msgid "Couldn't send mail to following users: %s " -msgstr "" +msgstr "No se pudo enviar el mensaje a los siguientes usuarios: %s" #: ajax/update.php:11 msgid "Turned on maintenance mode" -msgstr "" +msgstr "Modo mantenimiento activado" #: ajax/update.php:14 msgid "Turned off maintenance mode" -msgstr "" +msgstr "Modo mantenimiento desactivado" #: ajax/update.php:17 msgid "Updated database" -msgstr "" +msgstr "Base de datos actualizada" #: ajax/update.php:20 msgid "Updating filecache, this may take really long..." -msgstr "" +msgstr "Actualizando caché de archivos, esto puede tardar bastante tiempo..." #: ajax/update.php:23 msgid "Updated filecache" -msgstr "" +msgstr "Caché de archivos actualizada" #: ajax/update.php:26 #, php-format msgid "... %d%% done ..." -msgstr "" +msgstr "... %d%% hecho ..." #: avatar/controller.php:62 msgid "No image or file provided" -msgstr "" +msgstr "No se especificó ningún archivo o imagen" #: avatar/controller.php:81 msgid "Unknown filetype" -msgstr "" +msgstr "Tipo de archivo desconocido" #: avatar/controller.php:85 msgid "Invalid image" -msgstr "" +msgstr "Imagen inválida" #: avatar/controller.php:115 avatar/controller.php:142 msgid "No temporary profile picture available, try again" -msgstr "" +msgstr "No hay disponible una imagen temporal de perfil, pruebe de nuevo" #: avatar/controller.php:135 msgid "No crop data provided" -msgstr "" +msgstr "No se proporcionó datos del recorte" #: js/config.php:32 msgid "Sunday" -msgstr "" +msgstr "Domingo" #: js/config.php:33 msgid "Monday" -msgstr "" +msgstr "Lunes" #: js/config.php:34 msgid "Tuesday" -msgstr "" +msgstr "Martes" #: js/config.php:35 msgid "Wednesday" -msgstr "" +msgstr "Miércoles" #: js/config.php:36 msgid "Thursday" -msgstr "" +msgstr "Jueves" #: js/config.php:37 msgid "Friday" -msgstr "" +msgstr "Viernes" #: js/config.php:38 msgid "Saturday" -msgstr "" +msgstr "Sábado" #: js/config.php:43 msgid "January" -msgstr "" +msgstr "Enero" #: js/config.php:44 msgid "February" -msgstr "" +msgstr "Febrero" #: js/config.php:45 msgid "March" -msgstr "" +msgstr "Marzo" #: js/config.php:46 msgid "April" -msgstr "" +msgstr "Abril" #: js/config.php:47 msgid "May" -msgstr "" +msgstr "Mayo" #: js/config.php:48 msgid "June" -msgstr "" +msgstr "Junio" #: js/config.php:49 msgid "July" -msgstr "" +msgstr "Julio" #: js/config.php:50 msgid "August" -msgstr "" +msgstr "Agosto" #: js/config.php:51 msgid "September" -msgstr "" +msgstr "Septiembre" #: js/config.php:52 msgid "October" -msgstr "" +msgstr "Octubre" #: js/config.php:53 msgid "November" -msgstr "" +msgstr "Noviembre" #: js/config.php:54 msgid "December" -msgstr "" +msgstr "Diciembre" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" -msgstr "" +msgstr "Ajustes" -#: js/js.js:858 +#: js/js.js:869 msgid "seconds ago" -msgstr "" +msgstr "segundos antes" -#: js/js.js:859 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Hace %n minuto" +msgstr[1] "Hace %n minutos" -#: js/js.js:860 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Hace %n hora" +msgstr[1] "Hace %n horas" -#: js/js.js:861 +#: js/js.js:872 msgid "today" -msgstr "" +msgstr "hoy" -#: js/js.js:862 +#: js/js.js:873 msgid "yesterday" -msgstr "" +msgstr "ayer" -#: js/js.js:863 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Hace %n día" +msgstr[1] "Hace %n días" -#: js/js.js:864 +#: js/js.js:875 msgid "last month" -msgstr "" +msgstr "el mes pasado" -#: js/js.js:865 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Hace %n mes" +msgstr[1] "Hace %n meses" -#: js/js.js:866 +#: js/js.js:877 msgid "months ago" -msgstr "" +msgstr "meses antes" -#: js/js.js:867 +#: js/js.js:878 msgid "last year" -msgstr "" +msgstr "el año pasado" -#: js/js.js:868 +#: js/js.js:879 msgid "years ago" -msgstr "" +msgstr "años antes" #: js/oc-dialogs.js:123 msgid "Choose" -msgstr "" +msgstr "Seleccionar" #: js/oc-dialogs.js:146 msgid "Error loading file picker template: {error}" -msgstr "" +msgstr "Error cargando plantilla del seleccionador de archivos: {error}" #: js/oc-dialogs.js:172 msgid "Yes" -msgstr "" +msgstr "Sí" #: js/oc-dialogs.js:182 msgid "No" -msgstr "" +msgstr "No" #: js/oc-dialogs.js:199 msgid "Ok" -msgstr "" +msgstr "Aceptar" #: js/oc-dialogs.js:219 msgid "Error loading message template: {error}" -msgstr "" +msgstr "Error cargando plantilla del mensaje: {error}" #: js/oc-dialogs.js:347 msgid "{count} file conflict" msgid_plural "{count} file conflicts" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "{count} conflicto de archivo" +msgstr[1] "{count} conflictos de archivo" #: js/oc-dialogs.js:361 msgid "One file conflict" -msgstr "" +msgstr "Un conflicto de archivo" #: js/oc-dialogs.js:367 msgid "Which files do you want to keep?" -msgstr "" +msgstr "¿Que archivos deseas mantener?" #: js/oc-dialogs.js:368 msgid "" "If you select both versions, the copied file will have a number added to its" " name." -msgstr "" +msgstr "Si seleccionas ambas versiones, el archivo copiado tendrá añadido un número en su nombre." #: js/oc-dialogs.js:376 msgid "Cancel" -msgstr "" +msgstr "Cancelar" #: js/oc-dialogs.js:386 msgid "Continue" -msgstr "" +msgstr "Continuar" #: js/oc-dialogs.js:433 js/oc-dialogs.js:446 msgid "(all selected)" -msgstr "" +msgstr "(todos seleccionados)" #: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "({count} selected)" -msgstr "" +msgstr "({count} seleccionados)" #: js/oc-dialogs.js:457 msgid "Error loading file exists template" -msgstr "" +msgstr "Error cargando plantilla de archivo existente" #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" -msgstr "" +msgstr "Compartido" #: js/share.js:109 msgid "Share" -msgstr "" +msgstr "Compartir" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 #: js/share.js:719 templates/installation.php:10 msgid "Error" -msgstr "" +msgstr "Error" #: js/share.js:160 js/share.js:747 msgid "Error while sharing" -msgstr "" +msgstr "Error al compartir" #: js/share.js:171 msgid "Error while unsharing" -msgstr "" +msgstr "Error al dejar de compartir" #: js/share.js:178 msgid "Error while changing permissions" -msgstr "" +msgstr "Error al cambiar permisos" #: js/share.js:187 msgid "Shared with you and the group {group} by {owner}" -msgstr "" +msgstr "Compartido contigo y el grupo {group} por {owner}" #: js/share.js:189 msgid "Shared with you by {owner}" -msgstr "" +msgstr "Compartido contigo por {owner}" #: js/share.js:213 msgid "Share with user or group …" -msgstr "" +msgstr "Compartido con el usuario o con el grupo …" #: js/share.js:219 msgid "Share link" -msgstr "" +msgstr "Enlace compartido" #: js/share.js:222 msgid "Password protect" -msgstr "" +msgstr "Protección con contraseña" #: js/share.js:224 templates/installation.php:58 templates/login.php:38 msgid "Password" -msgstr "" +msgstr "Contraseña" #: js/share.js:229 msgid "Allow Public Upload" -msgstr "" +msgstr "Permitir Subida Pública" #: js/share.js:233 msgid "Email link to person" -msgstr "" +msgstr "Enviar enlace por correo electrónico a una persona" #: js/share.js:234 msgid "Send" -msgstr "" +msgstr "Enviar" #: js/share.js:239 msgid "Set expiration date" -msgstr "" +msgstr "Establecer fecha de caducidad" #: js/share.js:240 msgid "Expiration date" -msgstr "" +msgstr "Fecha de caducidad" #: js/share.js:275 msgid "Share via email:" -msgstr "" +msgstr "Compartir por correo electrónico:" #: js/share.js:278 msgid "No people found" -msgstr "" +msgstr "No se encontró gente" #: js/share.js:322 js/share.js:359 msgid "group" -msgstr "" +msgstr "grupo" #: js/share.js:333 msgid "Resharing is not allowed" -msgstr "" +msgstr "No se permite compartir de nuevo" #: js/share.js:375 msgid "Shared in {item} with {user}" -msgstr "" +msgstr "Compartido en {item} con {user}" #: js/share.js:397 msgid "Unshare" -msgstr "" +msgstr "Dejar de compartir" #: js/share.js:405 msgid "notify by email" -msgstr "" +msgstr "notificar al usuario por correo electrónico" #: js/share.js:408 msgid "can edit" -msgstr "" +msgstr "puede editar" #: js/share.js:410 msgid "access control" -msgstr "" +msgstr "control de acceso" #: js/share.js:413 msgid "create" -msgstr "" +msgstr "crear" #: js/share.js:416 msgid "update" -msgstr "" +msgstr "actualizar" #: js/share.js:419 msgid "delete" -msgstr "" +msgstr "eliminar" #: js/share.js:422 msgid "share" -msgstr "" +msgstr "compartir" #: js/share.js:694 msgid "Password protected" -msgstr "" +msgstr "Protegido con contraseña" #: js/share.js:707 msgid "Error unsetting expiration date" -msgstr "" +msgstr "Error eliminando fecha de caducidad" #: js/share.js:719 msgid "Error setting expiration date" -msgstr "" +msgstr "Error estableciendo fecha de caducidad" #: js/share.js:734 msgid "Sending ..." -msgstr "" +msgstr "Enviando..." #: js/share.js:745 msgid "Email sent" -msgstr "" +msgstr "Correo electrónico enviado" #: js/share.js:769 msgid "Warning" -msgstr "" +msgstr "Precaución" #: js/tags.js:4 msgid "The object type is not specified." -msgstr "" +msgstr "El tipo de objeto no está especificado." #: js/tags.js:13 msgid "Enter new" -msgstr "" +msgstr "Ingresar nueva" #: js/tags.js:27 msgid "Delete" -msgstr "" +msgstr "Eliminar" #: js/tags.js:31 msgid "Add" -msgstr "" +msgstr "Agregar" #: js/tags.js:39 msgid "Edit tags" -msgstr "" +msgstr "Editar etiquetas" #: js/tags.js:57 msgid "Error loading dialog template: {error}" -msgstr "" +msgstr "Error cargando plantilla de diálogo: {error}" #: js/tags.js:261 msgid "No tags selected for deletion." -msgstr "" +msgstr "No hay etiquetas seleccionadas para borrar." #: js/update.js:8 msgid "Please reload the page." -msgstr "" +msgstr "Vuelva a cargar la página." #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the <a " "href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud " "community</a>." -msgstr "" +msgstr "La actualización ha fracasado. Por favor, informe de este problema a la <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">Comunidad de ownCloud</a>." #: js/update.js:21 msgid "The update was successful. Redirecting you to ownCloud now." -msgstr "" +msgstr "La actualización se ha realizado con éxito. Redireccionando a ownCloud ahora." #: lostpassword/controller.php:62 #, php-format msgid "%s password reset" -msgstr "" +msgstr "%s restablecer contraseña" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "" +msgstr "Utilice el siguiente enlace para restablecer su contraseña: {link}" #: lostpassword/templates/lostpassword.php:7 msgid "" "The link to reset your password has been sent to your email.<br>If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.<br>If it is not there ask your local administrator ." -msgstr "" +msgstr "El enlace para restablecer la contraseña ha sido enviada a su correo electrónico. <br> Si no lo recibe en un plazo razonable de tiempo, revise su carpeta de spam / correo no deseado. <br> Si no está allí, pregunte a su administrador local." #: lostpassword/templates/lostpassword.php:15 msgid "Request failed!<br>Did you make sure your email/username was right?" -msgstr "" +msgstr "La petición ha fallado! <br> ¿Está seguro de que su dirección de correo electrónico o nombre de usuario era correcto?" #: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." -msgstr "" +msgstr "Recibirá un enlace por correo electrónico para restablecer su contraseña" #: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 #: templates/login.php:31 msgid "Username" -msgstr "" +msgstr "Nombre de usuario" #: lostpassword/templates/lostpassword.php:25 msgid "" @@ -491,87 +491,87 @@ msgid "" "will be no way to get your data back after your password is reset. If you " "are not sure what to do, please contact your administrator before you " "continue. Do you really want to continue?" -msgstr "" +msgstr "Sus archivos están cifrados. Si no ha habilitado la clave de recurperación, no habrá forma de recuperar sus datos luego de que la contraseña sea reseteada. Si no está seguro de qué hacer, contacte a su administrador antes de continuar. ¿Realmente desea continuar?" #: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" -msgstr "" +msgstr "Sí. Realmente deseo resetear mi contraseña ahora" #: lostpassword/templates/lostpassword.php:30 msgid "Reset" -msgstr "" +msgstr "Reiniciar" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "" +msgstr "Su contraseña fue restablecida" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" -msgstr "" +msgstr "A la página de inicio de sesión" #: lostpassword/templates/resetpassword.php:8 msgid "New password" -msgstr "" +msgstr "Nueva contraseña" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" -msgstr "" +msgstr "Restablecer contraseña" #: strings.php:5 msgid "Personal" -msgstr "" +msgstr "Personal" #: strings.php:6 msgid "Users" -msgstr "" +msgstr "Usuarios" #: strings.php:7 templates/layout.user.php:111 msgid "Apps" -msgstr "" +msgstr "Aplicaciones" #: strings.php:8 msgid "Admin" -msgstr "" +msgstr "Administración" #: strings.php:9 msgid "Help" -msgstr "" +msgstr "Ayuda" #: tags/controller.php:22 msgid "Error loading tags" -msgstr "" +msgstr "Error cargando etiquetas." #: tags/controller.php:48 msgid "Tag already exists" -msgstr "" +msgstr "La etiqueta ya existe" #: tags/controller.php:64 msgid "Error deleting tag(s)" -msgstr "" +msgstr "Error borrando etiqueta(s)" #: tags/controller.php:75 msgid "Error tagging" -msgstr "" +msgstr "Error al etiquetar" #: tags/controller.php:86 msgid "Error untagging" -msgstr "" +msgstr "Error al quitar etiqueta" #: tags/controller.php:97 msgid "Error favoriting" -msgstr "" +msgstr "Error al marcar como favorito" #: tags/controller.php:108 msgid "Error unfavoriting" -msgstr "" +msgstr "Error al quitar como favorito" #: templates/403.php:12 msgid "Access forbidden" -msgstr "" +msgstr "Acceso denegado" #: templates/404.php:15 msgid "Cloud not found" -msgstr "" +msgstr "No se encuentra la nube" #: templates/altmail.php:2 #, php-format @@ -581,195 +581,195 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -msgstr "" +msgstr "Hola:\n\nTan solo queremos informarte que %s compartió %s contigo.\nMíralo aquí: %s\n\n" #: templates/altmail.php:4 templates/mail.php:17 #, php-format msgid "The share will expire on %s." -msgstr "" +msgstr "El objeto dejará de ser compartido el %s." #: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" -msgstr "" +msgstr "¡Saludos!" #: templates/installation.php:25 templates/installation.php:32 #: templates/installation.php:39 msgid "Security Warning" -msgstr "" +msgstr "Advertencia de seguridad" #: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" -msgstr "" +msgstr "Su versión de PHP es vulnerable al ataque de Byte NULL (CVE-2006-7243)" #: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." -msgstr "" +msgstr "Por favor, actualice su instalación PHP para usar %s con seguridad." #: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." -msgstr "" +msgstr "No está disponible un generador de números aleatorios seguro, por favor habilite la extensión OpenSSL de PHP." #: templates/installation.php:34 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." -msgstr "" +msgstr "Sin un generador de números aleatorios seguro, un atacante podría predecir los tokens de restablecimiento de contraseñas y tomar el control de su cuenta." #: templates/installation.php:40 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." -msgstr "" +msgstr "Su directorio de datos y sus archivos probablemente sean accesibles a través de internet ya que el archivo .htaccess no funciona." #: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the <a " "href=\"%s\" target=\"_blank\">documentation</a>." -msgstr "" +msgstr "Para información de cómo configurar apropiadamente su servidor, por favor vea la <a href=\"%s\" target=\"_blank\">documentación</a>." #: templates/installation.php:48 msgid "Create an <strong>admin account</strong>" -msgstr "" +msgstr "Crear una <strong>cuenta de administrador</strong>" #: templates/installation.php:67 msgid "Advanced" -msgstr "" +msgstr "Avanzado" #: templates/installation.php:74 msgid "Data folder" -msgstr "" +msgstr "Directorio de datos" #: templates/installation.php:86 msgid "Configure the database" -msgstr "" +msgstr "Configurar la base de datos" #: templates/installation.php:91 templates/installation.php:103 #: templates/installation.php:114 templates/installation.php:125 #: templates/installation.php:137 msgid "will be used" -msgstr "" +msgstr "se utilizarán" #: templates/installation.php:149 msgid "Database user" -msgstr "" +msgstr "Usuario de la base de datos" #: templates/installation.php:156 msgid "Database password" -msgstr "" +msgstr "Contraseña de la base de datos" #: templates/installation.php:161 msgid "Database name" -msgstr "" +msgstr "Nombre de la base de datos" #: templates/installation.php:169 msgid "Database tablespace" -msgstr "" +msgstr "Espacio de tablas de la base de datos" #: templates/installation.php:176 msgid "Database host" -msgstr "" +msgstr "Host de la base de datos" #: templates/installation.php:185 msgid "Finish setup" -msgstr "" +msgstr "Completar la instalación" #: templates/installation.php:185 msgid "Finishing …" -msgstr "" +msgstr "Finalizando …" #: templates/layout.user.php:40 msgid "" "This application requires JavaScript to be enabled for correct operation. " "Please <a href=\"http://enable-javascript.com/\" target=\"_blank\">enable " "JavaScript</a> and re-load this interface." -msgstr "" +msgstr "Esta aplicación requiere que se habilite JavaScript para su correcta operación. Por favor <a href=\"http://enable-javascript.com/es\" target=\"_blank\">habilite JavaScript</a> y vuelva a cargar esta interfaz." #: templates/layout.user.php:44 #, php-format msgid "%s is available. Get more information on how to update." -msgstr "" +msgstr "%s esta disponible. Obtener mas información de como actualizar." #: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" -msgstr "" +msgstr "Salir" #: templates/login.php:9 msgid "Automatic logon rejected!" -msgstr "" +msgstr "¡Inicio de sesión automático rechazado!" #: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" -msgstr "" +msgstr "Si no ha cambiado su contraseña recientemente, ¡puede que su cuenta esté comprometida!" #: templates/login.php:12 msgid "Please change your password to secure your account again." -msgstr "" +msgstr "Por favor cambie su contraseña para asegurar su cuenta nuevamente." #: templates/login.php:17 msgid "Server side authentication failed!" -msgstr "" +msgstr "La autenticación a fallado en el servidor." #: templates/login.php:18 msgid "Please contact your administrator." -msgstr "" +msgstr "Por favor, contacte con el administrador." #: templates/login.php:44 msgid "Lost your password?" -msgstr "" +msgstr "¿Ha perdido su contraseña?" #: templates/login.php:49 msgid "remember" -msgstr "" +msgstr "recordar" #: templates/login.php:52 msgid "Log in" -msgstr "" +msgstr "Entrar" #: templates/login.php:58 msgid "Alternative Logins" -msgstr "" +msgstr "Accesos Alternativos" #: templates/mail.php:15 #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " "href=\"%s\">View it!</a><br><br>" -msgstr "" +msgstr "Hola:<br><br>tan solo queremos informarte que %s compartió «%s» contigo.<br><a href=\"%s\">¡Míralo acá!</a><br><br>" #: templates/singleuser.user.php:3 msgid "This ownCloud instance is currently in single user mode." -msgstr "" +msgstr "Esta instalación de ownCloud se encuentra en modo de usuario único." #: templates/singleuser.user.php:4 msgid "This means only administrators can use the instance." -msgstr "" +msgstr "Esto quiere decir que solo un administrador puede usarla." #: templates/singleuser.user.php:5 templates/update.user.php:5 msgid "" "Contact your system administrator if this message persists or appeared " "unexpectedly." -msgstr "" +msgstr "Contacte con su administrador de sistemas si este mensaje persiste o aparece de forma inesperada." #: templates/singleuser.user.php:7 templates/update.user.php:6 msgid "Thank you for your patience." -msgstr "" +msgstr "Gracias por su paciencia." #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "" +msgstr "Actualizando ownCloud a la versión %s, esto puede demorar un tiempo." #: templates/update.user.php:3 msgid "" "This ownCloud instance is currently being updated, which may take a while." -msgstr "" +msgstr "Esta versión de ownCloud se está actualizando, esto puede demorar un tiempo." #: templates/update.user.php:4 msgid "Please reload this page after a short time to continue using ownCloud." -msgstr "" +msgstr "Por favor, recargue esta instancia de onwcloud tras un corto periodo de tiempo y continue usándolo." diff --git a/l10n/es_MX/files.po b/l10n/es_MX/files.po index a753bc84d9c..3ab8a00fc9a 100644 --- a/l10n/es_MX/files.po +++ b/l10n/es_MX/files.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2014-01-02 01:55-0500\n" +"PO-Revision-Date: 2014-01-02 01:10+0000\n" +"Last-Translator: byoship\n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,385 +20,394 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "" +msgstr "No se pudo mover %s - Ya existe un archivo con ese nombre." #: ajax/move.php:27 ajax/move.php:30 #, php-format msgid "Could not move %s" -msgstr "" +msgstr "No se pudo mover %s" #: ajax/newfile.php:56 js/files.js:74 msgid "File name cannot be empty." -msgstr "" +msgstr "El nombre de archivo no puede estar vacío." #: ajax/newfile.php:62 msgid "File name must not contain \"/\". Please choose a different name." -msgstr "" +msgstr "El nombre del archivo, NO puede contener el simbolo\"/\", por favor elija un nombre diferente." #: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." -msgstr "" +msgstr "El nombre %s ya está en uso por la carpeta %s. Por favor elija uno diferente." #: ajax/newfile.php:81 msgid "Not a valid source" -msgstr "" +msgstr "No es un origen válido" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "El servidor no puede acceder URLs; revise la configuración del servidor." + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" -msgstr "" +msgstr "Error mientras se descargaba %s a %s" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" -msgstr "" +msgstr "Error al crear el archivo" #: ajax/newfolder.php:21 msgid "Folder name cannot be empty." -msgstr "" +msgstr "El nombre de la carpeta no puede estar vacío." #: ajax/newfolder.php:27 msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "" +msgstr "El nombre de la carpeta, NO puede contener el simbolo\"/\", por favor elija un nombre diferente." #: ajax/newfolder.php:56 msgid "Error when creating the folder" -msgstr "" +msgstr "Error al crear la carpeta." #: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." -msgstr "" +msgstr "Incapaz de crear directorio de subida." #: ajax/upload.php:27 msgid "Invalid Token" -msgstr "" +msgstr "Token Inválido" #: ajax/upload.php:64 msgid "No file was uploaded. Unknown error" -msgstr "" +msgstr "No se subió ningún archivo. Error desconocido" #: ajax/upload.php:71 msgid "There is no error, the file uploaded with success" -msgstr "" +msgstr "No hubo ningún problema, el archivo se subió con éxito" #: ajax/upload.php:72 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "" +msgstr "El archivo subido sobrepasa la directiva 'upload_max_filesize' en php.ini:" #: ajax/upload.php:74 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "" +msgstr "El archivo subido sobrepasa la directiva 'MAX_FILE_SIZE' especificada en el formulario HTML" #: ajax/upload.php:75 msgid "The uploaded file was only partially uploaded" -msgstr "" +msgstr "El archivo subido fue sólo subido parcialmente" #: ajax/upload.php:76 msgid "No file was uploaded" -msgstr "" +msgstr "No se subió ningún archivo" #: ajax/upload.php:77 msgid "Missing a temporary folder" -msgstr "" +msgstr "Falta la carpeta temporal" #: ajax/upload.php:78 msgid "Failed to write to disk" -msgstr "" +msgstr "Falló al escribir al disco" #: ajax/upload.php:96 msgid "Not enough storage available" -msgstr "" +msgstr "No hay suficiente espacio disponible" #: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." -msgstr "" +msgstr "Actualización fallida. No se pudo obtener información del archivo." #: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" -msgstr "" +msgstr "Actualización fallida. No se pudo encontrar el archivo subido" #: ajax/upload.php:172 msgid "Invalid directory." -msgstr "" +msgstr "Directorio inválido." #: appinfo/app.php:11 msgid "Files" -msgstr "" +msgstr "Archivos" #: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" -msgstr "" +msgstr "No ha sido posible subir {filename} porque es un directorio o tiene 0 bytes" #: js/file-upload.js:239 msgid "Not enough space available" -msgstr "" +msgstr "No hay suficiente espacio disponible" #: js/file-upload.js:306 msgid "Upload cancelled." -msgstr "" +msgstr "Subida cancelada." #: js/file-upload.js:344 msgid "Could not get result from server." -msgstr "" +msgstr "No se pudo obtener respuesta del servidor." #: js/file-upload.js:436 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "" +msgstr "La subida del archivo está en proceso. Si sale de la página ahora, la subida será cancelada." #: js/file-upload.js:523 msgid "URL cannot be empty" -msgstr "" +msgstr "La dirección URL no puede estar vacía" #: js/file-upload.js:527 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" +msgstr "En la carpeta de inicio, 'Shared' es un nombre reservado" #: js/file-upload.js:529 js/filelist.js:379 msgid "{new_name} already exists" -msgstr "" +msgstr "{new_name} ya existe" #: js/file-upload.js:595 msgid "Could not create file" -msgstr "" +msgstr "No se pudo crear el archivo" #: js/file-upload.js:611 msgid "Could not create folder" -msgstr "" +msgstr "No se pudo crear la carpeta" + +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "Error al descargar URL." #: js/fileactions.js:125 msgid "Share" -msgstr "" +msgstr "Compartir" #: js/fileactions.js:137 msgid "Delete permanently" -msgstr "" +msgstr "Eliminar permanentemente" #: js/fileactions.js:194 msgid "Rename" -msgstr "" +msgstr "Renombrar" #: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 msgid "Pending" -msgstr "" +msgstr "Pendiente" #: js/filelist.js:405 msgid "Could not rename file" -msgstr "" +msgstr "No se pudo renombrar el archivo" #: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" -msgstr "" +msgstr "reemplazado {new_name} con {old_name}" #: js/filelist.js:539 msgid "undo" -msgstr "" +msgstr "deshacer" #: js/filelist.js:591 msgid "Error deleting file." -msgstr "" +msgstr "Error borrando el archivo." #: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%n carpeta" +msgstr[1] "%n carpetas" #: js/filelist.js:610 js/filelist.js:684 js/files.js:637 msgid "%n file" msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%n archivo" +msgstr[1] "%n archivos" #: js/filelist.js:617 msgid "{dirs} and {files}" -msgstr "" +msgstr "{dirs} y {files}" #: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" msgid_plural "Uploading %n files" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Subiendo %n archivo" +msgstr[1] "Subiendo %n archivos" #: js/files.js:72 msgid "'.' is an invalid file name." -msgstr "" +msgstr "'.' no es un nombre de archivo válido." #: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." -msgstr "" +msgstr "Nombre inválido, los caracteres \"\\\", \"/\", \"<\", \">\", \":\", \"\", \"|\" \"?\" y \"*\" no están permitidos " #: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" -msgstr "" +msgstr "Su almacenamiento está lleno, ¡los archivos no se actualizarán ni sincronizarán más!" #: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" -msgstr "" +msgstr "Su almacenamiento está casi lleno ({usedSpacePercent}%)" #: js/files.js:110 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" -msgstr "" +msgstr "La aplicación de crifrado está habilitada pero tus claves no han sido inicializadas, por favor, cierra la sesión y vuelva a iniciarla de nuevo." #: js/files.js:114 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." -msgstr "" +msgstr "La clave privada no es válida para la aplicación de cifrado. Por favor, actualiza la contraseña de tu clave privada en tus ajustes personales para recuperar el acceso a tus archivos cifrados." #: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." -msgstr "" +msgstr "El cifrado ha sido deshabilitado pero tus archivos permanecen cifrados. Por favor, ve a tus ajustes personales para descifrar tus archivos." #: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." -msgstr "" +msgstr "Su descarga está siendo preparada. Esto podría tardar algo de tiempo si los archivos son grandes." #: js/files.js:558 js/files.js:596 msgid "Error moving file" -msgstr "" +msgstr "Error moviendo archivo" #: js/files.js:558 js/files.js:596 msgid "Error" -msgstr "" +msgstr "Error" #: js/files.js:613 templates/index.php:56 msgid "Name" -msgstr "" +msgstr "Nombre" #: js/files.js:614 templates/index.php:68 msgid "Size" -msgstr "" +msgstr "Tamaño" #: js/files.js:615 templates/index.php:70 msgid "Modified" -msgstr "" +msgstr "Modificado" #: lib/app.php:60 msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" +msgstr "Nombre de carpeta inválido. El uso de \"Shared\" esta reservado." #: lib/app.php:101 #, php-format msgid "%s could not be renamed" -msgstr "" +msgstr "%s no pudo ser renombrado" #: lib/helper.php:11 templates/index.php:16 msgid "Upload" -msgstr "" +msgstr "Subir" #: templates/admin.php:5 msgid "File handling" -msgstr "" +msgstr "Administración de archivos" #: templates/admin.php:7 msgid "Maximum upload size" -msgstr "" +msgstr "Tamaño máximo de subida" #: templates/admin.php:10 msgid "max. possible: " -msgstr "" +msgstr "máx. posible:" #: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." -msgstr "" +msgstr "Necesario para multi-archivo y descarga de carpetas" #: templates/admin.php:17 msgid "Enable ZIP-download" -msgstr "" +msgstr "Habilitar descarga en ZIP" #: templates/admin.php:20 msgid "0 is unlimited" -msgstr "" +msgstr "0 significa ilimitado" #: templates/admin.php:22 msgid "Maximum input size for ZIP files" -msgstr "" +msgstr "Tamaño máximo para archivos ZIP de entrada" #: templates/admin.php:26 msgid "Save" -msgstr "" +msgstr "Guardar" #: templates/index.php:5 msgid "New" -msgstr "" +msgstr "Nuevo" #: templates/index.php:8 msgid "New text file" -msgstr "" +msgstr "Nuevo archivo de texto" #: templates/index.php:8 msgid "Text file" -msgstr "" +msgstr "Archivo de texto" #: templates/index.php:10 msgid "New folder" -msgstr "" +msgstr "Nueva carpeta" #: templates/index.php:10 msgid "Folder" -msgstr "" +msgstr "Carpeta" #: templates/index.php:12 msgid "From link" -msgstr "" +msgstr "Desde enlace" #: templates/index.php:29 msgid "Deleted files" -msgstr "" +msgstr "Archivos eliminados" #: templates/index.php:34 msgid "Cancel upload" -msgstr "" +msgstr "Cancelar subida" #: templates/index.php:40 msgid "You don’t have permission to upload or create files here" -msgstr "" +msgstr "No tienes permisos para subir o crear archivos aquí." #: templates/index.php:45 msgid "Nothing in here. Upload something!" -msgstr "" +msgstr "No hay nada aquí. ¡Suba algo!" #: templates/index.php:62 msgid "Download" -msgstr "" +msgstr "Descargar" #: templates/index.php:73 templates/index.php:74 msgid "Delete" -msgstr "" +msgstr "Eliminar" #: templates/index.php:86 msgid "Upload too large" -msgstr "" +msgstr "Subida demasido grande" #: templates/index.php:88 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." -msgstr "" +msgstr "Los archivos que estás intentando subir sobrepasan el tamaño máximo permitido en este servidor." #: templates/index.php:93 msgid "Files are being scanned, please wait." -msgstr "" +msgstr "Los archivos están siendo escaneados, por favor espere." #: templates/index.php:96 msgid "Current scanning" -msgstr "" +msgstr "Escaneo actual" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." -msgstr "" +msgstr "Actualizando caché del sistema de archivos..." diff --git a/l10n/es_MX/files_encryption.po b/l10n/es_MX/files_encryption.po index 3d1289e86f9..568f9b2783c 100644 --- a/l10n/es_MX/files_encryption.po +++ b/l10n/es_MX/files_encryption.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-29 19:08+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2014-01-02 01:55-0500\n" +"PO-Revision-Date: 2013-12-31 19:30+0000\n" +"Last-Translator: byoship\n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,46 +19,46 @@ msgstr "" #: ajax/adminrecovery.php:29 msgid "Recovery key successfully enabled" -msgstr "" +msgstr "Se ha habilitado la recuperación de archivos" #: ajax/adminrecovery.php:34 msgid "" "Could not enable recovery key. Please check your recovery key password!" -msgstr "" +msgstr "No se pudo habilitar la clave de recuperación. Por favor compruebe su contraseña." #: ajax/adminrecovery.php:48 msgid "Recovery key successfully disabled" -msgstr "" +msgstr "Clave de recuperación deshabilitada" #: ajax/adminrecovery.php:53 msgid "" "Could not disable recovery key. Please check your recovery key password!" -msgstr "" +msgstr "No se pudo deshabilitar la clave de recuperación. Por favor compruebe su contraseña!" #: ajax/changeRecoveryPassword.php:49 msgid "Password successfully changed." -msgstr "" +msgstr "Su contraseña ha sido cambiada" #: ajax/changeRecoveryPassword.php:51 msgid "Could not change the password. Maybe the old password was not correct." -msgstr "" +msgstr "No se pudo cambiar la contraseña. Compruebe que la contraseña actual sea correcta." #: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." -msgstr "" +msgstr "Contraseña de clave privada actualizada con éxito." #: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." -msgstr "" +msgstr "No se pudo cambiar la contraseña. Puede que la contraseña antigua no sea correcta." #: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." -msgstr "" +msgstr "¡La aplicación de cifrado no ha sido inicializada! Quizá fue restablecida durante tu sesión. Por favor intenta cerrar la sesión y volver a iniciarla para inicializar la aplicación de cifrado." #: files/error.php:16 #, php-format @@ -66,136 +66,136 @@ msgid "" "Your private key is not valid! Likely your password was changed outside of " "%s (e.g. your corporate directory). You can update your private key password" " in your personal settings to recover access to your encrypted files." -msgstr "" +msgstr "¡Su clave privada no es válida! Tal vez su contraseña ha sido cambiada desde fuera. de %s (Ej:Su directorio corporativo). Puede actualizar la contraseña de su clave privada en sus opciones personales para recuperar el acceso a sus archivos." #: files/error.php:19 msgid "" "Can not decrypt this file, probably this is a shared file. Please ask the " "file owner to reshare the file with you." -msgstr "" +msgstr "No fue posible descifrar este archivo, probablemente se trate de un archivo compartido. Solicite al propietario del mismo que vuelva a compartirlo con usted." #: files/error.php:22 files/error.php:27 msgid "" "Unknown error please check your system settings or contact your " "administrator" -msgstr "" +msgstr "Error desconocido. Verifique la configuración de su sistema o póngase en contacto con su administrador" -#: hooks/hooks.php:59 +#: hooks/hooks.php:62 msgid "Missing requirements." -msgstr "" +msgstr "Requisitos incompletos." -#: hooks/hooks.php:60 +#: hooks/hooks.php:63 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." -msgstr "" +msgstr "Por favor, asegúrese de que PHP 5.3.3 o posterior está instalado y que la extensión OpenSSL de PHP está habilitada y configurada correctamente. Por el momento, la aplicación de cifrado ha sido deshabilitada." -#: hooks/hooks.php:273 +#: hooks/hooks.php:281 msgid "Following users are not set up for encryption:" -msgstr "" +msgstr "Los siguientes usuarios no han sido configurados para el cifrado:" #: js/detect-migration.js:21 msgid "Initial encryption started... This can take some time. Please wait." -msgstr "" +msgstr "Encriptación iniciada... Esto puede tomar un tiempo. Por favor espere." #: js/settings-admin.js:13 msgid "Saving..." -msgstr "" +msgstr "Guardando..." #: templates/invalid_private_key.php:8 msgid "Go directly to your " -msgstr "" +msgstr "Ir directamente a su" #: templates/invalid_private_key.php:8 msgid "personal settings" -msgstr "" +msgstr "opciones personales" #: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" -msgstr "" +msgstr "Cifrado" #: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" -msgstr "" +msgstr "Habilitar la clave de recuperación (permite recuperar los archivos del usuario en caso de pérdida de la contraseña);" #: templates/settings-admin.php:11 msgid "Recovery key password" -msgstr "" +msgstr "Contraseña de clave de recuperación" #: templates/settings-admin.php:14 msgid "Repeat Recovery key password" -msgstr "" +msgstr "Repite la contraseña de clave de recuperación" #: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" -msgstr "" +msgstr "Habilitar" #: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" -msgstr "" +msgstr "Deshabilitado" #: templates/settings-admin.php:34 msgid "Change recovery key password:" -msgstr "" +msgstr "Cambiar la contraseña de la clave de recuperación" #: templates/settings-admin.php:40 msgid "Old Recovery key password" -msgstr "" +msgstr "Antigua clave de recuperación" #: templates/settings-admin.php:47 msgid "New Recovery key password" -msgstr "" +msgstr "Nueva clave de recuperación" #: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" -msgstr "" +msgstr "Repetir la nueva clave de recuperación" #: templates/settings-admin.php:58 msgid "Change Password" -msgstr "" +msgstr "Cambiar contraseña" #: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" -msgstr "" +msgstr "Su contraseña de clave privada ya no coincide con su contraseña de acceso:" #: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." -msgstr "" +msgstr "Establecer la contraseña de su antigua clave privada a su contraseña actual de acceso." #: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." -msgstr "" +msgstr "Si no recuerda su antigua contraseña puede pedir a su administrador que le recupere sus archivos." #: templates/settings-personal.php:22 msgid "Old log-in password" -msgstr "" +msgstr "Contraseña de acceso antigua" #: templates/settings-personal.php:28 msgid "Current log-in password" -msgstr "" +msgstr "Contraseña de acceso actual" #: templates/settings-personal.php:33 msgid "Update Private Key Password" -msgstr "" +msgstr "Actualizar Contraseña de Clave Privada" #: templates/settings-personal.php:42 msgid "Enable password recovery:" -msgstr "" +msgstr "Habilitar la recuperación de contraseña:" #: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" -msgstr "" +msgstr "Habilitar esta opción le permitirá volver a tener acceso a sus archivos cifrados en caso de pérdida de contraseña" #: templates/settings-personal.php:60 msgid "File recovery settings updated" -msgstr "" +msgstr "Opciones de recuperación de archivos actualizada" #: templates/settings-personal.php:61 msgid "Could not update file recovery" -msgstr "" +msgstr "No se pudo actualizar la recuperación de archivos" diff --git a/l10n/es_MX/files_external.po b/l10n/es_MX/files_external.po index a6b6cd618ba..1f535c50fdf 100644 --- a/l10n/es_MX/files_external.po +++ b/l10n/es_MX/files_external.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-07 07:27+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-01-02 01:55-0500\n" +"PO-Revision-Date: 2013-12-31 19:50+0000\n" +"Last-Translator: byoship\n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,105 +19,105 @@ msgstr "" #: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 msgid "Access granted" -msgstr "" +msgstr "Acceso concedido" #: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 msgid "Error configuring Dropbox storage" -msgstr "" +msgstr "Error configurando el almacenamiento de Dropbox" #: js/dropbox.js:65 js/google.js:86 msgid "Grant access" -msgstr "" +msgstr "Conceder acceso" #: js/dropbox.js:101 msgid "Please provide a valid Dropbox app key and secret." -msgstr "" +msgstr "Por favor, proporcione un una clave válida de la app Dropbox y una clave secreta." #: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" -msgstr "" +msgstr "Error configurando el almacenamiento de Google Drive" -#: lib/config.php:453 +#: lib/config.php:467 msgid "" "<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." -msgstr "" +msgstr "<b>Advertencia:</b> El cliente \"smbclient\" no se encuentra instalado. El montado de carpetas CIFS/SMB no es posible. Por favor pida al administrador de su sistema que lo instale." -#: lib/config.php:457 +#: lib/config.php:471 msgid "" "<b>Warning:</b> 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 "<b>Advertencia:</b> El soporte de FTP en PHP no se encuentra instalado. El montado de carpetas FTP no es posible. Por favor pida al administrador de su sistema que lo instale." -#: lib/config.php:460 +#: lib/config.php:474 msgid "" "<b>Warning:</b> The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " "your system administrator to install it." -msgstr "" +msgstr "<b>Advertencia:</b> El soporte de Curl en PHP no está activado ni instalado. El montado de ownCloud, WebDAV o GoogleDrive no es posible. Pida al administrador de su sistema que lo instale." #: templates/settings.php:3 msgid "External Storage" -msgstr "" +msgstr "Almacenamiento externo" #: templates/settings.php:9 templates/settings.php:28 msgid "Folder name" -msgstr "" +msgstr "Nombre de la carpeta" #: templates/settings.php:10 msgid "External storage" -msgstr "" +msgstr "Almacenamiento externo" #: templates/settings.php:11 msgid "Configuration" -msgstr "" +msgstr "Configuración" #: templates/settings.php:12 msgid "Options" -msgstr "" +msgstr "Opciones" #: templates/settings.php:13 msgid "Applicable" -msgstr "" +msgstr "Aplicable" #: templates/settings.php:33 msgid "Add storage" -msgstr "" +msgstr "Añadir almacenamiento" #: templates/settings.php:90 msgid "None set" -msgstr "" +msgstr "No se ha configurado" #: templates/settings.php:91 msgid "All Users" -msgstr "" +msgstr "Todos los usuarios" #: templates/settings.php:92 msgid "Groups" -msgstr "" +msgstr "Grupos" #: templates/settings.php:100 msgid "Users" -msgstr "" +msgstr "Usuarios" #: templates/settings.php:113 templates/settings.php:114 #: templates/settings.php:149 templates/settings.php:150 msgid "Delete" -msgstr "" +msgstr "Eliminar" #: templates/settings.php:129 msgid "Enable User External Storage" -msgstr "" +msgstr "Habilitar almacenamiento externo de usuario" #: templates/settings.php:130 msgid "Allow users to mount their own external storage" -msgstr "" +msgstr "Permitir a los usuarios montar su propio almacenamiento externo" #: templates/settings.php:141 msgid "SSL root certificates" -msgstr "" +msgstr "Certificados raíz SSL" #: templates/settings.php:159 msgid "Import Root Certificate" -msgstr "" +msgstr "Importar certificado raíz" diff --git a/l10n/es_MX/files_sharing.po b/l10n/es_MX/files_sharing.po index f9b9b2f3179..610c125b72b 100644 --- a/l10n/es_MX/files_sharing.po +++ b/l10n/es_MX/files_sharing.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-21 13:01-0400\n" -"PO-Revision-Date: 2013-10-21 17:02+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-01-02 01:55-0500\n" +"PO-Revision-Date: 2014-01-02 01:10+0000\n" +"Last-Translator: byoship\n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,66 +19,66 @@ msgstr "" #: templates/authenticate.php:4 msgid "This share is password-protected" -msgstr "" +msgstr "Este elemento compartido esta protegido por contraseña" #: templates/authenticate.php:7 msgid "The password is wrong. Try again." -msgstr "" +msgstr "La contraseña introducida es errónea. Inténtelo de nuevo." #: templates/authenticate.php:10 msgid "Password" -msgstr "" +msgstr "Contraseña" #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." -msgstr "" +msgstr "Lo siento, este enlace al parecer ya no funciona." #: templates/part.404.php:4 msgid "Reasons might be:" -msgstr "" +msgstr "Las causas podrían ser:" #: templates/part.404.php:6 msgid "the item was removed" -msgstr "" +msgstr "el elemento fue eliminado" #: templates/part.404.php:7 msgid "the link expired" -msgstr "" +msgstr "el enlace expiró" #: templates/part.404.php:8 msgid "sharing is disabled" -msgstr "" +msgstr "compartir está desactivado" #: templates/part.404.php:10 msgid "For more info, please ask the person who sent this link." -msgstr "" +msgstr "Para mayor información, contacte a la persona que le envió el enlace." -#: templates/public.php:17 +#: templates/public.php:18 #, php-format msgid "%s shared the folder %s with you" -msgstr "" +msgstr "%s compartió la carpeta %s contigo" -#: templates/public.php:20 +#: templates/public.php:21 #, php-format msgid "%s shared the file %s with you" -msgstr "" +msgstr "%s compartió el archivo %s contigo" -#: templates/public.php:28 templates/public.php:94 +#: templates/public.php:29 templates/public.php:95 msgid "Download" -msgstr "" +msgstr "Descargar" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:46 templates/public.php:49 msgid "Upload" -msgstr "" +msgstr "Subir" -#: templates/public.php:58 +#: templates/public.php:59 msgid "Cancel upload" -msgstr "" +msgstr "Cancelar subida" -#: templates/public.php:91 +#: templates/public.php:92 msgid "No preview available for" -msgstr "" +msgstr "No hay vista previa disponible para" -#: templates/public.php:98 +#: templates/public.php:99 msgid "Direct link" -msgstr "" +msgstr "Enlace directo" diff --git a/l10n/es_MX/files_trashbin.po b/l10n/es_MX/files_trashbin.po index c9ff11a354b..7a4bf2cfd79 100644 --- a/l10n/es_MX/files_trashbin.po +++ b/l10n/es_MX/files_trashbin.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:27+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-01-02 01:55-0500\n" +"PO-Revision-Date: 2013-12-31 19:50+0000\n" +"Last-Translator: byoship\n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,44 +17,44 @@ msgstr "" "Language: es_MX\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/delete.php:42 +#: ajax/delete.php:63 #, php-format msgid "Couldn't delete %s permanently" -msgstr "" +msgstr "No se puede eliminar %s permanentemente" -#: ajax/undelete.php:42 +#: ajax/undelete.php:43 #, php-format msgid "Couldn't restore %s" -msgstr "" +msgstr "No se puede restaurar %s" -#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 +#: js/trash.js:18 js/trash.js:45 js/trash.js:88 js/trash.js:142 msgid "Error" -msgstr "" +msgstr "Error" -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:905 lib/trashbin.php:907 msgid "restored" -msgstr "" +msgstr "recuperado" -#: templates/index.php:9 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" -msgstr "" +msgstr "No hay nada aquí. ¡Tu papelera esta vacía!" -#: templates/index.php:23 +#: templates/index.php:20 msgid "Name" -msgstr "" +msgstr "Nombre" -#: templates/index.php:26 templates/index.php:28 +#: templates/index.php:23 templates/index.php:25 msgid "Restore" -msgstr "" +msgstr "Recuperar" -#: templates/index.php:34 +#: templates/index.php:31 msgid "Deleted" -msgstr "" +msgstr "Eliminado" -#: templates/index.php:37 templates/index.php:38 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" -msgstr "" +msgstr "Eliminar" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" -msgstr "" +msgstr "Archivos Eliminados" diff --git a/l10n/es_MX/files_versions.po b/l10n/es_MX/files_versions.po index b1866ae6ce3..afc3a3238a7 100644 --- a/l10n/es_MX/files_versions.po +++ b/l10n/es_MX/files_versions.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-07 07:27+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-01-02 01:55-0500\n" +"PO-Revision-Date: 2013-12-31 19:40+0000\n" +"Last-Translator: byoship\n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,24 +20,24 @@ msgstr "" #: ajax/rollbackVersion.php:13 #, php-format msgid "Could not revert: %s" -msgstr "" +msgstr "No se puede revertir: %s" -#: js/versions.js:7 +#: js/versions.js:14 msgid "Versions" -msgstr "" +msgstr "Revisiones" -#: js/versions.js:53 +#: js/versions.js:60 msgid "Failed to revert {file} to revision {timestamp}." -msgstr "" +msgstr "No se ha podido revertir {archivo} a revisión {timestamp}." -#: js/versions.js:79 +#: js/versions.js:86 msgid "More versions..." -msgstr "" +msgstr "Más versiones..." -#: js/versions.js:116 +#: js/versions.js:123 msgid "No other versions available" -msgstr "" +msgstr "No hay otras versiones disponibles" -#: js/versions.js:145 +#: js/versions.js:154 msgid "Restore" -msgstr "" +msgstr "Recuperar" diff --git a/l10n/es_MX/lib.po b/l10n/es_MX/lib.po index 7285fa72cec..e47ddeeee98 100644 --- a/l10n/es_MX/lib.po +++ b/l10n/es_MX/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2014-01-02 01:55-0500\n" +"PO-Revision-Date: 2014-01-02 00:20+0000\n" +"Last-Translator: byoship\n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,321 +17,317 @@ msgstr "" "Language: es_MX\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: private/app.php:243 +#: private/app.php:245 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." -msgstr "" +msgstr "La aplicación \"%s\" no puede ser instalada porque no es compatible con esta versión de ownCloud" -#: private/app.php:255 +#: private/app.php:257 msgid "No app name specified" -msgstr "" +msgstr "No se ha especificado nombre de la aplicación" -#: private/app.php:360 +#: private/app.php:362 msgid "Help" -msgstr "" +msgstr "Ayuda" -#: private/app.php:373 +#: private/app.php:375 msgid "Personal" -msgstr "" +msgstr "Personal" -#: private/app.php:384 +#: private/app.php:386 msgid "Settings" -msgstr "" +msgstr "Ajustes" -#: private/app.php:396 +#: private/app.php:398 msgid "Users" -msgstr "" +msgstr "Usuarios" -#: private/app.php:409 +#: private/app.php:411 msgid "Admin" -msgstr "" +msgstr "Administración" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." -msgstr "" +msgstr "Falló la actualización \"%s\"." -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" -msgstr "" +msgstr "Tipo de archivo desconocido" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" -msgstr "" +msgstr "Imagen inválida" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" -msgstr "" +msgstr "Servicios web bajo su control" #: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" -msgstr "" +msgstr "No se puede abrir \"%s\"" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." -msgstr "" +msgstr "La descarga en ZIP está desactivada." -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." -msgstr "" +msgstr "Los archivos deben ser descargados uno por uno." -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" -msgstr "" +msgstr "Volver a Archivos" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." -msgstr "" +msgstr "Los archivos seleccionados son demasiado grandes para generar el archivo zip." -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." -msgstr "" +msgstr "Descargue los archivos en trozos más pequeños, por separado o solicítelos amablemente a su administrador." #: private/installer.php:63 msgid "No source specified when installing app" -msgstr "" +msgstr "No se ha especificado origen cuando se ha instalado la aplicación" #: private/installer.php:70 msgid "No href specified when installing app from http" -msgstr "" +msgstr "No href especificado cuando se ha instalado la aplicación" #: private/installer.php:75 msgid "No path specified when installing app from local file" -msgstr "" +msgstr "Sin path especificado cuando se ha instalado la aplicación desde el archivo local" #: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" -msgstr "" +msgstr "Archivos de tipo %s no son soportados" #: private/installer.php:103 msgid "Failed to open archive when installing app" -msgstr "" +msgstr "Fallo de abrir archivo mientras se instala la aplicación" #: private/installer.php:125 msgid "App does not provide an info.xml file" -msgstr "" +msgstr "La aplicación no suministra un archivo info.xml" #: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" -msgstr "" +msgstr "La aplicación no puede ser instalada por tener código no autorizado en la aplicación" #: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" -msgstr "" +msgstr "La aplicación no se puede instalar porque no es compatible con esta versión de ownCloud" #: private/installer.php:146 msgid "" "App can't be installed because it contains the <shipped>true</shipped> tag " "which is not allowed for non shipped apps" -msgstr "" +msgstr "La aplicación no se puede instalar porque contiene la etiqueta\n<shipped>\ntrue\n</shipped>\nque no está permitida para aplicaciones no distribuidas" #: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" -msgstr "" +msgstr "La aplicación no puede ser instalada por que la versión en info.xml/version no es la misma que la establecida en la app store" #: private/installer.php:169 msgid "App directory already exists" -msgstr "" +msgstr "El directorio de la aplicación ya existe" #: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" -msgstr "" +msgstr "No se puede crear la carpeta de la aplicación. Corrija los permisos. %s" #: private/json.php:28 msgid "Application is not enabled" -msgstr "" +msgstr "La aplicación no está habilitada" #: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" -msgstr "" +msgstr "Error de autenticación" #: private/json.php:51 msgid "Token expired. Please reload page." -msgstr "" +msgstr "Token expirado. Por favor, recarga la página." #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" -msgstr "" +msgstr "Archivos" #: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" -msgstr "" +msgstr "Texto" #: private/search/provider/file.php:30 msgid "Images" -msgstr "" +msgstr "Imágenes" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." -msgstr "" +msgstr "%s ingresar el usuario de la base de datos." -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." -msgstr "" +msgstr "%s ingresar el nombre de la base de datos" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" -msgstr "" +msgstr "%s puede utilizar puntos en el nombre de la base de datos" #: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" -msgstr "" +msgstr "Usuario y/o contraseña de MS SQL no válidos: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 #: private/setup/oci.php:114 private/setup/postgresql.php:24 #: private/setup/postgresql.php:70 msgid "You need to enter either an existing account or the administrator." -msgstr "" +msgstr "Tiene que ingresar una cuenta existente o la del administrador." #: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" -msgstr "" +msgstr "Usuario y/o contraseña de MySQL no válidos" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format msgid "DB Error: \"%s\"" -msgstr "" +msgstr "Error BD: \"%s\"" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" -msgstr "" +msgstr "Comando infractor: \"%s\"" #: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." -msgstr "" +msgstr "Usuario MySQL '%s'@'localhost' ya existe." #: private/setup/mysql.php:86 msgid "Drop this user from MySQL" -msgstr "" +msgstr "Eliminar este usuario de MySQL" #: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" -msgstr "" +msgstr "Usuario MySQL '%s'@'%%' ya existe" #: private/setup/mysql.php:92 msgid "Drop this user from MySQL." -msgstr "" +msgstr "Eliminar este usuario de MySQL." #: private/setup/oci.php:34 msgid "Oracle connection could not be established" -msgstr "" +msgstr "No se pudo establecer la conexión a Oracle" #: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" -msgstr "" +msgstr "Usuario y/o contraseña de Oracle no válidos" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" -msgstr "" +msgstr "Comando infractor: \"%s\", nombre: %s, contraseña: %s" #: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" -msgstr "" +msgstr "Usuario y/o contraseña de PostgreSQL no válidos" #: private/setup.php:28 msgid "Set an admin username." -msgstr "" +msgstr "Configurar un nombre de usuario del administrador" #: private/setup.php:31 msgid "Set an admin password." -msgstr "" +msgstr "Configurar la contraseña del administrador." #: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "" +msgstr "Su servidor web aún no está configurado adecuadamente para permitir sincronización de archivos ya que la interfaz WebDAV parece no estar funcionando." #: private/setup.php:196 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." -msgstr "" +msgstr "Por favor, vuelva a comprobar las <a href='%s'>guías de instalación</a>." #: private/tags.php:194 #, php-format msgid "Could not find category \"%s\"" -msgstr "" +msgstr "No puede encontrar la categoria \"%s\"" #: private/template/functions.php:130 msgid "seconds ago" -msgstr "" +msgstr "hace segundos" #: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Hace %n minuto" +msgstr[1] "Hace %n minutos" #: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Hace %n hora" +msgstr[1] "Hace %n horas" #: private/template/functions.php:133 msgid "today" -msgstr "" +msgstr "hoy" #: private/template/functions.php:134 msgid "yesterday" -msgstr "" +msgstr "ayer" #: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Hace %n día" +msgstr[1] "Hace %n días" #: private/template/functions.php:138 msgid "last month" -msgstr "" +msgstr "mes pasado" #: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Hace %n mes" +msgstr[1] "Hace %n meses" #: private/template/functions.php:141 msgid "last year" -msgstr "" +msgstr "año pasado" #: private/template/functions.php:142 msgid "years ago" -msgstr "" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" +msgstr "hace años" diff --git a/l10n/es_MX/settings.po b/l10n/es_MX/settings.po index 2e1d62a160e..62fafbc21c8 100644 --- a/l10n/es_MX/settings.po +++ b/l10n/es_MX/settings.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-04 23:13+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2014-01-02 01:55-0500\n" +"PO-Revision-Date: 2014-01-02 01:42+0000\n" +"Last-Translator: byoship\n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,235 +19,235 @@ msgstr "" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" -msgstr "" +msgstr "No se pudo cargar la lista desde el App Store" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 changepassword/controller.php:55 msgid "Authentication error" -msgstr "" +msgstr "Error de autenticación" #: ajax/changedisplayname.php:31 msgid "Your full name has been changed." -msgstr "" +msgstr "Se ha cambiado su nombre completo." #: ajax/changedisplayname.php:34 msgid "Unable to change full name" -msgstr "" +msgstr "No se puede cambiar el nombre completo" #: ajax/creategroup.php:10 msgid "Group already exists" -msgstr "" +msgstr "El grupo ya existe" #: ajax/creategroup.php:19 msgid "Unable to add group" -msgstr "" +msgstr "No se pudo añadir el grupo" #: ajax/lostpassword.php:12 msgid "Email saved" -msgstr "" +msgstr "Correo electrónico guardado" #: ajax/lostpassword.php:14 msgid "Invalid email" -msgstr "" +msgstr "Correo electrónico no válido" #: ajax/removegroup.php:13 msgid "Unable to delete group" -msgstr "" +msgstr "No se pudo eliminar el grupo" #: ajax/removeuser.php:25 msgid "Unable to delete user" -msgstr "" +msgstr "No se pudo eliminar el usuario" #: ajax/setlanguage.php:15 msgid "Language changed" -msgstr "" +msgstr "Idioma cambiado" #: ajax/setlanguage.php:17 ajax/setlanguage.php:20 msgid "Invalid request" -msgstr "" +msgstr "Petición no válida" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" -msgstr "" +msgstr "Los administradores no se pueden eliminar a ellos mismos del grupo de administrador" #: ajax/togglegroups.php:30 #, php-format msgid "Unable to add user to group %s" -msgstr "" +msgstr "No se pudo añadir el usuario al grupo %s" #: ajax/togglegroups.php:36 #, php-format msgid "Unable to remove user from group %s" -msgstr "" +msgstr "No se pudo eliminar al usuario del grupo %s" #: ajax/updateapp.php:14 msgid "Couldn't update app." -msgstr "" +msgstr "No se pudo actualizar la aplicación." #: changepassword/controller.php:20 msgid "Wrong password" -msgstr "" +msgstr "Contraseña incorrecta" #: changepassword/controller.php:42 msgid "No user supplied" -msgstr "" +msgstr "No se especificó un usuario" #: changepassword/controller.php:74 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" -msgstr "" +msgstr "Por favor facilite una contraseña de recuperación de administrador, sino podrían perderse todos los datos de usuario" #: changepassword/controller.php:79 msgid "" "Wrong admin recovery password. Please check the password and try again." -msgstr "" +msgstr "Contraseña de recuperación de administrador incorrecta. Por favor compruebe la contraseña e inténtelo de nuevo." #: changepassword/controller.php:87 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." -msgstr "" +msgstr "El back-end no soporta cambios de contraseña, pero la clave de cifrado del usuario ha sido actualizada satisfactoriamente." #: changepassword/controller.php:92 changepassword/controller.php:103 msgid "Unable to change password" -msgstr "" +msgstr "No se ha podido cambiar la contraseña" #: js/apps.js:43 msgid "Update to {appversion}" -msgstr "" +msgstr "Actualizado a {appversion}" #: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" -msgstr "" +msgstr "Desactivar" #: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" -msgstr "" +msgstr "Activar" #: js/apps.js:71 msgid "Please wait...." -msgstr "" +msgstr "Espere, por favor...." #: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" -msgstr "" +msgstr "Error mientras se desactivaba la aplicación" #: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" -msgstr "" +msgstr "Error mientras se activaba la aplicación" #: js/apps.js:125 msgid "Updating...." -msgstr "" +msgstr "Actualizando...." #: js/apps.js:128 msgid "Error while updating app" -msgstr "" +msgstr "Error mientras se actualizaba la aplicación" #: js/apps.js:128 msgid "Error" -msgstr "" +msgstr "Error" #: js/apps.js:129 templates/apps.php:43 msgid "Update" -msgstr "" +msgstr "Actualizar" #: js/apps.js:132 msgid "Updated" -msgstr "" +msgstr "Actualizado" #: js/personal.js:220 msgid "Select a profile picture" -msgstr "" +msgstr "Seleccionar una imagen de perfil" #: js/personal.js:266 msgid "Decrypting files... Please wait, this can take some time." -msgstr "" +msgstr "Descifrando archivos... Espere por favor, esto puede llevar algo de tiempo." #: js/personal.js:287 msgid "Saving..." -msgstr "" +msgstr "Guardando..." #: js/users.js:47 msgid "deleted" -msgstr "" +msgstr "eliminado" #: js/users.js:47 msgid "undo" -msgstr "" +msgstr "deshacer" #: js/users.js:79 msgid "Unable to remove user" -msgstr "" +msgstr "Imposible eliminar al usuario" #: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" -msgstr "" +msgstr "Grupos" #: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" -msgstr "" +msgstr "Administrador del Grupo" #: js/users.js:123 templates/users.php:170 msgid "Delete" -msgstr "" +msgstr "Eliminar" #: js/users.js:284 msgid "add group" -msgstr "" +msgstr "añadir Grupo" -#: js/users.js:451 +#: js/users.js:454 msgid "A valid username must be provided" -msgstr "" +msgstr "Se debe proporcionar un nombre de usuario válido" -#: js/users.js:452 js/users.js:458 js/users.js:473 +#: js/users.js:455 js/users.js:461 js/users.js:476 msgid "Error creating user" -msgstr "" +msgstr "Error al crear usuario" -#: js/users.js:457 +#: js/users.js:460 msgid "A valid password must be provided" -msgstr "" +msgstr "Se debe proporcionar una contraseña válida" -#: js/users.js:481 +#: js/users.js:484 msgid "Warning: Home directory for user \"{user}\" already exists" -msgstr "" +msgstr "Atención: el directorio de inicio para el usuario \"{user}\" ya existe." #: personal.php:45 personal.php:46 msgid "__language_name__" -msgstr "" +msgstr "Español (México)" #: templates/admin.php:8 msgid "Everything (fatal issues, errors, warnings, info, debug)" -msgstr "" +msgstr "Todo (Información, Avisos, Errores, debug y problemas fatales)" #: templates/admin.php:9 msgid "Info, warnings, errors and fatal issues" -msgstr "" +msgstr "Información, Avisos, Errores y problemas fatales" #: templates/admin.php:10 msgid "Warnings, errors and fatal issues" -msgstr "" +msgstr "Advertencias, errores y problemas fatales" #: templates/admin.php:11 msgid "Errors and fatal issues" -msgstr "" +msgstr "Errores y problemas fatales" #: templates/admin.php:12 msgid "Fatal issues only" -msgstr "" +msgstr "Problemas fatales solamente" #: templates/admin.php:22 templates/admin.php:36 msgid "Security Warning" -msgstr "" +msgstr "Advertencia de seguridad" #: templates/admin.php:25 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." -msgstr "" +msgstr "Está ingresando a %s vía HTTP. Le recomendamos encarecidamente que configure su servidor para que requiera HTTPS." #: templates/admin.php:39 msgid "" @@ -256,68 +256,68 @@ msgid "" "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 "Su directorio de datos y archivos es probablemente accesible desde Internet pues el archivo .htaccess no está funcionando. Le sugerimos encarecidamente que configure su servidor web de modo que el directorio de datos no sea accesible o que mueva dicho directorio fuera de la raíz de documentos del servidor web." #: templates/admin.php:50 msgid "Setup Warning" -msgstr "" +msgstr "Advertencia de configuración" #: templates/admin.php:53 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "" +msgstr "Su servidor web aún no está configurado adecuadamente para permitir la sincronización de archivos ya que la interfaz WebDAV parece no estar funcionando." #: templates/admin.php:54 #, php-format msgid "Please double check the <a href=\"%s\">installation guides</a>." -msgstr "" +msgstr "Por favor, vuelva a comprobar las <a href='%s'>guías de instalación</a>." #: templates/admin.php:65 msgid "Module 'fileinfo' missing" -msgstr "" +msgstr "No se ha encontrado el módulo \"fileinfo\"" #: templates/admin.php:68 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." -msgstr "" +msgstr "No se ha encontrado el modulo PHP 'fileinfo'. Le recomendamos encarecidamente que habilite este módulo para obtener mejores resultados con la detección de tipos MIME." #: templates/admin.php:79 msgid "Your PHP version is outdated" -msgstr "" +msgstr "Su versión de PHP ha caducado" #: templates/admin.php:82 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." -msgstr "" +msgstr "Su versión de PHP ha caducado. Le sugerimos encarecidamente que la actualize a 5.3.8 o a una más nueva porque normalmente las versiones antiguas no funcionan bien. Puede ser que esta instalación no esté funcionando bien por ello." #: templates/admin.php:93 msgid "Locale not working" -msgstr "" +msgstr "La configuración regional no está funcionando" #: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." -msgstr "" +msgstr "No se puede escoger una configuración regional que soporte UTF-8." #: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." -msgstr "" +msgstr "Esto significa que puede haber problemas con ciertos caracteres en los nombres de los archivos." #: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." -msgstr "" +msgstr "Es muy recomendable instalar los paquetes necesarios para poder soportar una de las siguientes configuraciones regionales: %s. " #: templates/admin.php:118 msgid "Internet connection not working" -msgstr "" +msgstr "La conexión a Internet no está funcionando" #: templates/admin.php:121 msgid "" @@ -326,118 +326,118 @@ msgid "" "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." -msgstr "" +msgstr "Este servidor no tiene conexión a Internet. Esto significa que algunas de las características no funcionarán, como el montaje de almacenamiento externo, las notificaciones sobre actualizaciones, la instalación de aplicaciones de terceros, el acceso a los archivos de forma remota o el envío de correos electrónicos de notificación. Sugerimos habilitar una conexión a Internet en este servidor para disfrutar de todas las funciones." #: templates/admin.php:135 msgid "Cron" -msgstr "" +msgstr "Cron" #: templates/admin.php:142 msgid "Execute one task with each page loaded" -msgstr "" +msgstr "Ejecutar una tarea con cada página cargada" #: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." -msgstr "" +msgstr "cron.php se registra en un servicio webcron para llamar a cron.php cada 15 minutos a través de HTTP." #: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." -msgstr "" +msgstr "Utiliza el servicio cron del sistema para llamar al archivo cron.php cada 15 minutos." #: templates/admin.php:163 msgid "Sharing" -msgstr "" +msgstr "Compartiendo" #: templates/admin.php:169 msgid "Enable Share API" -msgstr "" +msgstr "Activar API de Compartición" #: templates/admin.php:170 msgid "Allow apps to use the Share API" -msgstr "" +msgstr "Permitir a las aplicaciones utilizar la API de Compartición" #: templates/admin.php:177 msgid "Allow links" -msgstr "" +msgstr "Permitir enlaces" #: templates/admin.php:178 msgid "Allow users to share items to the public with links" -msgstr "" +msgstr "Permitir a los usuarios compartir elementos con el público mediante enlaces" #: templates/admin.php:186 msgid "Allow public uploads" -msgstr "" +msgstr "Permitir subidas públicas" #: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" -msgstr "" +msgstr "Permitir a los usuarios habilitar a otros para subir archivos en sus carpetas compartidas públicamente" #: templates/admin.php:195 msgid "Allow resharing" -msgstr "" +msgstr "Permitir re-compartición" #: templates/admin.php:196 msgid "Allow users to share items shared with them again" -msgstr "" +msgstr "Permitir a los usuarios compartir de nuevo elementos ya compartidos" #: templates/admin.php:203 msgid "Allow users to share with anyone" -msgstr "" +msgstr "Permitir a los usuarios compartir con cualquier persona" #: templates/admin.php:206 msgid "Allow users to only share with users in their groups" -msgstr "" +msgstr "Permitir a los usuarios compartir sólo con los usuarios en sus grupos" #: templates/admin.php:213 msgid "Allow mail notification" -msgstr "" +msgstr "Permitir notificaciones por correo electrónico" #: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" -msgstr "" +msgstr "Permitir al usuario enviar notificaciones por correo electrónico de archivos compartidos" #: templates/admin.php:221 msgid "Security" -msgstr "" +msgstr "Seguridad" #: templates/admin.php:234 msgid "Enforce HTTPS" -msgstr "" +msgstr "Forzar HTTPS" #: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." -msgstr "" +msgstr "Forzar a los clientes a conectarse a %s por medio de una conexión cifrada." #: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." -msgstr "" +msgstr "Por favor, conéctese a su %s a través de HTTPS para habilitar o deshabilitar la aplicación de SSL." #: templates/admin.php:254 msgid "Log" -msgstr "" +msgstr "Registro" #: templates/admin.php:255 msgid "Log level" -msgstr "" +msgstr "Nivel de registro" #: templates/admin.php:287 msgid "More" -msgstr "" +msgstr "Más" #: templates/admin.php:288 msgid "Less" -msgstr "" +msgstr "Menos" #: templates/admin.php:294 templates/personal.php:173 msgid "Version" -msgstr "" +msgstr "Versión" #: templates/admin.php:298 templates/personal.php:176 msgid "" @@ -447,222 +447,222 @@ msgid "" "licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" " "target=\"_blank\"><abbr title=\"Affero General Public " "License\">AGPL</abbr></a>." -msgstr "" +msgstr "Desarrollado por la <a href=\"http://ownCloud.org/contact\" target=\"_blank\">comunidad ownCloud</a>, el <a href=\"https://github.com/owncloud\" target=\"_blank\">código fuente</a> está bajo licencia <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." #: templates/apps.php:13 msgid "Add your App" -msgstr "" +msgstr "Añade tu aplicación" #: templates/apps.php:28 msgid "More Apps" -msgstr "" +msgstr "Más aplicaciones" #: templates/apps.php:33 msgid "Select an App" -msgstr "" +msgstr "Seleccionar una aplicación" #: templates/apps.php:39 msgid "See application page at apps.owncloud.com" -msgstr "" +msgstr "Ver la página de aplicaciones en apps.owncloud.com" #: templates/apps.php:41 msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" -msgstr "" +msgstr "<span class=\"licence\"></span>-licencia otorgada por <span class=\"author\"></span>" #: templates/help.php:4 msgid "User Documentation" -msgstr "" +msgstr "Documentación de usuario" #: templates/help.php:6 msgid "Administrator Documentation" -msgstr "" +msgstr "Documentación de administrador" #: templates/help.php:9 msgid "Online Documentation" -msgstr "" +msgstr "Documentación en línea" #: templates/help.php:11 msgid "Forum" -msgstr "" +msgstr "Foro" #: templates/help.php:14 msgid "Bugtracker" -msgstr "" +msgstr "Rastreador de fallos" #: templates/help.php:17 msgid "Commercial Support" -msgstr "" +msgstr "Soporte comercial" #: templates/personal.php:8 msgid "Get the apps to sync your files" -msgstr "" +msgstr "Obtener las aplicaciones para sincronizar sus archivos" #: templates/personal.php:19 msgid "Show First Run Wizard again" -msgstr "" +msgstr "Mostrar nuevamente el Asistente de ejecución inicial" #: templates/personal.php:27 #, php-format msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>" -msgstr "" +msgstr "Ha usado <strong>%s</strong> de los <strong>%s</strong> disponibles" #: templates/personal.php:39 templates/users.php:23 templates/users.php:89 msgid "Password" -msgstr "" +msgstr "Contraseña" #: templates/personal.php:40 msgid "Your password was changed" -msgstr "" +msgstr "Su contraseña ha sido cambiada" #: templates/personal.php:41 msgid "Unable to change your password" -msgstr "" +msgstr "No se ha podido cambiar su contraseña" #: templates/personal.php:42 msgid "Current password" -msgstr "" +msgstr "Contraseña actual" #: templates/personal.php:44 msgid "New password" -msgstr "" +msgstr "Nueva contraseña" #: templates/personal.php:46 msgid "Change password" -msgstr "" +msgstr "Cambiar contraseña" #: templates/personal.php:58 templates/users.php:88 msgid "Full Name" -msgstr "" +msgstr "Nombre completo" #: templates/personal.php:73 msgid "Email" -msgstr "" +msgstr "Correo electrónico" #: templates/personal.php:75 msgid "Your email address" -msgstr "" +msgstr "Su dirección de correo" #: templates/personal.php:76 msgid "Fill in an email address to enable password recovery" -msgstr "" +msgstr "Escriba una dirección de correo electrónico para restablecer la contraseña" #: templates/personal.php:86 msgid "Profile picture" -msgstr "" +msgstr "Foto de perfil" #: templates/personal.php:91 msgid "Upload new" -msgstr "" +msgstr "Subir otra" #: templates/personal.php:93 msgid "Select new from Files" -msgstr "" +msgstr "Seleccionar otra desde Archivos" #: templates/personal.php:94 msgid "Remove image" -msgstr "" +msgstr "Borrar imagen" #: templates/personal.php:95 msgid "Either png or jpg. Ideally square but you will be able to crop it." -msgstr "" +msgstr "Archivo PNG o JPG. Preferiblemente cuadrado, pero tendrás la posibilidad de recortarlo." #: templates/personal.php:97 msgid "Your avatar is provided by your original account." -msgstr "" +msgstr "Su avatar es proporcionado por su cuenta original." #: templates/personal.php:101 msgid "Abort" -msgstr "" +msgstr "Cancelar" #: templates/personal.php:102 msgid "Choose as profile image" -msgstr "" +msgstr "Seleccionar como imagen de perfil" #: templates/personal.php:110 templates/personal.php:111 msgid "Language" -msgstr "" +msgstr "Idioma" #: templates/personal.php:130 msgid "Help translate" -msgstr "" +msgstr "Ayúdanos a traducir" #: templates/personal.php:137 msgid "WebDAV" -msgstr "" +msgstr "WebDAV" #: templates/personal.php:139 #, php-format msgid "" "Use this address to <a href=\"%s\" target=\"_blank\">access your Files via " "WebDAV</a>" -msgstr "" +msgstr "Utilice esta dirección para <a href=\"%s\" target=\"_blank\">acceder a sus archivos vía WebDAV</a>" #: templates/personal.php:150 msgid "Encryption" -msgstr "" +msgstr "Cifrado" #: templates/personal.php:152 msgid "The encryption app is no longer enabled, please decrypt all your files" -msgstr "" +msgstr "La aplicación de cifrado ya no está activada, descifre todos sus archivos" #: templates/personal.php:158 msgid "Log-in password" -msgstr "" +msgstr "Contraseña de acceso" #: templates/personal.php:163 msgid "Decrypt all Files" -msgstr "" +msgstr "Descifrar archivos" #: templates/users.php:21 msgid "Login Name" -msgstr "" +msgstr "Nombre de usuario" #: templates/users.php:30 msgid "Create" -msgstr "" +msgstr "Crear" #: templates/users.php:36 msgid "Admin Recovery Password" -msgstr "" +msgstr "Recuperación de la contraseña de administración" #: templates/users.php:37 templates/users.php:38 msgid "" "Enter the recovery password in order to recover the users files during " "password change" -msgstr "" +msgstr "Introduzca la contraseña de recuperación a fin de recuperar los archivos de los usuarios durante el cambio de contraseña." #: templates/users.php:42 msgid "Default Storage" -msgstr "" +msgstr "Almacenamiento predeterminado" #: templates/users.php:44 templates/users.php:139 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" -msgstr "" +msgstr "Por favor indique la cúota de almacenamiento (ej: \"512 MB\" o \"12 GB\")" #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" -msgstr "" +msgstr "Ilimitado" #: templates/users.php:66 templates/users.php:163 msgid "Other" -msgstr "" +msgstr "Otro" #: templates/users.php:87 msgid "Username" -msgstr "" +msgstr "Nombre de usuario" #: templates/users.php:94 msgid "Storage" -msgstr "" +msgstr "Almacenamiento" #: templates/users.php:108 msgid "change full name" -msgstr "" +msgstr "cambiar el nombre completo" #: templates/users.php:112 msgid "set new password" -msgstr "" +msgstr "establecer nueva contraseña" #: templates/users.php:143 msgid "Default" -msgstr "" +msgstr "Predeterminado" diff --git a/l10n/es_MX/user_ldap.po b/l10n/es_MX/user_ldap.po index 0a27d53a545..4a5d82737a3 100644 --- a/l10n/es_MX/user_ldap.po +++ b/l10n/es_MX/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2014-01-02 01:55-0500\n" +"PO-Revision-Date: 2013-12-31 19:50+0000\n" +"Last-Translator: byoship\n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,429 +19,429 @@ msgstr "" #: ajax/clearMappings.php:34 msgid "Failed to clear the mappings." -msgstr "" +msgstr "Ocurrió un fallo al borrar las asignaciones." #: ajax/deleteConfiguration.php:34 msgid "Failed to delete the server configuration" -msgstr "" +msgstr "No se pudo borrar la configuración del servidor" -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" -msgstr "" +msgstr "¡La configuración es válida y la conexión puede establecerse!" -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." -msgstr "" +msgstr "La configuración es válida, pero falló el Enlace. Por favor, compruebe la configuración del servidor y las credenciales." -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." -msgstr "" +msgstr "La configuración no es válida. Por favor, busque en el log para más detalles." #: ajax/wizard.php:32 msgid "No action specified" -msgstr "" +msgstr "No se ha especificado la acción" #: ajax/wizard.php:38 msgid "No configuration specified" -msgstr "" +msgstr "No se ha especificado la configuración" #: ajax/wizard.php:81 msgid "No data specified" -msgstr "" +msgstr "No se han especificado los datos" #: ajax/wizard.php:89 #, php-format msgid " Could not set configuration %s" -msgstr "" +msgstr "No se pudo establecer la configuración %s" #: js/settings.js:67 msgid "Deletion failed" -msgstr "" +msgstr "Falló el borrado" #: js/settings.js:83 msgid "Take over settings from recent server configuration?" -msgstr "" +msgstr "¿Asumir los ajustes actuales de la configuración del servidor?" #: js/settings.js:84 msgid "Keep settings?" -msgstr "" +msgstr "¿Mantener la configuración?" #: js/settings.js:99 msgid "Cannot add server configuration" -msgstr "" +msgstr "No se puede añadir la configuración del servidor" #: js/settings.js:127 msgid "mappings cleared" -msgstr "" +msgstr "Asignaciones borradas" #: js/settings.js:128 msgid "Success" -msgstr "" +msgstr "Éxito" #: js/settings.js:133 msgid "Error" -msgstr "" +msgstr "Error" -#: js/settings.js:777 +#: js/settings.js:837 msgid "Configuration OK" -msgstr "" +msgstr "Configuración OK" -#: js/settings.js:786 +#: js/settings.js:846 msgid "Configuration incorrect" -msgstr "" +msgstr "Configuración Incorrecta" -#: js/settings.js:795 +#: js/settings.js:855 msgid "Configuration incomplete" -msgstr "" +msgstr "Configuración incompleta" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:872 js/settings.js:881 msgid "Select groups" -msgstr "" +msgstr "Seleccionar grupos" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:875 js/settings.js:884 msgid "Select object classes" -msgstr "" +msgstr "Seleccionar la clase de objeto" -#: js/settings.js:818 +#: js/settings.js:878 msgid "Select attributes" -msgstr "" +msgstr "Seleccionar atributos" -#: js/settings.js:845 +#: js/settings.js:905 msgid "Connection test succeeded" -msgstr "" +msgstr "La prueba de conexión fue exitosa" -#: js/settings.js:852 +#: js/settings.js:912 msgid "Connection test failed" -msgstr "" +msgstr "La prueba de conexión falló" -#: js/settings.js:861 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" -msgstr "" +msgstr "¿Realmente desea eliminar la configuración actual del servidor?" -#: js/settings.js:862 +#: js/settings.js:922 msgid "Confirm Deletion" -msgstr "" +msgstr "Confirmar eliminación" #: lib/wizard.php:79 lib/wizard.php:93 #, php-format msgid "%s group found" msgid_plural "%s groups found" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Grupo %s encontrado" +msgstr[1] "Grupos %s encontrados" #: lib/wizard.php:122 #, php-format msgid "%s user found" msgid_plural "%s users found" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Usuario %s encontrado" +msgstr[1] "Usuarios %s encontrados" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:778 lib/wizard.php:790 msgid "Invalid Host" -msgstr "" +msgstr "Host inválido" -#: lib/wizard.php:952 +#: lib/wizard.php:951 msgid "Could not find the desired feature" -msgstr "" +msgstr "No se puede encontrar la función deseada." #: templates/part.settingcontrols.php:2 msgid "Save" -msgstr "" +msgstr "Guardar" #: templates/part.settingcontrols.php:4 msgid "Test Configuration" -msgstr "" +msgstr "Configuración de prueba" #: templates/part.settingcontrols.php:10 templates/part.wizardcontrols.php:14 msgid "Help" -msgstr "" +msgstr "Ayuda" #: templates/part.wizard-groupfilter.php:4 #, php-format msgid "Limit the access to %s to groups meeting this criteria:" -msgstr "" +msgstr "Limitar el acceso a %s a los grupos que cumplan este criterio:" #: templates/part.wizard-groupfilter.php:8 #: templates/part.wizard-userfilter.php:8 msgid "only those object classes:" -msgstr "" +msgstr "solamente de estas clases de objeto:" #: templates/part.wizard-groupfilter.php:17 #: templates/part.wizard-userfilter.php:17 msgid "only from those groups:" -msgstr "" +msgstr "solamente de estos grupos:" #: templates/part.wizard-groupfilter.php:25 #: templates/part.wizard-loginfilter.php:32 #: templates/part.wizard-userfilter.php:25 msgid "Edit raw filter instead" -msgstr "" +msgstr "Editar el filtro en bruto en su lugar" #: templates/part.wizard-groupfilter.php:30 #: templates/part.wizard-loginfilter.php:37 #: templates/part.wizard-userfilter.php:30 msgid "Raw LDAP filter" -msgstr "" +msgstr "Filtro LDAP en bruto" #: templates/part.wizard-groupfilter.php:31 #, php-format msgid "" "The filter specifies which LDAP groups shall have access to the %s instance." -msgstr "" +msgstr "El filtro especifica que grupos LDAP tendrán acceso a %s." #: templates/part.wizard-groupfilter.php:38 msgid "groups found" -msgstr "" +msgstr "grupos encontrados" #: templates/part.wizard-loginfilter.php:4 msgid "What attribute shall be used as login name:" -msgstr "" +msgstr "Que atributo debe ser usado como login:" #: templates/part.wizard-loginfilter.php:8 msgid "LDAP Username:" -msgstr "" +msgstr "Nombre de usuario LDAP:" #: templates/part.wizard-loginfilter.php:16 msgid "LDAP Email Address:" -msgstr "" +msgstr "Dirección e-mail LDAP:" #: templates/part.wizard-loginfilter.php:24 msgid "Other Attributes:" -msgstr "" +msgstr "Otros atributos:" #: templates/part.wizard-loginfilter.php:38 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action. Example: \"uid=%%uid\"" -msgstr "" +msgstr "Define el filtro a aplicar cuando se intenta identificar. %%uid remplazará al nombre de usuario en el proceso de identificación. Por ejemplo: \"uid=%%uid\"" #: templates/part.wizard-server.php:18 msgid "Add Server Configuration" -msgstr "" +msgstr "Agregar configuracion del servidor" #: templates/part.wizard-server.php:30 msgid "Host" -msgstr "" +msgstr "Servidor" #: templates/part.wizard-server.php:31 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" -msgstr "" +msgstr "Puede omitir el protocolo, excepto si requiere SSL. En ese caso, empiece con ldaps://" #: templates/part.wizard-server.php:36 msgid "Port" -msgstr "" +msgstr "Puerto" #: templates/part.wizard-server.php:44 msgid "User DN" -msgstr "" +msgstr "DN usuario" #: templates/part.wizard-server.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." -msgstr "" +msgstr "El DN del usuario cliente con el que se hará la asociación, p.ej. uid=agente,dc=ejemplo,dc=com. Para acceso anónimo, deje DN y contraseña vacíos." #: templates/part.wizard-server.php:52 msgid "Password" -msgstr "" +msgstr "Contraseña" #: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." -msgstr "" +msgstr "Para acceso anónimo, deje DN y contraseña vacíos." #: templates/part.wizard-server.php:60 msgid "One Base DN per line" -msgstr "" +msgstr "Un DN Base por línea" #: templates/part.wizard-server.php:61 msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "" +msgstr "Puede especificar el DN base para usuarios y grupos en la pestaña Avanzado" #: templates/part.wizard-userfilter.php:4 #, php-format msgid "Limit the access to %s to users meeting this criteria:" -msgstr "" +msgstr "Limitar el acceso a %s a los usuarios que cumplan el siguiente criterio:" #: templates/part.wizard-userfilter.php:31 #, php-format msgid "" "The filter specifies which LDAP users shall have access to the %s instance." -msgstr "" +msgstr "El filtro especifica que usuarios LDAP pueden tener acceso a %s." #: templates/part.wizard-userfilter.php:38 msgid "users found" -msgstr "" +msgstr "usuarios encontrados" #: templates/part.wizardcontrols.php:5 msgid "Back" -msgstr "" +msgstr "Atrás" #: templates/part.wizardcontrols.php:8 msgid "Continue" -msgstr "" +msgstr "Continuar" #: templates/settings.php:11 msgid "" "<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may" " experience unexpected behavior. Please ask your system administrator to " "disable one of them." -msgstr "" +msgstr "<b>Advertencia:</b> Las apps user_ldap y user_webdavauth son incompatibles. Puede que experimente un comportamiento inesperado. Pregunte al su administrador de sistemas para desactivar uno de ellos." #: templates/settings.php:14 msgid "" "<b>Warning:</b> The PHP LDAP module is not installed, the backend will not " "work. Please ask your system administrator to install it." -msgstr "" +msgstr "<b>Advertencia:</b> El módulo LDAP de PHP no está instalado, el sistema no funcionará. Por favor consulte al administrador del sistema para instalarlo." #: templates/settings.php:20 msgid "Connection Settings" -msgstr "" +msgstr "Configuración de conexión" #: templates/settings.php:22 msgid "Configuration Active" -msgstr "" +msgstr "Configuracion activa" #: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." -msgstr "" +msgstr "Cuando deseleccione, esta configuracion sera omitida." #: templates/settings.php:23 msgid "Backup (Replica) Host" -msgstr "" +msgstr "Servidor de copia de seguridad (Replica)" #: templates/settings.php:23 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." -msgstr "" +msgstr "Dar un servidor de copia de seguridad opcional. Debe ser una réplica del servidor principal LDAP / AD." #: templates/settings.php:24 msgid "Backup (Replica) Port" -msgstr "" +msgstr "Puerto para copias de seguridad (Replica)" #: templates/settings.php:25 msgid "Disable Main Server" -msgstr "" +msgstr "Deshabilitar servidor principal" #: templates/settings.php:25 msgid "Only connect to the replica server." -msgstr "" +msgstr "Conectar sólo con el servidor de réplica." #: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" -msgstr "" +msgstr "Servidor de LDAP no sensible a mayúsculas/minúsculas (Windows)" #: templates/settings.php:27 msgid "Turn off SSL certificate validation." -msgstr "" +msgstr "Apagar la validación por certificado SSL." #: templates/settings.php:27 #, php-format msgid "" "Not recommended, use it for testing only! If connection only works with this" " option, import the LDAP server's SSL certificate in your %s server." -msgstr "" +msgstr "No se recomienda, ¡utilízalo únicamente para pruebas! Si la conexión únicamente funciona con esta opción, importa el certificado SSL del servidor LDAP en tu servidor %s." #: templates/settings.php:28 msgid "Cache Time-To-Live" -msgstr "" +msgstr "Cache TTL" #: templates/settings.php:28 msgid "in seconds. A change empties the cache." -msgstr "" +msgstr "en segundos. Un cambio vacía la caché." #: templates/settings.php:30 msgid "Directory Settings" -msgstr "" +msgstr "Configuración de directorio" #: templates/settings.php:32 msgid "User Display Name Field" -msgstr "" +msgstr "Campo de nombre de usuario a mostrar" #: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." -msgstr "" +msgstr "El campo LDAP a usar para generar el nombre para mostrar del usuario." #: templates/settings.php:33 msgid "Base User Tree" -msgstr "" +msgstr "Árbol base de usuario" #: templates/settings.php:33 msgid "One User Base DN per line" -msgstr "" +msgstr "Un DN Base de Usuario por línea" #: templates/settings.php:34 msgid "User Search Attributes" -msgstr "" +msgstr "Atributos de la busqueda de usuario" #: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" -msgstr "" +msgstr "Opcional; un atributo por linea" #: templates/settings.php:35 msgid "Group Display Name Field" -msgstr "" +msgstr "Campo de nombre de grupo a mostrar" #: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." -msgstr "" +msgstr "El campo LDAP a usar para generar el nombre para mostrar del grupo." #: templates/settings.php:36 msgid "Base Group Tree" -msgstr "" +msgstr "Árbol base de grupo" #: templates/settings.php:36 msgid "One Group Base DN per line" -msgstr "" +msgstr "Un DN Base de Grupo por línea" #: templates/settings.php:37 msgid "Group Search Attributes" -msgstr "" +msgstr "Atributos de busqueda de grupo" #: templates/settings.php:38 msgid "Group-Member association" -msgstr "" +msgstr "Asociación Grupo-Miembro" #: templates/settings.php:40 msgid "Special Attributes" -msgstr "" +msgstr "Atributos especiales" #: templates/settings.php:42 msgid "Quota Field" -msgstr "" +msgstr "Cuota" #: templates/settings.php:43 msgid "Quota Default" -msgstr "" +msgstr "Cuota por defecto" #: templates/settings.php:43 msgid "in bytes" -msgstr "" +msgstr "en bytes" #: templates/settings.php:44 msgid "Email Field" -msgstr "" +msgstr "E-mail" #: templates/settings.php:45 msgid "User Home Folder Naming Rule" -msgstr "" +msgstr "Regla para la carpeta Home de usuario" #: templates/settings.php:45 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." -msgstr "" +msgstr "Vacío para el nombre de usuario (por defecto). En otro caso, especifique un atributo LDAP/AD." #: templates/settings.php:51 msgid "Internal Username" -msgstr "" +msgstr "Nombre de usuario interno" #: templates/settings.php:52 msgid "" @@ -457,15 +457,15 @@ msgid "" "behavior as before ownCloud 5 enter the user display name attribute in the " "following field. Leave it empty for default behavior. Changes will have " "effect only on newly mapped (added) LDAP users." -msgstr "" +msgstr "El nombre de usuario interno será creado de forma predeterminada desde el atributo UUID. Esto asegura que el nombre de usuario es único y los caracteres no necesitan ser convertidos. En el nombre de usuario interno sólo se pueden usar estos caracteres: [ a-zA-Z0-9_.@- ]. El resto de caracteres son sustituidos por su correspondiente en ASCII o simplemente omitidos. En caso de duplicidades, se añadirá o incrementará un número. El nombre de usuario interno es usado para identificar un usuario. Es también el nombre predeterminado para la carpeta personal del usuario en ownCloud. También es parte de URLs remotas, por ejemplo, para todos los servicios *DAV. Con esta configuración el comportamiento predeterminado puede ser cambiado. Para conseguir un comportamiento similar a como era antes de ownCloud 5, introduzca el campo del nombre para mostrar del usuario en la siguiente caja. Déjelo vacío para el comportamiento predeterminado. Los cambios solo tendrán efecto en los usuarios LDAP mapeados (añadidos) recientemente." #: templates/settings.php:53 msgid "Internal Username Attribute:" -msgstr "" +msgstr "Atributo Nombre de usuario Interno:" #: templates/settings.php:54 msgid "Override UUID detection" -msgstr "" +msgstr "Sobrescribir la detección UUID" #: templates/settings.php:55 msgid "" @@ -476,19 +476,19 @@ msgid "" "You must make sure that the attribute of your choice can be fetched for both" " users and groups and it is unique. Leave it empty for default behavior. " "Changes will have effect only on newly mapped (added) LDAP users and groups." -msgstr "" +msgstr "Por defecto, el atributo UUID es autodetectado. Este atributo es usado para identificar indudablemente usuarios y grupos LDAP. Además, el nombre de usuario interno será creado en base al UUID, si no ha sido especificado otro comportamiento arriba. Puedes sobrescribir la configuración y pasar un atributo de tu elección. Debes asegurarte de que el atributo de tu elección sea accesible por los usuarios y grupos y ser único. Déjalo en blanco para usar el comportamiento por defecto. Los cambios tendrán efecto solo en los usuarios y grupos de LDAP mapeados (añadidos) recientemente." #: templates/settings.php:56 msgid "UUID Attribute for Users:" -msgstr "" +msgstr "Atributo UUID para usuarios:" #: templates/settings.php:57 msgid "UUID Attribute for Groups:" -msgstr "" +msgstr "Atributo UUID para Grupos:" #: templates/settings.php:58 msgid "Username-LDAP User Mapping" -msgstr "" +msgstr "Asignación del Nombre de usuario de un usuario LDAP" #: templates/settings.php:59 msgid "" @@ -502,12 +502,12 @@ msgid "" " is not configuration sensitive, it affects all LDAP configurations! Never " "clear the mappings in a production environment, only in a testing or " "experimental stage." -msgstr "" +msgstr "Los usuarios son usados para almacenar y asignar (meta) datos. Con el fin de identificar de forma precisa y reconocer usuarios, cada usuario de LDAP tendrá un nombre de usuario interno. Esto requiere un mapeo entre el nombre de usuario y el usuario del LDAP. El nombre de usuario creado es mapeado respecto al UUID del usuario en el LDAP. De forma adicional, el DN es cacheado para reducir la interacción entre el LDAP, pero no es usado para identificar. Si el DN cambia, los cambios serán aplicados. El nombre de usuario interno es usado por encima de todo. Limpiar los mapeos dejará restos por todas partes, no es sensible a configuración, ¡afecta a todas las configuraciones del LDAP! Nunca limpies los mapeos en un entorno de producción, únicamente en una fase de desarrollo o experimental." #: templates/settings.php:60 msgid "Clear Username-LDAP User Mapping" -msgstr "" +msgstr "Borrar la asignación de los Nombres de usuario de los usuarios LDAP" #: templates/settings.php:60 msgid "Clear Groupname-LDAP Group Mapping" -msgstr "" +msgstr "Borrar la asignación de los Nombres de grupo de los grupos de LDAP" diff --git a/l10n/es_MX/user_webdavauth.po b/l10n/es_MX/user_webdavauth.po index 9948a588c8b..063bdc8a6b7 100644 --- a/l10n/es_MX/user_webdavauth.po +++ b/l10n/es_MX/user_webdavauth.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-07 07:27+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-01-02 01:55-0500\n" +"PO-Revision-Date: 2013-12-31 19:40+0000\n" +"Last-Translator: byoship\n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,15 +19,15 @@ msgstr "" #: templates/settings.php:3 msgid "WebDAV Authentication" -msgstr "" +msgstr "Autenticación mediante WevDAV" #: templates/settings.php:4 msgid "Address: " -msgstr "" +msgstr "Dirección:" #: templates/settings.php:7 msgid "" "The user credentials will be sent to this address. 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 "Las credenciales de usuario se enviarán a esta dirección. Este complemento verifica la respuesta e interpretará los códigos de respuesta HTTP 401 y 403 como credenciales inválidas y todas las otras respuestas como credenciales válidas." diff --git a/l10n/et_EE/core.po b/l10n/et_EE/core.po index ea06561788e..c9eaf5ba161 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-13 14:43-0500\n" -"PO-Revision-Date: 2013-12-13 10:10+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: pisike.sipelgas <pisike.sipelgas@gmail.com>\n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -150,59 +150,59 @@ msgstr "November" msgid "December" msgstr "Detsember" -#: js/js.js:394 +#: js/js.js:398 msgid "Settings" msgstr "Seaded" -#: js/js.js:865 +#: js/js.js:869 msgid "seconds ago" msgstr "sekundit tagasi" -#: js/js.js:866 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minut tagasi" msgstr[1] "%n minutit tagasi" -#: js/js.js:867 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n tund tagasi" msgstr[1] "%n tundi tagasi" -#: js/js.js:868 +#: js/js.js:872 msgid "today" msgstr "täna" -#: js/js.js:869 +#: js/js.js:873 msgid "yesterday" msgstr "eile" -#: js/js.js:870 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n päev tagasi" msgstr[1] "%n päeva tagasi" -#: js/js.js:871 +#: js/js.js:875 msgid "last month" msgstr "viimasel kuul" -#: js/js.js:872 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n kuu tagasi" msgstr[1] "%n kuud tagasi" -#: js/js.js:873 +#: js/js.js:877 msgid "months ago" msgstr "kuu tagasi" -#: js/js.js:874 +#: js/js.js:878 msgid "last year" msgstr "viimasel aastal" -#: js/js.js:875 +#: js/js.js:879 msgid "years ago" msgstr "aastat tagasi" diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index 3a8fe37ab2f..d7c7f5265de 100644 --- a/l10n/et_EE/files.po +++ b/l10n/et_EE/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-11 13:31-0500\n" -"PO-Revision-Date: 2013-12-09 12:00+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -48,12 +48,17 @@ msgstr "Nimi %s on juba kasutusel kataloogis %s. Palun vali mõni teine nimi." msgid "Not a valid source" msgstr "Pole korrektne lähteallikas" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" msgstr "Viga %s allalaadimisel %s" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "Viga faili loomisel" @@ -173,6 +178,10 @@ msgstr "Ei suuda luua faili" msgid "Could not create folder" msgstr "Ei suuda luua kataloogi" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "Jaga" diff --git a/l10n/et_EE/lib.po b/l10n/et_EE/lib.po index 6f8d989e511..7f76fa15227 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-24 00:13-0500\n" -"PO-Revision-Date: 2013-11-22 09:40+0000\n" -"Last-Translator: pisike.sipelgas <pisike.sipelgas@gmail.com>\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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" @@ -55,15 +55,15 @@ msgstr "Admin" msgid "Failed to upgrade \"%s\"." msgstr "Ebaõnnestunud uuendus \"%s\"." -#: private/avatar.php:62 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "Tundmatu failitüüp" -#: private/avatar.php:67 +#: private/avatar.php:71 msgid "Invalid image" msgstr "Vigane pilt" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "veebitenused sinu kontrolli all" @@ -72,23 +72,23 @@ msgstr "veebitenused sinu kontrolli all" msgid "cannot open \"%s\"" msgstr "ei suuda avada \"%s\"" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "ZIP-ina allalaadimine on välja lülitatud." -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Failid tuleb alla laadida ükshaaval." -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Tagasi failide juurde" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Valitud failid on ZIP-faili loomiseks liiga suured." -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -174,17 +174,17 @@ msgstr "Tekst" msgid "Images" msgstr "Pildid" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s sisesta andmebaasi kasutajatunnus." -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s sisesta andmebaasi nimi." -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s punktide kasutamine andmebaasi nimes pole lubatud" @@ -205,11 +205,11 @@ msgid "MySQL username and/or password not valid" msgstr "MySQL kasutajatunnus ja/või parool pole õiged" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -217,10 +217,10 @@ msgid "DB Error: \"%s\"" msgstr "Andmebaasi viga: \"%s\"" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -253,7 +253,7 @@ msgstr "Ei suuda luua ühendust Oracle baasiga" msgid "Oracle username and/or password not valid" msgstr "Oracle kasutajatunnus ja/või parool pole õiged" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Tõrkuv käsk oli: \"%s\", nimi: %s, parool: %s" @@ -333,7 +333,3 @@ msgstr "viimasel aastal" #: private/template/functions.php:142 msgid "years ago" msgstr "aastat tagasi" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "Põhjustaja:" diff --git a/l10n/et_EE/user_ldap.po b/l10n/et_EE/user_ldap.po index 9ba2969aa86..afe426888cc 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -27,17 +27,17 @@ msgstr "Vastendususte puhastamine ebaõnnestus." msgid "Failed to delete the server configuration" msgstr "Serveri seadistuse kustutamine ebaõnnestus" -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "Seadistus on korrektne ning ühendus on olemas!" -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "Seadistus on korrektne, kuid ühendus ebaõnnestus. Palun kontrolli serveri seadeid ja ühenduseks kasutatavaid kasutajatunnuseid." -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." @@ -88,43 +88,43 @@ msgstr "Korras" msgid "Error" msgstr "Viga" -#: js/settings.js:777 +#: js/settings.js:837 msgid "Configuration OK" msgstr "Seadistus on korras" -#: js/settings.js:786 +#: js/settings.js:846 msgid "Configuration incorrect" msgstr "Seadistus on vigane" -#: js/settings.js:795 +#: js/settings.js:855 msgid "Configuration incomplete" msgstr "Seadistus on puudulik" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:872 js/settings.js:881 msgid "Select groups" msgstr "Vali grupid" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:875 js/settings.js:884 msgid "Select object classes" msgstr "Vali objekti klassid" -#: js/settings.js:818 +#: js/settings.js:878 msgid "Select attributes" msgstr "Vali atribuudid" -#: js/settings.js:845 +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "Ühenduse testimine õnnestus" -#: js/settings.js:852 +#: js/settings.js:912 msgid "Connection test failed" msgstr "Ühenduse testimine ebaõnnestus" -#: js/settings.js:861 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "Oled kindel, et tahad kustutada praegust serveri seadistust?" -#: js/settings.js:862 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "Kinnita kustutamine" @@ -142,11 +142,11 @@ msgid_plural "%s users found" msgstr[0] "%s kasutaja leitud" msgstr[1] "%s kasutajat leitud" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:778 lib/wizard.php:790 msgid "Invalid Host" msgstr "Vigane server" -#: lib/wizard.php:952 +#: lib/wizard.php:951 msgid "Could not find the desired feature" msgstr "Ei suuda leida soovitud funktsioonaalsust" diff --git a/l10n/eu/core.po b/l10n/eu/core.po index 693ac5c091c..ccd03367277 100644 --- a/l10n/eu/core.po +++ b/l10n/eu/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-11 13:31-0500\n" -"PO-Revision-Date: 2013-12-10 21:30+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: asieriko <asieriko@gmail.com>\n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -150,59 +150,59 @@ msgstr "Azaroa" msgid "December" msgstr "Abendua" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Ezarpenak" -#: js/js.js:858 +#: js/js.js:869 msgid "seconds ago" msgstr "segundu" -#: js/js.js:859 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "orain dela minutu %n" msgstr[1] "orain dela %n minutu" -#: js/js.js:860 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "orain dela ordu %n" msgstr[1] "orain dela %n ordu" -#: js/js.js:861 +#: js/js.js:872 msgid "today" msgstr "gaur" -#: js/js.js:862 +#: js/js.js:873 msgid "yesterday" msgstr "atzo" -#: js/js.js:863 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "orain dela egun %n" msgstr[1] "orain dela %n egun" -#: js/js.js:864 +#: js/js.js:875 msgid "last month" msgstr "joan den hilabetean" -#: js/js.js:865 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "orain dela hilabete %n" msgstr[1] "orain dela %n hilabete" -#: js/js.js:866 +#: js/js.js:877 msgid "months ago" msgstr "hilabete" -#: js/js.js:867 +#: js/js.js:878 msgid "last year" msgstr "joan den urtean" -#: js/js.js:868 +#: js/js.js:879 msgid "years ago" msgstr "urte" diff --git a/l10n/eu/files.po b/l10n/eu/files.po index 36f49553f28..98e24d2cd0a 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-11 13:31-0500\n" -"PO-Revision-Date: 2013-12-10 21:40+0000\n" -"Last-Translator: asieriko <asieriko@gmail.com>\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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" @@ -48,12 +48,17 @@ msgstr "%s izena dagoeneko erabilita dago %s karpetan. Mesdez hautatu izen ezber msgid "Not a valid source" msgstr "Ez da jatorri baliogarria" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" msgstr "Errorea %s %sra deskargatzerakoan" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "Errorea fitxategia sortzerakoan" @@ -173,6 +178,10 @@ msgstr "Ezin izan da fitxategia sortu" msgid "Could not create folder" msgstr "Ezin izan da karpeta sortu" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "Elkarbanatu" diff --git a/l10n/eu/lib.po b/l10n/eu/lib.po index b3cecf7b9e2..aca65bbef7a 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-07 14:50+0000\n" -"Last-Translator: asieriko <asieriko@gmail.com>\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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" @@ -333,7 +333,3 @@ msgstr "joan den urtean" #: private/template/functions.php:142 msgid "years ago" msgstr "urte" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "Honek eraginda:" diff --git a/l10n/eu/user_ldap.po b/l10n/eu/user_ldap.po index 7e417b61a1a..017372efcda 100644 --- a/l10n/eu/user_ldap.po +++ b/l10n/eu/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-07 12:40+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: asieriko <asieriko@gmail.com>\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 470cd85f27d..0aa0b374c61 100644 --- a/l10n/fa/core.po +++ b/l10n/fa/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -149,55 +149,55 @@ msgstr "نوامبر" msgid "December" msgstr "دسامبر" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "تنظیمات" -#: js/js.js:858 +#: js/js.js:869 msgid "seconds ago" msgstr "ثانیهها پیش" -#: js/js.js:859 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:860 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:861 +#: js/js.js:872 msgid "today" msgstr "امروز" -#: js/js.js:862 +#: js/js.js:873 msgid "yesterday" msgstr "دیروز" -#: js/js.js:863 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:864 +#: js/js.js:875 msgid "last month" msgstr "ماه قبل" -#: js/js.js:865 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:866 +#: js/js.js:877 msgid "months ago" msgstr "ماههای قبل" -#: js/js.js:867 +#: js/js.js:878 msgid "last year" msgstr "سال قبل" -#: js/js.js:868 +#: js/js.js:879 msgid "years ago" msgstr "سالهای قبل" diff --git a/l10n/fa/files.po b/l10n/fa/files.po index dc4618a113e..9f8d9edde2c 100644 --- a/l10n/fa/files.po +++ b/l10n/fa/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-11 13:31-0500\n" -"PO-Revision-Date: 2013-12-09 12:00+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -47,12 +47,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -172,6 +177,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "اشتراکگذاری" diff --git a/l10n/fa/lib.po b/l10n/fa/lib.po index 1d0892936ff..d33ebcdc1f8 100644 --- a/l10n/fa/lib.po +++ b/l10n/fa/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -54,15 +54,15 @@ msgstr "مدیر" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "سرویس های تحت وب در کنترل شما" @@ -71,23 +71,23 @@ msgstr "سرویس های تحت وب در کنترل شما" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "دانلود به صورت فشرده غیر فعال است" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "فایل ها باید به صورت یکی یکی دانلود شوند" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "بازگشت به فایل ها" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "فایل های انتخاب شده بزرگتر از آن هستند که بتوان یک فایل فشرده تولید کرد" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -173,17 +173,17 @@ msgstr "متن" msgid "Images" msgstr "تصاویر" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s نام کاربری پایگاه داده را وارد نمایید." -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s نام پایگاه داده را وارد نمایید." -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s شما نباید از نقطه در نام پایگاه داده استفاده نمایید." @@ -204,11 +204,11 @@ msgid "MySQL username and/or password not valid" msgstr "نام کاربری و / یا رمزعبور MySQL معتبر نیست." #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -216,10 +216,10 @@ msgid "DB Error: \"%s\"" msgstr "خطای پایگاه داده: \"%s\"" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -252,7 +252,7 @@ msgstr "ارتباط اراکل نمیتواند برقرار باشد." msgid "Oracle username and/or password not valid" msgstr "نام کاربری و / یا رمزعبور اراکل معتبر نیست." -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "دستور متخلف عبارت است از: \"%s\"، نام: \"%s\"، رمزعبور:\"%s\"" @@ -328,7 +328,3 @@ msgstr "سال قبل" #: private/template/functions.php:142 msgid "years ago" msgstr "سالهای قبل" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/fa/user_ldap.po b/l10n/fa/user_ldap.po index 7c54ed27cf0..d3a71506907 100644 --- a/l10n/fa/user_ldap.po +++ b/l10n/fa/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -26,17 +26,17 @@ msgstr "عدم موفقیت در پاک کردن نگاشت." msgid "Failed to delete the server configuration" msgstr "عملیات حذف پیکربندی سرور ناموفق ماند" -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "پیکربندی معتبر است و ارتباط می تواند برقرار شود" -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "پیکربندی معتبراست، اما اتصال شکست خورد. لطفا تنظیمات و اعتبارهای سرور را بررسی کنید." -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." @@ -87,43 +87,43 @@ msgstr "موفقیت" msgid "Error" msgstr "خطا" -#: js/settings.js:777 +#: js/settings.js:837 msgid "Configuration OK" msgstr "" -#: js/settings.js:786 +#: js/settings.js:846 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:795 +#: js/settings.js:855 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:872 js/settings.js:881 msgid "Select groups" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:875 js/settings.js:884 msgid "Select object classes" msgstr "" -#: js/settings.js:818 +#: js/settings.js:878 msgid "Select attributes" msgstr "" -#: js/settings.js:845 +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "تست اتصال با موفقیت انجام گردید" -#: js/settings.js:852 +#: js/settings.js:912 msgid "Connection test failed" msgstr "تست اتصال ناموفق بود" -#: js/settings.js:861 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "آیا واقعا می خواهید پیکربندی کنونی سرور را حذف کنید؟" -#: js/settings.js:862 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "تایید حذف" @@ -139,11 +139,11 @@ msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:778 lib/wizard.php:790 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:952 +#: lib/wizard.php:951 msgid "Could not find the desired feature" msgstr "" diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index 5493ad0c175..c70d3fda2c8 100644 --- a/l10n/fi_FI/core.po +++ b/l10n/fi_FI/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-09 06:39-0500\n" -"PO-Revision-Date: 2013-12-08 20:35+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -150,59 +150,59 @@ msgstr "marraskuu" msgid "December" msgstr "joulukuu" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Asetukset" -#: js/js.js:858 +#: js/js.js:869 msgid "seconds ago" msgstr "sekuntia sitten" -#: js/js.js:859 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minuutti sitten" msgstr[1] "%n minuuttia sitten" -#: js/js.js:860 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n tunti sitten" msgstr[1] "%n tuntia sitten" -#: js/js.js:861 +#: js/js.js:872 msgid "today" msgstr "tänään" -#: js/js.js:862 +#: js/js.js:873 msgid "yesterday" msgstr "eilen" -#: js/js.js:863 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n päivä sitten" msgstr[1] "%n päivää sitten" -#: js/js.js:864 +#: js/js.js:875 msgid "last month" msgstr "viime kuussa" -#: js/js.js:865 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n kuukausi sitten" msgstr[1] "%n kuukautta sitten" -#: js/js.js:866 +#: js/js.js:877 msgid "months ago" msgstr "kuukautta sitten" -#: js/js.js:867 +#: js/js.js:878 msgid "last year" msgstr "viime vuonna" -#: js/js.js:868 +#: js/js.js:879 msgid "years ago" msgstr "vuotta sitten" diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index b3ca2b847ca..87ec5b64f6d 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-11 13:31-0500\n" -"PO-Revision-Date: 2013-12-09 12:00+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" +"Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>\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" @@ -48,12 +48,17 @@ msgstr "Nimi %s on jo käytössä kansiossa %s. Valitse toinen nimi." msgid "Not a valid source" msgstr "Virheellinen lähde" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "Palvelimen ei ole lupa avata verkko-osoitteita. Tarkista palvelimen asetukset" + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" msgstr "Virhe ladatessa kohdetta %s sijaintiin %s" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "Virhe tiedostoa luotaessa" @@ -173,6 +178,10 @@ msgstr "Tiedoston luominen epäonnistui" msgid "Could not create folder" msgstr "Kansion luominen epäonnistui" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "Virhe noutaessa verkko-osoitetta" + #: js/fileactions.js:125 msgid "Share" msgstr "Jaa" diff --git a/l10n/fi_FI/lib.po b/l10n/fi_FI/lib.po index 8605bfd73d0..fa1f6eebd02 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" +"Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>\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" @@ -54,15 +54,15 @@ msgstr "Ylläpitäjä" msgid "Failed to upgrade \"%s\"." msgstr "Kohteen \"%s\" päivitys epäonnistui." -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "Tuntematon tiedostotyyppi" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "Virheellinen kuva" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "verkkopalvelut hallinnassasi" @@ -71,23 +71,23 @@ msgstr "verkkopalvelut hallinnassasi" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "ZIP-lataus on poistettu käytöstä." -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Tiedostot on ladattava yksittäin." -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Takaisin tiedostoihin" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Valitut tiedostot ovat liian suurikokoisia mahtuakseen zip-tiedostoon." -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -99,7 +99,7 @@ msgstr "Lähdettä ei määritelty sovellusta asennettaessa" #: private/installer.php:70 msgid "No href specified when installing app from http" -msgstr "" +msgstr "Href-määritettä ei asetettu asennettaessa sovellusta http:n yli" #: private/installer.php:75 msgid "No path specified when installing app from local file" @@ -112,7 +112,7 @@ msgstr "Tyypin %s arkistot eivät ole tuettuja" #: private/installer.php:103 msgid "Failed to open archive when installing app" -msgstr "" +msgstr "Pakettitiedoston avaaminen epäonnistui sovellusta asennettaessa" #: private/installer.php:125 msgid "App does not provide an info.xml file" @@ -173,17 +173,17 @@ msgstr "Teksti" msgid "Images" msgstr "Kuvat" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s anna tietokannan käyttäjätunnus." -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s anna tietokannan nimi." -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s et voi käyttää pisteitä tietokannan nimessä" @@ -204,11 +204,11 @@ msgid "MySQL username and/or password not valid" msgstr "MySQL:n käyttäjätunnus ja/tai salasana on väärin" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -216,10 +216,10 @@ msgid "DB Error: \"%s\"" msgstr "Tietokantavirhe: \"%s\"" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -252,7 +252,7 @@ msgstr "Oracle-yhteyttä ei voitu muodostaa" msgid "Oracle username and/or password not valid" msgstr "Oraclen käyttäjätunnus ja/tai salasana on väärin" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -332,7 +332,3 @@ msgstr "viime vuonna" #: private/template/functions.php:142 msgid "years ago" msgstr "vuotta sitten" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "Aiheuttaja:" diff --git a/l10n/fi_FI/user_ldap.po b/l10n/fi_FI/user_ldap.po index f33aba1365a..fbdfcd5cd6e 100644 --- a/l10n/fi_FI/user_ldap.po +++ b/l10n/fi_FI/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." @@ -86,43 +86,43 @@ msgstr "Onnistui!" msgid "Error" msgstr "Virhe" -#: js/settings.js:777 +#: js/settings.js:837 msgid "Configuration OK" msgstr "" -#: js/settings.js:786 +#: js/settings.js:846 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:795 +#: js/settings.js:855 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:872 js/settings.js:881 msgid "Select groups" msgstr "Valitse ryhmät" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:875 js/settings.js:884 msgid "Select object classes" msgstr "" -#: js/settings.js:818 +#: js/settings.js:878 msgid "Select attributes" msgstr "" -#: js/settings.js:845 +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "Yhteystesti onnistui" -#: js/settings.js:852 +#: js/settings.js:912 msgid "Connection test failed" msgstr "Yhteystesti epäonnistui" -#: js/settings.js:861 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:862 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "Vahvista poisto" @@ -140,11 +140,11 @@ msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:778 lib/wizard.php:790 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:952 +#: lib/wizard.php:951 msgid "Could not find the desired feature" msgstr "" diff --git a/l10n/fr/core.po b/l10n/fr/core.po index aa688518320..29d5bd02164 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/core.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" +"Last-Translator: Christophe Lherieau <skimpax@gmail.com>\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" @@ -156,59 +156,59 @@ msgstr "novembre" msgid "December" msgstr "décembre" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Paramètres" -#: js/js.js:858 +#: js/js.js:869 msgid "seconds ago" msgstr "il y a quelques secondes" -#: js/js.js:859 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "il y a %n minute" msgstr[1] "il y a %n minutes" -#: js/js.js:860 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Il y a %n heure" msgstr[1] "Il y a %n heures" -#: js/js.js:861 +#: js/js.js:872 msgid "today" msgstr "aujourd'hui" -#: js/js.js:862 +#: js/js.js:873 msgid "yesterday" msgstr "hier" -#: js/js.js:863 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "il y a %n jour" msgstr[1] "il y a %n jours" -#: js/js.js:864 +#: js/js.js:875 msgid "last month" msgstr "le mois dernier" -#: js/js.js:865 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Il y a %n mois" msgstr[1] "Il y a %n mois" -#: js/js.js:866 +#: js/js.js:877 msgid "months ago" msgstr "il y a plusieurs mois" -#: js/js.js:867 +#: js/js.js:878 msgid "last year" msgstr "l'année dernière" -#: js/js.js:868 +#: js/js.js:879 msgid "years ago" msgstr "il y a plusieurs années" @@ -694,7 +694,7 @@ msgid "" "This application requires JavaScript to be enabled for correct operation. " "Please <a href=\"http://enable-javascript.com/\" target=\"_blank\">enable " "JavaScript</a> and re-load this interface." -msgstr "" +msgstr "Cette application nécessite que JavaScript soit activé pour fonctionner correctement. Veuillez <a href=\"http://enable-javascript.com/\" target=\"_blank\">activer JavaScript</a> puis charger à nouveau cette interface." #: templates/layout.user.php:44 #, php-format diff --git a/l10n/fr/files.po b/l10n/fr/files.po index 91f55f9e708..2bd2dbb16d4 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-11 13:31-0500\n" -"PO-Revision-Date: 2013-12-09 12:00+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" +"Last-Translator: Christophe Lherieau <skimpax@gmail.com>\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" @@ -51,12 +51,17 @@ msgstr "Le nom %s est déjà utilisé dans le dossier %s. Merci de choisir un no msgid "Not a valid source" msgstr "La source n'est pas valide" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "Le serveur n'est pas autorisé à ouvrir des URL, veuillez vérifier la configuration du serveur" + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" msgstr "Erreur pendant le téléchargement de %s à %s" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "Erreur pendant la création du fichier" @@ -176,6 +181,10 @@ msgstr "Impossible de créer le fichier" msgid "Could not create folder" msgstr "Impossible de créer le dossier" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "Erreur d'accès à l'URL" + #: js/fileactions.js:125 msgid "Share" msgstr "Partager" diff --git a/l10n/fr/lib.po b/l10n/fr/lib.po index ec114245437..a0d3113e8e3 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-26 10:45-0500\n" -"PO-Revision-Date: 2013-11-26 14:23+0000\n" -"Last-Translator: etiess <etiess@gmail.com>\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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" @@ -57,11 +57,11 @@ msgstr "Administration" msgid "Failed to upgrade \"%s\"." msgstr "Echec de la mise à niveau \"%s\"." -#: private/avatar.php:62 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "Type de fichier inconnu" -#: private/avatar.php:67 +#: private/avatar.php:71 msgid "Invalid image" msgstr "Image invalide" @@ -74,23 +74,23 @@ msgstr "services web sous votre contrôle" msgid "cannot open \"%s\"" msgstr "impossible d'ouvrir \"%s\"" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "Téléchargement ZIP désactivé." -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Les fichiers nécessitent d'être téléchargés un par un." -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Retour aux Fichiers" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Les fichiers sélectionnés sont trop volumineux pour être compressés." -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -176,17 +176,17 @@ msgstr "Texte" msgid "Images" msgstr "Images" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s entrez le nom d'utilisateur de la base de données." -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s entrez le nom de la base de données." -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s vous nez pouvez pas utiliser de points dans le nom de la base de données" @@ -207,11 +207,11 @@ msgid "MySQL username and/or password not valid" msgstr "Nom d'utilisateur et/ou mot de passe de la base MySQL invalide" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -219,10 +219,10 @@ msgid "DB Error: \"%s\"" msgstr "Erreur de la base de données : \"%s\"" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -255,7 +255,7 @@ msgstr "La connexion Oracle ne peut pas être établie" msgid "Oracle username and/or password not valid" msgstr "Nom d'utilisateur et/ou mot de passe de la base Oracle invalide" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "La requête en cause est : \"%s\", nom : %s, mot de passe : %s" @@ -335,7 +335,3 @@ msgstr "l'année dernière" #: private/template/functions.php:142 msgid "years ago" msgstr "il y a plusieurs années" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "Causé par :" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index 6d5f5f97d98..d0edd3b5c43 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-04 23:13+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-12-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-18 10:30+0000\n" +"Last-Translator: Christophe Lherieau <skimpax@gmail.com>\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" @@ -206,19 +206,19 @@ msgstr "Supprimer" msgid "add group" msgstr "ajouter un groupe" -#: js/users.js:451 +#: js/users.js:454 msgid "A valid username must be provided" msgstr "Un nom d'utilisateur valide doit être saisi" -#: js/users.js:452 js/users.js:458 js/users.js:473 +#: js/users.js:455 js/users.js:461 js/users.js:476 msgid "Error creating user" msgstr "Erreur lors de la création de l'utilisateur" -#: js/users.js:457 +#: js/users.js:460 msgid "A valid password must be provided" msgstr "Un mot de passe valide doit être saisi" -#: js/users.js:481 +#: js/users.js:484 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Attention : Le dossier Home pour l'utilisateur \"{user}\" existe déjà" @@ -293,14 +293,14 @@ msgstr "Le module PHP 'fileinfo' est manquant. Il est vivement recommandé de l' #: templates/admin.php:79 msgid "Your PHP version is outdated" -msgstr "" +msgstr "Votre version de PHP est trop ancienne" #: templates/admin.php:82 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." -msgstr "" +msgstr "Votre version de PHP est trop ancienne. Nous vous recommandons fortement de migrer vers une version 5.3.8 ou plus récente encore, car les versions antérieures sont réputées problématiques. Il est possible que cette installation ne fonctionne pas correctement." #: templates/admin.php:93 msgid "Locale not working" diff --git a/l10n/fr/user_ldap.po b/l10n/fr/user_ldap.po index 114ab51a407..9a26a1a2d95 100644 --- a/l10n/fr/user_ldap.po +++ b/l10n/fr/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -28,17 +28,17 @@ msgstr "Erreur lors de la suppression des associations." msgid "Failed to delete the server configuration" msgstr "Échec de la suppression de la configuration du serveur" -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "La configuration est valide et la connexion peut être établie !" -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "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." -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." @@ -89,43 +89,43 @@ msgstr "Succès" msgid "Error" msgstr "Erreur" -#: js/settings.js:777 +#: js/settings.js:837 msgid "Configuration OK" msgstr "Configuration OK" -#: js/settings.js:786 +#: js/settings.js:846 msgid "Configuration incorrect" msgstr "Configuration incorrecte" -#: js/settings.js:795 +#: js/settings.js:855 msgid "Configuration incomplete" msgstr "Configuration incomplète" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:872 js/settings.js:881 msgid "Select groups" msgstr "Sélectionnez les groupes" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:875 js/settings.js:884 msgid "Select object classes" msgstr "Sélectionner les classes d'objet" -#: js/settings.js:818 +#: js/settings.js:878 msgid "Select attributes" msgstr "Sélectionner les attributs" -#: js/settings.js:845 +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "Test de connexion réussi" -#: js/settings.js:852 +#: js/settings.js:912 msgid "Connection test failed" msgstr "Test de connexion échoué" -#: js/settings.js:861 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "Êtes-vous vraiment sûr de vouloir effacer la configuration actuelle du serveur ?" -#: js/settings.js:862 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "Confirmer la suppression" @@ -143,11 +143,11 @@ msgid_plural "%s users found" msgstr[0] "%s utilisateur trouvé" msgstr[1] "%s utilisateurs trouvés" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:778 lib/wizard.php:790 msgid "Invalid Host" msgstr "Hôte invalide" -#: lib/wizard.php:952 +#: lib/wizard.php:951 msgid "Could not find the desired feature" msgstr "Impossible de trouver la fonction souhaitée" diff --git a/l10n/fr_CA/files.po b/l10n/fr_CA/files.po index ad29b7b94d1..945c90682d9 100644 --- a/l10n/fr_CA/files.po +++ b/l10n/fr_CA/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" +"POT-Creation-Date: 2013-12-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06:55+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: French (Canada) (http://www.transifex.com/projects/p/owncloud/language/fr_CA/)\n" "MIME-Version: 1.0\n" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "" diff --git a/l10n/fr_CA/lib.po b/l10n/fr_CA/lib.po index 6ad333c3eed..37d8be2602d 100644 --- a/l10n/fr_CA/lib.po +++ b/l10n/fr_CA/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-26 21:30+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: French (Canada) (http://www.transifex.com/projects/p/owncloud/language/fr_CA/)\n" "MIME-Version: 1.0\n" @@ -70,23 +70,23 @@ msgstr "" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "" msgid "Images" msgstr "" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -331,7 +331,3 @@ msgstr "" #: private/template/functions.php:142 msgid "years ago" msgstr "" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/gl/core.po b/l10n/gl/core.po index e75f70eb006..760ba73cc77 100644 --- a/l10n/gl/core.po +++ b/l10n/gl/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-09 06:39-0500\n" -"PO-Revision-Date: 2013-12-08 20:42+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: mbouzada <mbouzada@gmail.com>\n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -149,59 +149,59 @@ msgstr "novembro" msgid "December" msgstr "decembro" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Axustes" -#: js/js.js:858 +#: js/js.js:869 msgid "seconds ago" msgstr "segundos atrás" -#: js/js.js:859 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "hai %n minuto" msgstr[1] "hai %n minutos" -#: js/js.js:860 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "hai %n hora" msgstr[1] "hai %n horas" -#: js/js.js:861 +#: js/js.js:872 msgid "today" msgstr "hoxe" -#: js/js.js:862 +#: js/js.js:873 msgid "yesterday" msgstr "onte" -#: js/js.js:863 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "hai %n día" msgstr[1] "hai %n días" -#: js/js.js:864 +#: js/js.js:875 msgid "last month" msgstr "último mes" -#: js/js.js:865 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "hai %n mes" msgstr[1] "hai %n meses" -#: js/js.js:866 +#: js/js.js:877 msgid "months ago" msgstr "meses atrás" -#: js/js.js:867 +#: js/js.js:878 msgid "last year" msgstr "último ano" -#: js/js.js:868 +#: js/js.js:879 msgid "years ago" msgstr "anos atrás" diff --git a/l10n/gl/files.po b/l10n/gl/files.po index 7400fb90167..00a61f78a73 100644 --- a/l10n/gl/files.po +++ b/l10n/gl/files.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-11 13:31-0500\n" -"PO-Revision-Date: 2013-12-09 12:00+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" +"Last-Translator: mbouzada <mbouzada@gmail.com>\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" @@ -47,12 +47,17 @@ msgstr "Xa existe o nome %s no cartafol %s. Escolla outro nome." msgid "Not a valid source" msgstr "Esta orixe non é correcta" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "O servidor non ten permisos para abrir os enderezos URL, comprobe a configuración do servidor" + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" msgstr "Produciuse un erro ao descargar %s en %s" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "Produciuse un erro ao crear o ficheiro" @@ -172,6 +177,10 @@ msgstr "Non foi posíbel crear o ficheiro" msgid "Could not create folder" msgstr "Non foi posíbel crear o cartafol" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "Produciuse un erro ao obter o URL" + #: js/fileactions.js:125 msgid "Share" msgstr "Compartir" diff --git a/l10n/gl/lib.po b/l10n/gl/lib.po index 7077ae88a49..daba9df132d 100644 --- a/l10n/gl/lib.po +++ b/l10n/gl/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-24 00:13-0500\n" -"PO-Revision-Date: 2013-11-22 07:30+0000\n" -"Last-Translator: mbouzada <mbouzada@gmail.com>\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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" @@ -54,15 +54,15 @@ msgstr "Administración" msgid "Failed to upgrade \"%s\"." msgstr "Non foi posíbel anovar «%s»." -#: private/avatar.php:62 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "Tipo de ficheiro descoñecido" -#: private/avatar.php:67 +#: private/avatar.php:71 msgid "Invalid image" msgstr "Imaxe incorrecta" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "servizos web baixo o seu control" @@ -71,23 +71,23 @@ msgstr "servizos web baixo o seu control" msgid "cannot open \"%s\"" msgstr "non foi posíbel abrir «%s»" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "As descargas ZIP están desactivadas." -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Os ficheiros necesitan seren descargados dun en un." -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Volver aos ficheiros" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Os ficheiros seleccionados son demasiado grandes como para xerar un ficheiro zip." -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -173,17 +173,17 @@ msgstr "Texto" msgid "Images" msgstr "Imaxes" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s introduza o nome de usuario da base de datos" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s introduza o nome da base de datos" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s non se poden empregar puntos na base de datos" @@ -204,11 +204,11 @@ msgid "MySQL username and/or password not valid" msgstr "Nome de usuario e/ou contrasinal de MySQL incorrecto" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -216,10 +216,10 @@ msgid "DB Error: \"%s\"" msgstr "Produciuse un erro na base de datos: «%s»" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -252,7 +252,7 @@ msgstr "Non foi posíbel estabelecer a conexión con Oracle" msgid "Oracle username and/or password not valid" msgstr "Nome de usuario e/ou contrasinal de Oracle incorrecto" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "A orde ofensiva foi: «%s», nome: %s, contrasinal: %s" @@ -332,7 +332,3 @@ msgstr "último ano" #: private/template/functions.php:142 msgid "years ago" msgstr "anos atrás" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "Causado por:" diff --git a/l10n/gl/user_ldap.po b/l10n/gl/user_ldap.po index 5c905a55dd8..f2492dc699a 100644 --- a/l10n/gl/user_ldap.po +++ b/l10n/gl/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -26,17 +26,17 @@ msgstr "Non foi posíbel limpar as asignacións." msgid "Failed to delete the server configuration" msgstr "Non foi posíbel eliminar a configuración do servidor" -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "A configuración é correcta e pode estabelecerse a conexión." -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "A configuración é correcta, mais a ligazón non. Comprobe a configuración do servidor e as credenciais." -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." @@ -87,43 +87,43 @@ msgstr "Correcto" msgid "Error" msgstr "Erro" -#: js/settings.js:777 +#: js/settings.js:837 msgid "Configuration OK" msgstr "Configuración correcta" -#: js/settings.js:786 +#: js/settings.js:846 msgid "Configuration incorrect" msgstr "Configuración incorrecta" -#: js/settings.js:795 +#: js/settings.js:855 msgid "Configuration incomplete" msgstr "Configuración incompleta" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:872 js/settings.js:881 msgid "Select groups" msgstr "Seleccionar grupos" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:875 js/settings.js:884 msgid "Select object classes" msgstr "Seleccione as clases de obxectos" -#: js/settings.js:818 +#: js/settings.js:878 msgid "Select attributes" msgstr "Seleccione os atributos" -#: js/settings.js:845 +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "A proba de conexión foi satisfactoria" -#: js/settings.js:852 +#: js/settings.js:912 msgid "Connection test failed" msgstr "A proba de conexión fracasou" -#: js/settings.js:861 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "Confirma que quere eliminar a configuración actual do servidor?" -#: js/settings.js:862 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "Confirmar a eliminación" @@ -141,11 +141,11 @@ msgid_plural "%s users found" msgstr[0] "Atopouse %s usuario" msgstr[1] "Atopáronse %s usuarios" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:778 lib/wizard.php:790 msgid "Invalid Host" msgstr "Máquina incorrecta" -#: lib/wizard.php:952 +#: lib/wizard.php:951 msgid "Could not find the desired feature" msgstr "Non foi posíbel atopar a función desexada" diff --git a/l10n/he/core.po b/l10n/he/core.po index 52e79252aab..9489597492a 100644 --- a/l10n/he/core.po +++ b/l10n/he/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -150,59 +150,59 @@ msgstr "נובמבר" msgid "December" msgstr "דצמבר" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "הגדרות" -#: js/js.js:858 +#: js/js.js:869 msgid "seconds ago" msgstr "שניות" -#: js/js.js:859 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "לפני %n דקה" msgstr[1] "לפני %n דקות" -#: js/js.js:860 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "לפני %n שעה" msgstr[1] "לפני %n שעות" -#: js/js.js:861 +#: js/js.js:872 msgid "today" msgstr "היום" -#: js/js.js:862 +#: js/js.js:873 msgid "yesterday" msgstr "אתמול" -#: js/js.js:863 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "לפני %n יום" msgstr[1] "לפני %n ימים" -#: js/js.js:864 +#: js/js.js:875 msgid "last month" msgstr "חודש שעבר" -#: js/js.js:865 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "לפני %n חודש" msgstr[1] "לפני %n חודשים" -#: js/js.js:866 +#: js/js.js:877 msgid "months ago" msgstr "חודשים" -#: js/js.js:867 +#: js/js.js:878 msgid "last year" msgstr "שנה שעברה" -#: js/js.js:868 +#: js/js.js:879 msgid "years ago" msgstr "שנים" diff --git a/l10n/he/files.po b/l10n/he/files.po index eb45a42284c..d688db7c533 100644 --- a/l10n/he/files.po +++ b/l10n/he/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-11 13:31-0500\n" -"PO-Revision-Date: 2013-12-09 12:00+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -48,12 +48,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -173,6 +178,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "שתף" diff --git a/l10n/he/lib.po b/l10n/he/lib.po index d16c10b9b64..641d9c76656 100644 --- a/l10n/he/lib.po +++ b/l10n/he/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -53,15 +53,15 @@ msgstr "מנהל" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "שירותי רשת תחת השליטה שלך" @@ -70,23 +70,23 @@ msgstr "שירותי רשת תחת השליטה שלך" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "הורדת ZIP כבויה" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "יש להוריד את הקבצים אחד אחרי השני." -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "חזרה לקבצים" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "הקבצים הנבחרים גדולים מידי ליצירת קובץ zip." -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "טקסט" msgid "Images" msgstr "תמונות" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -331,7 +331,3 @@ msgstr "שנה שעברה" #: private/template/functions.php:142 msgid "years ago" msgstr "שנים" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/he/user_ldap.po b/l10n/he/user_ldap.po index 7d78f69a6cf..33d85f4fc8b 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -26,17 +26,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." @@ -87,43 +87,43 @@ msgstr "" msgid "Error" msgstr "שגיאה" -#: js/settings.js:777 +#: js/settings.js:837 msgid "Configuration OK" msgstr "" -#: js/settings.js:786 +#: js/settings.js:846 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:795 +#: js/settings.js:855 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:872 js/settings.js:881 msgid "Select groups" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:875 js/settings.js:884 msgid "Select object classes" msgstr "" -#: js/settings.js:818 +#: js/settings.js:878 msgid "Select attributes" msgstr "" -#: js/settings.js:845 +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "בדיקת החיבור עברה בהצלחה" -#: js/settings.js:852 +#: js/settings.js:912 msgid "Connection test failed" msgstr "בדיקת החיבור נכשלה" -#: js/settings.js:861 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "האם אכן למחוק את הגדרות השרת הנוכחיות?" -#: js/settings.js:862 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "אישור המחיקה" @@ -141,11 +141,11 @@ msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:778 lib/wizard.php:790 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:952 +#: lib/wizard.php:951 msgid "Could not find the desired feature" msgstr "" diff --git a/l10n/hi/core.po b/l10n/hi/core.po index 58986bab606..c2548447650 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -150,59 +150,59 @@ msgstr "नवंबर" msgid "December" msgstr "दिसम्बर" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "सेटिंग्स" -#: js/js.js:858 +#: js/js.js:869 msgid "seconds ago" msgstr "" -#: js/js.js:859 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:860 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:861 +#: js/js.js:872 msgid "today" msgstr "" -#: js/js.js:862 +#: js/js.js:873 msgid "yesterday" msgstr "" -#: js/js.js:863 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:864 +#: js/js.js:875 msgid "last month" msgstr "" -#: js/js.js:865 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:866 +#: js/js.js:877 msgid "months ago" msgstr "" -#: js/js.js:867 +#: js/js.js:878 msgid "last year" msgstr "" -#: js/js.js:868 +#: js/js.js:879 msgid "years ago" msgstr "" diff --git a/l10n/hi/files.po b/l10n/hi/files.po index d89ab9be1c0..1438dd1547a 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "साझा करें" diff --git a/l10n/hi/lib.po b/l10n/hi/lib.po index 883a1dbb2f4..31789dfce8c 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -53,15 +53,15 @@ msgstr "" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "" @@ -70,23 +70,23 @@ msgstr "" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "" msgid "Images" msgstr "" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -331,7 +331,3 @@ msgstr "" #: private/template/functions.php:142 msgid "years ago" msgstr "" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/hi/user_ldap.po b/l10n/hi/user_ldap.po index 26db4451d83..f5133c43d7e 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." @@ -86,43 +86,43 @@ msgstr "" msgid "Error" msgstr "त्रुटि" -#: js/settings.js:777 +#: js/settings.js:837 msgid "Configuration OK" msgstr "" -#: js/settings.js:786 +#: js/settings.js:846 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:795 +#: js/settings.js:855 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:872 js/settings.js:881 msgid "Select groups" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:875 js/settings.js:884 msgid "Select object classes" msgstr "" -#: js/settings.js:818 +#: js/settings.js:878 msgid "Select attributes" msgstr "" -#: js/settings.js:845 +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:852 +#: js/settings.js:912 msgid "Connection test failed" msgstr "" -#: js/settings.js:861 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:862 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "" @@ -140,11 +140,11 @@ msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:778 lib/wizard.php:790 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:952 +#: lib/wizard.php:951 msgid "Could not find the desired feature" msgstr "" diff --git a/l10n/hr/core.po b/l10n/hr/core.po index f0ff318dfff..6289c6939ac 100644 --- a/l10n/hr/core.po +++ b/l10n/hr/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -148,63 +148,63 @@ msgstr "Studeni" msgid "December" msgstr "Prosinac" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Postavke" -#: js/js.js:858 +#: js/js.js:869 msgid "seconds ago" msgstr "sekundi prije" -#: js/js.js:859 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:860 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:861 +#: js/js.js:872 msgid "today" msgstr "danas" -#: js/js.js:862 +#: js/js.js:873 msgid "yesterday" msgstr "jučer" -#: js/js.js:863 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:864 +#: js/js.js:875 msgid "last month" msgstr "prošli mjesec" -#: js/js.js:865 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:866 +#: js/js.js:877 msgid "months ago" msgstr "mjeseci" -#: js/js.js:867 +#: js/js.js:878 msgid "last year" msgstr "prošlu godinu" -#: js/js.js:868 +#: js/js.js:879 msgid "years ago" msgstr "godina" diff --git a/l10n/hr/files.po b/l10n/hr/files.po index 87fc634ff29..42ad420919b 100644 --- a/l10n/hr/files.po +++ b/l10n/hr/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-11 13:31-0500\n" -"PO-Revision-Date: 2013-12-09 12:00+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "Podijeli" diff --git a/l10n/hr/lib.po b/l10n/hr/lib.po index af306ed83c3..3b8b04bcffd 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -53,15 +53,15 @@ msgstr "Administrator" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "web usluge pod vašom kontrolom" @@ -70,23 +70,23 @@ msgstr "web usluge pod vašom kontrolom" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "Tekst" msgid "Images" msgstr "" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -335,7 +335,3 @@ msgstr "prošlu godinu" #: private/template/functions.php:142 msgid "years ago" msgstr "godina" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/hr/user_ldap.po b/l10n/hr/user_ldap.po index abb175993fd..83f2f5b9f36 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." @@ -86,43 +86,43 @@ msgstr "" msgid "Error" msgstr "Greška" -#: js/settings.js:777 +#: js/settings.js:837 msgid "Configuration OK" msgstr "" -#: js/settings.js:786 +#: js/settings.js:846 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:795 +#: js/settings.js:855 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:872 js/settings.js:881 msgid "Select groups" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:875 js/settings.js:884 msgid "Select object classes" msgstr "" -#: js/settings.js:818 +#: js/settings.js:878 msgid "Select attributes" msgstr "" -#: js/settings.js:845 +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:852 +#: js/settings.js:912 msgid "Connection test failed" msgstr "" -#: js/settings.js:861 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:862 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "" @@ -142,11 +142,11 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:778 lib/wizard.php:790 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:952 +#: lib/wizard.php:951 msgid "Could not find the desired feature" msgstr "" diff --git a/l10n/hu_HU/core.po b/l10n/hu_HU/core.po index c48b9a7379d..06314bc8c89 100644 --- a/l10n/hu_HU/core.po +++ b/l10n/hu_HU/core.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" +"Last-Translator: ebela <bela@dandre.hu>\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" @@ -151,59 +151,59 @@ msgstr "november" msgid "December" msgstr "december" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Beállítások" -#: js/js.js:858 +#: js/js.js:869 msgid "seconds ago" msgstr "pár másodperce" -#: js/js.js:859 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n perccel ezelőtt" msgstr[1] "%n perccel ezelőtt" -#: js/js.js:860 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n órával ezelőtt" msgstr[1] "%n órával ezelőtt" -#: js/js.js:861 +#: js/js.js:872 msgid "today" msgstr "ma" -#: js/js.js:862 +#: js/js.js:873 msgid "yesterday" msgstr "tegnap" -#: js/js.js:863 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n nappal ezelőtt" msgstr[1] "%n nappal ezelőtt" -#: js/js.js:864 +#: js/js.js:875 msgid "last month" msgstr "múlt hónapban" -#: js/js.js:865 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n hónappal ezelőtt" msgstr[1] "%n hónappal ezelőtt" -#: js/js.js:866 +#: js/js.js:877 msgid "months ago" msgstr "több hónapja" -#: js/js.js:867 +#: js/js.js:878 msgid "last year" msgstr "tavaly" -#: js/js.js:868 +#: js/js.js:879 msgid "years ago" msgstr "több éve" @@ -446,7 +446,7 @@ msgstr "Nincs törlésre kijelölt címke." #: js/update.js:8 msgid "Please reload the page." -msgstr "" +msgstr "Kérlek tölts be újra az oldalt" #: js/update.js:17 msgid "" @@ -589,7 +589,7 @@ msgstr "Szia!\\n\n\\n\nÉrtesítünk, hogy %s megosztotta veled a következőt: #: templates/altmail.php:4 templates/mail.php:17 #, php-format msgid "The share will expire on %s." -msgstr "" +msgstr "A megosztás lejár ekkor %s" #: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" @@ -689,7 +689,7 @@ msgid "" "This application requires JavaScript to be enabled for correct operation. " "Please <a href=\"http://enable-javascript.com/\" target=\"_blank\">enable " "JavaScript</a> and re-load this interface." -msgstr "" +msgstr "Az alkalmazás megfelelő működéséhez szükség van JavaScript-re. <a href=\"http://enable-javascript.com/\" target=\"_blank\">Engedélyezd a JavaScript-et</a> és töltsd újra az interfészt." #: templates/layout.user.php:44 #, php-format @@ -747,11 +747,11 @@ msgstr "Szia!<br><br>Értesítünk, hogy %s megosztotta veled a következőt: » #: templates/singleuser.user.php:3 msgid "This ownCloud instance is currently in single user mode." -msgstr "" +msgstr "Az Owncloud frissítés elezdődött egy felhasználós módban." #: templates/singleuser.user.php:4 msgid "This means only administrators can use the instance." -msgstr "" +msgstr "Ez azt jelenti, hogy csak az adminisztrátor használhatja ezt a példányt" #: templates/singleuser.user.php:5 templates/update.user.php:5 msgid "" diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index e9246cd04c5..cec4785ed74 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/files.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# ebela <bela@dandre.hu>, 2013 # Laszlo Tornoci <torlasz@gmail.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-11 13:31-0500\n" -"PO-Revision-Date: 2013-12-09 12:00+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-12-27 01:55-0500\n" +"PO-Revision-Date: 2013-12-26 11:10+0000\n" +"Last-Translator: Laszlo Tornoci <torlasz@gmail.com>\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" @@ -47,12 +48,17 @@ msgstr "A %s név már létezik a %s mappában. Kérem válasszon másik nevet!" msgid "Not a valid source" msgstr "A kiinduló állomány érvénytelen" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "A kiszolgálón nincs engedélyezve URL-ek megnyitása, kérem ellenőrizze a beállításokat" + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" msgstr "Hiba történt miközben %s-t letöltöttük %s-be" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "Hiba történt az állomány létrehozásakor" @@ -172,6 +178,10 @@ msgstr "Az állomány nem hozható létre" msgid "Could not create folder" msgstr "A mappa nem hozható létre" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "A megadott URL-ről nem sikerül adatokat kapni" + #: js/fileactions.js:125 msgid "Share" msgstr "Megosztás" @@ -202,7 +212,7 @@ msgstr "visszavonás" #: js/filelist.js:591 msgid "Error deleting file." -msgstr "" +msgstr "Hiba a file törlése közben." #: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" @@ -340,7 +350,7 @@ msgstr "Új" #: templates/index.php:8 msgid "New text file" -msgstr "" +msgstr "Új szöveges file" #: templates/index.php:8 msgid "Text file" diff --git a/l10n/hu_HU/files_encryption.po b/l10n/hu_HU/files_encryption.po index c152bfcc19d..ee719e9280a 100644 --- a/l10n/hu_HU/files_encryption.po +++ b/l10n/hu_HU/files_encryption.po @@ -5,13 +5,14 @@ # Translators: # blackc0de <complic@vipmail.hu>, 2013 # ebela <bela@dandre.hu>, 2013 +# Laszlo Tornoci <torlasz@gmail.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-09 06:39-0500\n" -"PO-Revision-Date: 2013-12-08 22:10+0000\n" -"Last-Translator: ebela <bela@dandre.hu>\n" +"POT-Creation-Date: 2013-12-27 01:55-0500\n" +"PO-Revision-Date: 2013-12-26 13:50+0000\n" +"Last-Translator: Laszlo Tornoci <torlasz@gmail.com>\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" @@ -21,25 +22,25 @@ msgstr "" #: ajax/adminrecovery.php:29 msgid "Recovery key successfully enabled" -msgstr "Visszaállítási kulcs sikeresen bekapcsolva" +msgstr "A helyreállítási kulcs sikeresen bekapcsolva" #: ajax/adminrecovery.php:34 msgid "" "Could not enable recovery key. Please check your recovery key password!" -msgstr "Visszaállítási kulcsot nem lehetett engedélyezni. Ellenörizd a visszaállítási kulcsod jelszavát!" +msgstr "A helyreállítási kulcsot nem lehetett engedélyezni. Ellenőrizze a helyreállítási kulcsa jelszavát!" #: ajax/adminrecovery.php:48 msgid "Recovery key successfully disabled" -msgstr "Visszaállítási kulcs sikeresen kikapcsolva" +msgstr "A helyreállítási kulcs sikeresen kikapcsolva" #: ajax/adminrecovery.php:53 msgid "" "Could not disable recovery key. Please check your recovery key password!" -msgstr "Visszaállítási kulcsot nem lehetett kikapcsolni. Ellenörizd a visszaállítási kulcsod jelszavát!" +msgstr "A helyreállítási kulcsot nem lehetett kikapcsolni. Ellenőrizze a helyreállítási kulcsa jelszavát!" #: ajax/changeRecoveryPassword.php:49 msgid "Password successfully changed." -msgstr "Jelszó sikeresen megváltoztatva." +msgstr "A jelszót sikeresen megváltoztattuk." #: ajax/changeRecoveryPassword.php:51 msgid "Could not change the password. Maybe the old password was not correct." @@ -47,20 +48,20 @@ msgstr "A jelszót nem lehet megváltoztatni! Lehet, hogy hibás volt a régi je #: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." -msgstr "Privát kulcs jelszava sikeresen frissült." +msgstr "A személyes kulcsának jelszava frissítésre került." #: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." -msgstr "A privát kulcs jelszavát nem lehetet frissiteni. Lehet, hogy hibás volt a régi jelszó." +msgstr "A személyes kulcsa jelszavát nem lehetett frissíteni. Lehet, hogy hibás volt a régi jelszó." #: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." -msgstr "" +msgstr "A titkosítási modul nincs elindítva! Talán a munkafolyamat közben került engedélyezésre. Kérjük jelentkezzen ki majd ismét jelentkezzen be, hogy a titkosítási modul megfelelően elinduljon!" #: files/error.php:16 #, php-format @@ -68,38 +69,38 @@ msgid "" "Your private key is not valid! Likely your password was changed outside of " "%s (e.g. your corporate directory). You can update your private key password" " in your personal settings to recover access to your encrypted files." -msgstr "" +msgstr "Az állományok titkosításához használt titkos kulcsa érvénytelen. Valószínűleg a %s rendszeren kívül változtatta meg a jelszavát (pl. a munkahelyi címtárban). A személyes beállításoknál frissítheti a titkos kulcsát, hogy ismét elérhesse a titkosított állományait." #: files/error.php:19 msgid "" "Can not decrypt this file, probably this is a shared file. Please ask the " "file owner to reshare the file with you." -msgstr "" +msgstr "Az állományt nem sikerült dekódolni, valószínűleg ez egy megosztott fájl. Kérje meg az állomány tulajdonosát, hogy újra ossza meg Önnel ezt az állományt!" #: files/error.php:22 files/error.php:27 msgid "" "Unknown error please check your system settings or contact your " "administrator" -msgstr "Ismeretlen hiba. Ellenörizd a rendszer beállításokat vagy keresd meg az adminisztrátort" +msgstr "Ismeretlen hiba. Ellenőrizze a rendszer beállításait vagy forduljon a rendszergazdához!" -#: hooks/hooks.php:59 +#: hooks/hooks.php:62 msgid "Missing requirements." msgstr "Hiányzó követelmények." -#: hooks/hooks.php:60 +#: hooks/hooks.php:63 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." -msgstr "Kérlek győződj meg arról, hogy PHP 5.3.3 vagy annál frissebb van telepítve, valamint a PHP-hez tartozó OpenSSL bővítmény be van-e kapcsolva és az helyesen van-e konfigurálva! Ki lett kapcsolva ideiglenesen a titkosító alkalmazás." +msgstr "Kérem gondoskodjon arról, hogy PHP 5.3.3 vagy annál frissebb legyen telepítve, továbbá az OpenSSL a megfelelő PHP-bővítménnyel együtt rendelkezésre álljon és helyesen legyen konfigurálva! A titkosító modul egyelőre kikapcsolásra került." -#: hooks/hooks.php:278 +#: hooks/hooks.php:281 msgid "Following users are not set up for encryption:" msgstr "A következő felhasználók nem állították be a titkosítást:" #: js/detect-migration.js:21 msgid "Initial encryption started... This can take some time. Please wait." -msgstr "Első titkosítás elkezdődött... Ez eltarhat hosszabb ideig. Kérlek várj." +msgstr "A titkosítási folyamat megkezdődött... Ez hosszabb ideig is eltarthat. Kérem várjon." #: js/settings-admin.js:13 msgid "Saving..." @@ -107,7 +108,7 @@ msgstr "Mentés..." #: templates/invalid_private_key.php:8 msgid "Go directly to your " -msgstr "Rövid úton a dolgaidhoz" +msgstr "Ugrás ide:" #: templates/invalid_private_key.php:8 msgid "personal settings" @@ -120,7 +121,7 @@ msgstr "Titkosítás" #: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" -msgstr "" +msgstr "A helyreállítási kulcs beállítása (lehetővé teszi a felhasználók állományainak visszaállítását, ha elfelejtik a jelszavukat):" #: templates/settings-admin.php:11 msgid "Recovery key password" @@ -128,7 +129,7 @@ msgstr "A helyreállítási kulcs jelszava" #: templates/settings-admin.php:14 msgid "Repeat Recovery key password" -msgstr "Ismételd a Helyreállítási kulcs jelszavát" +msgstr "Ismételje meg a helyreállítási kulcs jelszavát" #: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" @@ -152,7 +153,7 @@ msgstr "Új Helyreállítási kulcs jelszava" #: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" -msgstr "Ismételd az Új Helyreállítási kulcs jelszavát" +msgstr "Ismételje meg az új helyreállítási kulcs jelszavát" #: templates/settings-admin.php:58 msgid "Change Password" @@ -160,17 +161,17 @@ msgstr "Jelszó megváltoztatása" #: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" -msgstr "A privát kulcs jelszavad mostantól nem azonos a belépési jelszavaddal:" +msgstr "A személyes kulcs jelszava mostantól nem azonos a belépési jelszavával:" #: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." -msgstr "Állítsd vissza a régi privát kulcs jelszavát a jelenlegi bejelentkezési jelszavadra." +msgstr "Állítsuk be a személyes kulcs jelszavát a jelenlegi bejelentkezési jelszavunkra." #: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." -msgstr "Ha nem emlékszel a régi jelszavadra akkor keresed meg a rendszeradminisztátort a file-jaid visszaállításával kapcsolatban." +msgstr "Ha nem emlékszik a régi jelszavára akkor megkérheti a rendszergazdát, hogy állítsa vissza az állományait." #: templates/settings-personal.php:22 msgid "Old log-in password" @@ -182,7 +183,7 @@ msgstr "Jelenlegi bejelentkezési jelszó" #: templates/settings-personal.php:33 msgid "Update Private Key Password" -msgstr "Privát kulcs jelszó frissítése" +msgstr "A személyest kulcs jelszó frissítése" #: templates/settings-personal.php:42 msgid "Enable password recovery:" @@ -192,12 +193,12 @@ msgstr "Jelszó-visszaállítás bekapcsolása" msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" -msgstr "" +msgstr "Ez az opció lehetővé teszi, hogy a titkosított állományok tartalmát visszanyerjük abban az esetben, ha elfelejti a jelszavát" #: templates/settings-personal.php:60 msgid "File recovery settings updated" -msgstr "File helyreállítási beállításai frissültek" +msgstr "A fájlhelyreállítási beállítások frissültek" #: templates/settings-personal.php:61 msgid "Could not update file recovery" -msgstr "" +msgstr "A fájlhelyreállítás nem frissíthető" diff --git a/l10n/hu_HU/lib.po b/l10n/hu_HU/lib.po index 70b9ddd1a75..1132f401cbd 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -56,15 +56,15 @@ msgstr "Adminsztráció" msgid "Failed to upgrade \"%s\"." msgstr "Sikertelen Frissítés \"%s\"." -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "Ismeretlen file tipús" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "Hibás kép" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "webszolgáltatások saját kézben" @@ -73,27 +73,27 @@ msgstr "webszolgáltatások saját kézben" msgid "cannot open \"%s\"" msgstr "nem sikerült megnyitni \"%s\"" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "A ZIP-letöltés nincs engedélyezve." -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "A fájlokat egyenként kell letölteni." -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Vissza a Fájlokhoz" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "A kiválasztott fájlok túl nagyok a zip tömörítéshez." -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." -msgstr "" +msgstr "A file-t kisebb részekben töltsd le vagy beszélj az adminisztrátorral a megoldás érdekében." #: private/installer.php:63 msgid "No source specified when installing app" @@ -175,17 +175,17 @@ msgstr "Szöveg" msgid "Images" msgstr "Képek" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s adja meg az adatbázist elérő felhasználó login nevét." -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s adja meg az adatbázis nevét." -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s az adatbázis neve nem tartalmazhat pontot" @@ -206,11 +206,11 @@ msgid "MySQL username and/or password not valid" msgstr "A MySQL felhasználói név és/vagy jelszó érvénytelen" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -218,10 +218,10 @@ msgid "DB Error: \"%s\"" msgstr "Adatbázis hiba: \"%s\"" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -254,7 +254,7 @@ msgstr "Az Oracle kapcsolat nem hozható létre" msgid "Oracle username and/or password not valid" msgstr "Az Oracle felhasználói név és/vagy jelszó érvénytelen" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "A hibát okozó parancs ez volt: \"%s\", login név: %s, jelszó: %s" @@ -334,7 +334,3 @@ msgstr "tavaly" #: private/template/functions.php:142 msgid "years ago" msgstr "több éve" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "Okozta:" diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po index 8af48a7dbdf..39d04cb9e3e 100644 --- a/l10n/hu_HU/settings.po +++ b/l10n/hu_HU/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-09 06:39-0500\n" -"PO-Revision-Date: 2013-12-08 21:50+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-15 16:40+0000\n" +"Last-Translator: ebela <bela@dandre.hu>\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" @@ -251,7 +251,7 @@ msgstr "Biztonsági figyelmeztetés" msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." -msgstr "" +msgstr "Jelenlegi elérése a következőnek '%s' jelenleg HTTP-n keresztül történik. Nagyon ajánlott, hogy a kiszolgálot úgy állitsd be, hogy HTTPS-t tudjál használni." #: templates/admin.php:39 msgid "" @@ -289,14 +289,14 @@ msgstr "A 'fileinfo' PHP modul hiányzik. Erősen javasolt ennek a modulnak a te #: templates/admin.php:79 msgid "Your PHP version is outdated" -msgstr "" +msgstr "A PHP verzió túl régi" #: templates/admin.php:82 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." -msgstr "" +msgstr "A PHP verzió túl régi. Nagyon ajánlott legalább az 5.3.8-as vagy újabb verzióra frissíteni, mert a régebbi verziónál léteznek ismert hibák. Ezért lehet a telepítésed elkézelhető, hogy nem müködik majd megfelelően." #: templates/admin.php:93 msgid "Locale not working" @@ -304,20 +304,20 @@ msgstr "A nyelvi lokalizáció nem működik" #: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." -msgstr "" +msgstr "A rendszer lokálok nem lehetett olyat beállítani ami támogatja az UTF-8-at." #: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." -msgstr "" +msgstr "Ez arra utal, hogy probléma lehet néhány karakterrel a file neveiben." #: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." -msgstr "" +msgstr "Erősen ajánlott telepíteni a szükséges csomagokat a rendszeredbe amely támogat egyet a következő helyi beállítások közül: %s" #: templates/admin.php:118 msgid "Internet connection not working" @@ -572,7 +572,7 @@ msgstr "Egyaránt png vagy jpg. Az ideális ha négyzet alaku, de késöbb még #: templates/personal.php:97 msgid "Your avatar is provided by your original account." -msgstr "" +msgstr "Az avatarod az eredeti fiókod alapján van beállítva." #: templates/personal.php:101 msgid "Abort" @@ -607,7 +607,7 @@ msgstr "Titkosítás" #: templates/personal.php:152 msgid "The encryption app is no longer enabled, please decrypt all your files" -msgstr "" +msgstr "A titkosító alkalmazás továbbiakban nem lesz engedélyezve, szüntesd meg a titkosítását a file-jaidnak." #: templates/personal.php:158 msgid "Log-in password" diff --git a/l10n/hu_HU/user_ldap.po b/l10n/hu_HU/user_ldap.po index eb99aabc890..5afefda925e 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-09 06:39-0500\n" -"PO-Revision-Date: 2013-12-08 22:10+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: ebela <bela@dandre.hu>\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 cb73485dfae..7449a234803 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "" diff --git a/l10n/hy/lib.po b/l10n/hy/lib.po index f40506dc58e..a54f97275bd 100644 --- a/l10n/hy/lib.po +++ b/l10n/hy/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -53,15 +53,15 @@ msgstr "" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "" @@ -70,23 +70,23 @@ msgstr "" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "" msgid "Images" msgstr "" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -331,7 +331,3 @@ msgstr "" #: private/template/functions.php:142 msgid "years ago" msgstr "" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/hy/user_ldap.po b/l10n/hy/user_ldap.po index 9e1625f0e97..74da815526b 100644 --- a/l10n/hy/user_ldap.po +++ b/l10n/hy/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." @@ -86,43 +86,43 @@ msgstr "" msgid "Error" msgstr "" -#: js/settings.js:777 +#: js/settings.js:837 msgid "Configuration OK" msgstr "" -#: js/settings.js:786 +#: js/settings.js:846 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:795 +#: js/settings.js:855 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:872 js/settings.js:881 msgid "Select groups" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:875 js/settings.js:884 msgid "Select object classes" msgstr "" -#: js/settings.js:818 +#: js/settings.js:878 msgid "Select attributes" msgstr "" -#: js/settings.js:845 +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:852 +#: js/settings.js:912 msgid "Connection test failed" msgstr "" -#: js/settings.js:861 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:862 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "" @@ -140,11 +140,11 @@ msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:778 lib/wizard.php:790 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:952 +#: lib/wizard.php:951 msgid "Could not find the desired feature" msgstr "" diff --git a/l10n/ia/core.po b/l10n/ia/core.po index 3e5144889af..881393b8fce 100644 --- a/l10n/ia/core.po +++ b/l10n/ia/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-13 14:43-0500\n" -"PO-Revision-Date: 2013-12-13 18:10+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -148,59 +148,59 @@ msgstr "Novembre" msgid "December" msgstr "Decembre" -#: js/js.js:394 +#: js/js.js:398 msgid "Settings" msgstr "Configurationes" -#: js/js.js:865 +#: js/js.js:869 msgid "seconds ago" msgstr "" -#: js/js.js:866 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:867 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:868 +#: js/js.js:872 msgid "today" msgstr "" -#: js/js.js:869 +#: js/js.js:873 msgid "yesterday" msgstr "" -#: js/js.js:870 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:871 +#: js/js.js:875 msgid "last month" msgstr "" -#: js/js.js:872 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:873 +#: js/js.js:877 msgid "months ago" msgstr "" -#: js/js.js:874 +#: js/js.js:878 msgid "last year" msgstr "" -#: js/js.js:875 +#: js/js.js:879 msgid "years ago" msgstr "" diff --git a/l10n/ia/files.po b/l10n/ia/files.po index 0a7d6d3465e..6c4344ca4bb 100644 --- a/l10n/ia/files.po +++ b/l10n/ia/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "Compartir" diff --git a/l10n/ia/lib.po b/l10n/ia/lib.po index 31020e1e85d..f0bcf02cf0e 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -53,15 +53,15 @@ msgstr "Administration" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "servicios web sub tu controlo" @@ -70,23 +70,23 @@ msgstr "servicios web sub tu controlo" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "Texto" msgid "Images" msgstr "" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -331,7 +331,3 @@ msgstr "" #: private/template/functions.php:142 msgid "years ago" msgstr "" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/ia/user_ldap.po b/l10n/ia/user_ldap.po index eaeb0ee6349..617c5c580f5 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-13 14:43-0500\n" -"PO-Revision-Date: 2013-12-13 18:10+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 5b253b0cd46..d102e4fe617 100644 --- a/l10n/id/core.po +++ b/l10n/id/core.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-13 14:43-0500\n" -"PO-Revision-Date: 2013-12-12 02:50+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-12-31 01:55-0500\n" +"PO-Revision-Date: 2013-12-31 03:40+0000\n" +"Last-Translator: arifpedia <arifpedia@gmail.com>\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" @@ -20,57 +20,57 @@ msgstr "" #: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" -msgstr "" +msgstr "%s membagikan »%s« dengan anda" #: ajax/share.php:169 #, php-format msgid "Couldn't send mail to following users: %s " -msgstr "" +msgstr "Tidak dapat mengirim Email ke pengguna berikut: %s" #: ajax/update.php:11 msgid "Turned on maintenance mode" -msgstr "" +msgstr "Hidupkan mode perawatan" #: ajax/update.php:14 msgid "Turned off maintenance mode" -msgstr "" +msgstr "Matikan mode perawatan" #: ajax/update.php:17 msgid "Updated database" -msgstr "" +msgstr "Basis data terbaru" #: ajax/update.php:20 msgid "Updating filecache, this may take really long..." -msgstr "" +msgstr "Memperbarui filecache, mungkin memerlukan waktu sangat lama..." #: ajax/update.php:23 msgid "Updated filecache" -msgstr "" +msgstr "Filecache terbaru" #: ajax/update.php:26 #, php-format msgid "... %d%% done ..." -msgstr "" +msgstr "... %d%% selesai ..." #: avatar/controller.php:62 msgid "No image or file provided" -msgstr "" +msgstr "Tidak ada gambar atau file yang disediakan" #: avatar/controller.php:81 msgid "Unknown filetype" -msgstr "" +msgstr "Tipe berkas tak dikenal" #: avatar/controller.php:85 msgid "Invalid image" -msgstr "" +msgstr "Gambar tidak sah" #: avatar/controller.php:115 avatar/controller.php:142 msgid "No temporary profile picture available, try again" -msgstr "" +msgstr "Tidak ada gambar profil sementara yang tersedia, coba lagi" #: avatar/controller.php:135 msgid "No crop data provided" -msgstr "" +msgstr "Tidak ada data krop tersedia" #: js/config.php:32 msgid "Sunday" @@ -148,55 +148,55 @@ msgstr "November" msgid "December" msgstr "Desember" -#: js/js.js:394 +#: js/js.js:398 msgid "Settings" -msgstr "Setelan" +msgstr "Pengaturan" -#: js/js.js:865 +#: js/js.js:869 msgid "seconds ago" msgstr "beberapa detik yang lalu" -#: js/js.js:866 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" -msgstr[0] "" +msgstr[0] "%n menit yang lalu" -#: js/js.js:867 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" -msgstr[0] "" +msgstr[0] "%n jam yang lalu" -#: js/js.js:868 +#: js/js.js:872 msgid "today" msgstr "hari ini" -#: js/js.js:869 +#: js/js.js:873 msgid "yesterday" msgstr "kemarin" -#: js/js.js:870 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" -msgstr[0] "" +msgstr[0] "%n hari yang lalu" -#: js/js.js:871 +#: js/js.js:875 msgid "last month" msgstr "bulan kemarin" -#: js/js.js:872 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" -msgstr[0] "" +msgstr[0] "%n bulan yang lalu" -#: js/js.js:873 +#: js/js.js:877 msgid "months ago" msgstr "beberapa bulan lalu" -#: js/js.js:874 +#: js/js.js:878 msgid "last year" msgstr "tahun kemarin" -#: js/js.js:875 +#: js/js.js:879 msgid "years ago" msgstr "beberapa tahun lalu" @@ -206,7 +206,7 @@ msgstr "Pilih" #: js/oc-dialogs.js:146 msgid "Error loading file picker template: {error}" -msgstr "" +msgstr "Galat memuat templat berkas pemilih: {error}" #: js/oc-dialogs.js:172 msgid "Yes" @@ -222,26 +222,26 @@ msgstr "Oke" #: js/oc-dialogs.js:219 msgid "Error loading message template: {error}" -msgstr "" +msgstr "Galat memuat templat pesan: {error}" #: js/oc-dialogs.js:347 msgid "{count} file conflict" msgid_plural "{count} file conflicts" -msgstr[0] "" +msgstr[0] "{count} berkas konflik" #: js/oc-dialogs.js:361 msgid "One file conflict" -msgstr "" +msgstr "Satu berkas konflik" #: js/oc-dialogs.js:367 msgid "Which files do you want to keep?" -msgstr "" +msgstr "Berkas mana yang ingin anda pertahankan?" #: js/oc-dialogs.js:368 msgid "" "If you select both versions, the copied file will have a number added to its" " name." -msgstr "" +msgstr "Jika anda memilih kedua versi, berkas yang disalin akan memiliki nomor yang ditambahkan sesuai namanya." #: js/oc-dialogs.js:376 msgid "Cancel" @@ -249,19 +249,19 @@ msgstr "Batal" #: js/oc-dialogs.js:386 msgid "Continue" -msgstr "" +msgstr "Lanjutkan" #: js/oc-dialogs.js:433 js/oc-dialogs.js:446 msgid "(all selected)" -msgstr "" +msgstr "(semua terpilih)" #: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "({count} selected)" -msgstr "" +msgstr "({count} terpilih)" #: js/oc-dialogs.js:457 msgid "Error loading file exists template" -msgstr "" +msgstr "Galat memuat templat berkas yang sudah ada" #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" @@ -290,19 +290,19 @@ msgstr "Galat ketika mengubah izin" #: js/share.js:187 msgid "Shared with you and the group {group} by {owner}" -msgstr "Dibagikan dengan Anda dan grup {group} oleh {owner}" +msgstr "Dibagikan dengan anda dan grup {group} oleh {owner}" #: js/share.js:189 msgid "Shared with you by {owner}" -msgstr "Dibagikan dengan Anda oleh {owner}" +msgstr "Dibagikan dengan anda oleh {owner}" #: js/share.js:213 msgid "Share with user or group …" -msgstr "" +msgstr "Bagikan dengan pengguna atau grup ..." #: js/share.js:219 msgid "Share link" -msgstr "" +msgstr "Bagikan tautan" #: js/share.js:222 msgid "Password protect" @@ -314,7 +314,7 @@ msgstr "Sandi" #: js/share.js:229 msgid "Allow Public Upload" -msgstr "" +msgstr "Izinkan Unggahan Publik" #: js/share.js:233 msgid "Email link to person" @@ -326,7 +326,7 @@ msgstr "Kirim" #: js/share.js:239 msgid "Set expiration date" -msgstr "Setel tanggal kedaluwarsa" +msgstr "Atur tanggal kedaluwarsa" #: js/share.js:240 msgid "Expiration date" @@ -358,11 +358,11 @@ msgstr "Batalkan berbagi" #: js/share.js:405 msgid "notify by email" -msgstr "" +msgstr "notifikasi via email" #: js/share.js:408 msgid "can edit" -msgstr "dapat mengedit" +msgstr "dapat sunting" #: js/share.js:410 msgid "access control" @@ -386,7 +386,7 @@ msgstr "bagikan" #: js/share.js:694 msgid "Password protected" -msgstr "Dilindungi sandi" +msgstr "Sandi dilindungi" #: js/share.js:707 msgid "Error unsetting expiration date" @@ -394,7 +394,7 @@ msgstr "Galat ketika menghapus tanggal kedaluwarsa" #: js/share.js:719 msgid "Error setting expiration date" -msgstr "Galat ketika menyetel tanggal kedaluwarsa" +msgstr "Galat ketika mengatur tanggal kedaluwarsa" #: js/share.js:734 msgid "Sending ..." @@ -414,7 +414,7 @@ msgstr "Tipe objek tidak ditentukan." #: js/tags.js:13 msgid "Enter new" -msgstr "" +msgstr "Masukkan baru" #: js/tags.js:27 msgid "Delete" @@ -426,19 +426,19 @@ msgstr "Tambah" #: js/tags.js:39 msgid "Edit tags" -msgstr "" +msgstr "Sunting tag" #: js/tags.js:57 msgid "Error loading dialog template: {error}" -msgstr "" +msgstr "Galat memuat templat dialog: {error}" #: js/tags.js:261 msgid "No tags selected for deletion." -msgstr "" +msgstr "Tidak ada tag yang terpilih untuk dihapus." #: js/update.js:8 msgid "Please reload the page." -msgstr "" +msgstr "Silakan muat ulang halaman." #: js/update.js:17 msgid "" @@ -454,7 +454,7 @@ msgstr "Pembaruan sukses. Anda akan diarahkan ulang ke ownCloud." #: lostpassword/controller.php:62 #, php-format msgid "%s password reset" -msgstr "" +msgstr "%s sandi diatur ulang" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" @@ -465,11 +465,11 @@ msgid "" "The link to reset your password has been sent to your email.<br>If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.<br>If it is not there ask your local administrator ." -msgstr "" +msgstr "Tautan untuk mengatur ulang sandi anda telah dikirimkan ke email Anda.<br>Jika anda tidak menerimanya selama waktu yang wajar, periksa folder spam/sampah Anda.<br>Jika tidak ada juga, coba tanyakanlah kepada administrator lokal anda." #: lostpassword/templates/lostpassword.php:15 msgid "Request failed!<br>Did you make sure your email/username was right?" -msgstr "" +msgstr "Permintaan gagal!<br>Apakah anda yakin email/nama pengguna anda benar?" #: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." @@ -486,19 +486,19 @@ msgid "" "will be no way to get your data back after your password is reset. If you " "are not sure what to do, please contact your administrator before you " "continue. Do you really want to continue?" -msgstr "" +msgstr "Berkas anda terenkripsi. Jika sebelumnya anda belum mengaktifkan kunci pemulihan, tidak akan ada cara lagi untuk mendapatkan data anda kembali setelah sandi anda diatur ulang. Jika anda tidak yakin dengan apa yang harus dilakukan, silakan hubungi administrator anda sebelum melanjutkan. Apakah anda benar-benar ingin melanjutkan?" #: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" -msgstr "" +msgstr "Ya, Saya sungguh ingin mengatur ulang sandi saya sekarang" #: lostpassword/templates/lostpassword.php:30 msgid "Reset" -msgstr "" +msgstr "Atur Ulang" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "Sandi Anda telah disetel ulang" +msgstr "Sandi Anda telah diatur ulang" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" @@ -510,7 +510,7 @@ msgstr "Sandi baru" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" -msgstr "Setel ulang sandi" +msgstr "Atur ulang sandi" #: strings.php:5 msgid "Personal" @@ -534,31 +534,31 @@ msgstr "Bantuan" #: tags/controller.php:22 msgid "Error loading tags" -msgstr "" +msgstr "Galat saat memuat tag" #: tags/controller.php:48 msgid "Tag already exists" -msgstr "" +msgstr "Tag sudah ada" #: tags/controller.php:64 msgid "Error deleting tag(s)" -msgstr "" +msgstr "Galat saat menghapus tag" #: tags/controller.php:75 msgid "Error tagging" -msgstr "" +msgstr "Galat saat memberikan tag" #: tags/controller.php:86 msgid "Error untagging" -msgstr "" +msgstr "Galat saat menghapus tag" #: tags/controller.php:97 msgid "Error favoriting" -msgstr "" +msgstr "Galat saat memberikan sebagai favorit" #: tags/controller.php:108 msgid "Error unfavoriting" -msgstr "" +msgstr "Galat saat menghapus sebagai favorit" #: templates/403.php:12 msgid "Access forbidden" @@ -576,16 +576,16 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -msgstr "" +msgstr "Hai,\n\nhanya supaya anda tahu bahwa %s membagikan %s dengan anda.\nLihat: %s\n\n" #: templates/altmail.php:4 templates/mail.php:17 #, php-format msgid "The share will expire on %s." -msgstr "" +msgstr "Pembagian akan berakhir pada %s." #: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" -msgstr "" +msgstr "Horee!" #: templates/installation.php:25 templates/installation.php:32 #: templates/installation.php:39 @@ -599,7 +599,7 @@ msgstr "Versi PHP Anda rentan terhadap serangan NULL Byte (CVE-2006-7243)" #: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." -msgstr "" +msgstr "Silakan perbarui instalasi PHP anda untuk menggunakan %s dengan aman." #: templates/installation.php:33 msgid "" @@ -617,14 +617,14 @@ msgstr "Tanpa generator acak, penyerang mungkin dapat menebak token penyetelan s msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." -msgstr "Kemungkinan direktori data dan berkas Anda dapat diakses dari internet karena berkas .htaccess tidak berfungsi." +msgstr "Kemungkinan direktori data dan berkas anda dapat diakses dari internet karena berkas .htaccess tidak berfungsi." #: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the <a " "href=\"%s\" target=\"_blank\">documentation</a>." -msgstr "" +msgstr "Untuk informasi cara mengkonfigurasi server anda dengan benar, silakan lihat <a href=\"%s\" target=\"_blank\">dokumentasi</a>." #: templates/installation.php:48 msgid "Create an <strong>admin account</strong>" @@ -674,19 +674,19 @@ msgstr "Selesaikan instalasi" #: templates/installation.php:185 msgid "Finishing …" -msgstr "" +msgstr "Menyelesaikan ..." #: templates/layout.user.php:40 msgid "" "This application requires JavaScript to be enabled for correct operation. " "Please <a href=\"http://enable-javascript.com/\" target=\"_blank\">enable " "JavaScript</a> and re-load this interface." -msgstr "" +msgstr "Aplikasi ini memerlukan JavaScript yang diaktifkan untuk beroperasi dengan benar. Silahkan <a href=\"http://enable-javascript.com/\" target=\"_blank\">aktifkan JavaScript</a> and re-load this interface." #: templates/layout.user.php:44 #, php-format msgid "%s is available. Get more information on how to update." -msgstr "" +msgstr "%s tersedia. Dapatkan informasi lebih lanjut tentang cara memperbarui." #: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" @@ -700,19 +700,19 @@ msgstr "Masuk otomatis ditolak!" msgid "" "If you did not change your password recently, your account may be " "compromised!" -msgstr "Jika tidak pernah mengubah sandi Anda baru-baru ini, akun Anda mungkin dalam bahaya!" +msgstr "Jika anda tidak pernah mengubah sandi baru-baru ini, akun anda mungkin dalam bahaya!" #: templates/login.php:12 msgid "Please change your password to secure your account again." -msgstr "Mohon ubah sandi Anda untuk mengamankan kembali akun Anda." +msgstr "Silakan ubah sandi anda untuk mengamankan kembali akun anda." #: templates/login.php:17 msgid "Server side authentication failed!" -msgstr "" +msgstr "Otentikasi dari sisi server gagal!" #: templates/login.php:18 msgid "Please contact your administrator." -msgstr "" +msgstr "Silahkan hubungi administrator anda." #: templates/login.php:44 msgid "Lost your password?" @@ -735,25 +735,25 @@ msgstr "Cara Alternatif untuk Masuk" msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " "href=\"%s\">View it!</a><br><br>" -msgstr "" +msgstr "Hai,<br><br>hanya supaya anda tahu bahwa %s membagikan »%s« dengan anda.<br><a href=\"%s\">Lihat!</a><br><br>" #: templates/singleuser.user.php:3 msgid "This ownCloud instance is currently in single user mode." -msgstr "" +msgstr "ownCloud ini sedang dalam mode pengguna tunggal." #: templates/singleuser.user.php:4 msgid "This means only administrators can use the instance." -msgstr "" +msgstr "Ini berarti hanya administrator yang dapat menggunakan ownCloud." #: templates/singleuser.user.php:5 templates/update.user.php:5 msgid "" "Contact your system administrator if this message persists or appeared " "unexpectedly." -msgstr "" +msgstr "Hubungi administrator sistem anda jika pesan ini terus muncul atau muncul tiba-tiba." #: templates/singleuser.user.php:7 templates/update.user.php:6 msgid "Thank you for your patience." -msgstr "" +msgstr "Terima kasih atas kesabaran anda." #: templates/update.admin.php:3 #, php-format @@ -763,8 +763,8 @@ msgstr "Memperbarui ownCloud ke versi %s, prosesnya akan berlangsung beberapa sa #: templates/update.user.php:3 msgid "" "This ownCloud instance is currently being updated, which may take a while." -msgstr "" +msgstr "ownCloud ini sedang diperbarui, yang mungkin memakan waktu cukup lama." #: templates/update.user.php:4 msgid "Please reload this page after a short time to continue using ownCloud." -msgstr "" +msgstr "Muat ulang halaman ini setelah beberapa saat untuk tetap menggunakan ownCloud." diff --git a/l10n/id/files.po b/l10n/id/files.po index 876f7423d22..74a84b5c520 100644 --- a/l10n/id/files.po +++ b/l10n/id/files.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-13 14:43-0500\n" -"PO-Revision-Date: 2013-12-12 03:30+0000\n" -"Last-Translator: arifpedia <arifpedia@gmail.com>\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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" @@ -47,12 +47,17 @@ msgstr "Nama %s sudah digunakan dalam folder %s. Silakan pilih nama yang berbeda msgid "Not a valid source" msgstr "Sumber tidak sah" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" msgstr "Galat saat mengunduh %s ke %s" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "Galat saat membuat berkas" @@ -172,6 +177,10 @@ msgstr "Tidak dapat membuat berkas" msgid "Could not create folder" msgstr "Tidak dapat membuat folder" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "Bagikan" diff --git a/l10n/id/lib.po b/l10n/id/lib.po index 27c5b892497..c2c84a614cb 100644 --- a/l10n/id/lib.po +++ b/l10n/id/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-12-31 01:55-0500\n" +"PO-Revision-Date: 2013-12-31 03:40+0000\n" +"Last-Translator: arifpedia <arifpedia@gmail.com>\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" @@ -17,136 +17,136 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: private/app.php:243 +#: private/app.php:245 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." -msgstr "" +msgstr "Apl \"%s\" tidak dapat diinstal karena tidak kompatibel dengan versi ownCloud." -#: private/app.php:255 +#: private/app.php:257 msgid "No app name specified" -msgstr "" +msgstr "Tidak ada nama apl yang ditentukan" -#: private/app.php:360 +#: private/app.php:362 msgid "Help" msgstr "Bantuan" -#: private/app.php:373 +#: private/app.php:375 msgid "Personal" msgstr "Pribadi" -#: private/app.php:384 +#: private/app.php:386 msgid "Settings" -msgstr "Setelan" +msgstr "Pengaturan" -#: private/app.php:396 +#: private/app.php:398 msgid "Users" msgstr "Pengguna" -#: private/app.php:409 +#: private/app.php:411 msgid "Admin" msgstr "Admin" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." -msgstr "" +msgstr "Gagal memperbarui \"%s\"." -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" -msgstr "" +msgstr "Tipe berkas tak dikenal" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" -msgstr "" +msgstr "Gambar tidak sah" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" -msgstr "layanan web dalam kontrol Anda" +msgstr "layanan web dalam kendali anda" #: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" -msgstr "" +msgstr "tidak dapat membuka \"%s\"" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "Pengunduhan ZIP dimatikan." -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Berkas harus diunduh satu persatu." -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" -msgstr "Kembali ke Daftar Berkas" +msgstr "Kembali ke Berkas" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Berkas yang dipilih terlalu besar untuk dibuat berkas zip-nya." -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." -msgstr "" +msgstr "Silahkan unduh berkas secara terpisah dalam bentuk potongan kecil atau meminta ke administrator anda." #: private/installer.php:63 msgid "No source specified when installing app" -msgstr "" +msgstr "Tidak ada sumber yang ditentukan saat menginstal apl" #: private/installer.php:70 msgid "No href specified when installing app from http" -msgstr "" +msgstr "Href tidak ditentukan saat menginstal apl dari http" #: private/installer.php:75 msgid "No path specified when installing app from local file" -msgstr "" +msgstr "Lokasi tidak ditentukan saat menginstal apl dari berkas lokal" #: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" -msgstr "" +msgstr "Arsip dengan tipe %s tidak didukung" #: private/installer.php:103 msgid "Failed to open archive when installing app" -msgstr "" +msgstr "Gagal membuka arsip saat menginstal apl" #: private/installer.php:125 msgid "App does not provide an info.xml file" -msgstr "" +msgstr "Apl tidak menyediakan berkas info.xml" #: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" -msgstr "" +msgstr "Apl tidak dapat diinstal karena terdapat kode yang tidak diizinkan didalam Apl" #: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" -msgstr "" +msgstr "Apl tidak dapat diinstal karena tidak kompatibel dengan versi ownCloud" #: private/installer.php:146 msgid "" "App can't be installed because it contains the <shipped>true</shipped> tag " "which is not allowed for non shipped apps" -msgstr "" +msgstr "Apl tidak dapat diinstal karena mengandung tag <shipped>true</shipped> yang tidak diizinkan untuk apl yang bukan bawaan." #: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" -msgstr "" +msgstr "Apl tidak dapat diinstal karena versi di info.xml/versi tidak sama dengan versi yang dilansir dari toko apl" #: private/installer.php:169 msgid "App directory already exists" -msgstr "" +msgstr "Direktori Apl sudah ada" #: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" -msgstr "" +msgstr "Tidak dapat membuat folder apl. Silakan perbaiki perizinan. %s" #: private/json.php:28 msgid "Application is not enabled" @@ -154,11 +154,11 @@ msgstr "Aplikasi tidak diaktifkan" #: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" -msgstr "Galat saat autentikasi" +msgstr "Galat saat otentikasi" #: private/json.php:51 msgid "Token expired. Please reload page." -msgstr "Token kedaluwarsa. Silakan muat ulang halaman." +msgstr "Token sudah kedaluwarsa. Silakan muat ulang halaman." #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" @@ -172,25 +172,25 @@ msgstr "Teks" msgid "Images" msgstr "Gambar" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s masukkan nama pengguna basis data." -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s masukkan nama basis data." -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" -msgstr "%sAnda tidak boleh menggunakan karakter titik pada nama basis data" +msgstr "%s anda tidak boleh menggunakan karakter titik pada nama basis data" #: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" -msgstr "Nama pengguna dan/atau sandi MySQL tidak valid: %s" +msgstr "Nama pengguna dan/atau sandi MySQL tidak sah: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 #: private/setup/oci.php:114 private/setup/postgresql.php:24 @@ -200,14 +200,14 @@ msgstr "Anda harus memasukkan akun yang sudah ada atau administrator." #: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" -msgstr "Nama pengguna dan/atau sandi MySQL tidak valid" +msgstr "Nama pengguna dan/atau sandi MySQL tidak sah" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "Galat Basis Data: \"%s\"" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -245,13 +245,13 @@ msgstr "Hapus pengguna ini dari MySQL." #: private/setup/oci.php:34 msgid "Oracle connection could not be established" -msgstr "" +msgstr "Koneksi Oracle tidak dapat dibuat" #: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" -msgstr "Nama pengguna dan/atau sandi Oracle tidak valid" +msgstr "Nama pengguna dan/atau sandi Oracle tidak sah" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Perintah yang bermasalah: \"%s\", nama pengguna: %s, sandi: %s" @@ -262,11 +262,11 @@ msgstr "Nama pengguna dan/atau sandi PostgreSQL tidak valid" #: private/setup.php:28 msgid "Set an admin username." -msgstr "Setel nama pengguna admin." +msgstr "Atur nama pengguna admin." #: private/setup.php:31 msgid "Set an admin password." -msgstr "Setel sandi admin." +msgstr "Atur sandi admin." #: private/setup.php:195 msgid "" @@ -282,7 +282,7 @@ msgstr "Silakan periksa ulang <a href='%s'>panduan instalasi</a>." #: private/tags.php:194 #, php-format msgid "Could not find category \"%s\"" -msgstr "Tidak dapat menemukan kategori \"%s\"" +msgstr "Tidak menemukan kategori \"%s\"" #: private/template/functions.php:130 msgid "seconds ago" @@ -291,12 +291,12 @@ msgstr "beberapa detik yang lalu" #: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" -msgstr[0] "" +msgstr[0] "%n menit yang lalu" #: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" -msgstr[0] "" +msgstr[0] "%n jam yang lalu" #: private/template/functions.php:133 msgid "today" @@ -309,7 +309,7 @@ msgstr "kemarin" #: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" -msgstr[0] "" +msgstr[0] "%n hari yang lalu" #: private/template/functions.php:138 msgid "last month" @@ -318,7 +318,7 @@ msgstr "bulan kemarin" #: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" -msgstr[0] "" +msgstr[0] "%n bulan yang lalu" #: private/template/functions.php:141 msgid "last year" @@ -327,7 +327,3 @@ msgstr "tahun kemarin" #: private/template/functions.php:142 msgid "years ago" msgstr "beberapa tahun lalu" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/id/settings.po b/l10n/id/settings.po index ef608cffc5e..e3cda0a7e3c 100644 --- a/l10n/id/settings.po +++ b/l10n/id/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-11 13:31-0500\n" -"PO-Revision-Date: 2013-12-11 15:51+0000\n" +"POT-Creation-Date: 2013-12-31 01:55-0500\n" +"PO-Revision-Date: 2013-12-31 03:40+0000\n" "Last-Translator: arifpedia <arifpedia@gmail.com>\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_ldap.po b/l10n/id/user_ldap.po index 574121b17c3..368aef3c674 100644 --- a/l10n/id/user_ldap.po +++ b/l10n/id/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" +"POT-Creation-Date: 2013-12-31 01:55-0500\n" +"PO-Revision-Date: 2013-12-30 17:20+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "Gagal menghapus konfigurasi server" -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "Konfigurasi valid dan koneksi dapat dilakukan!" -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "Konfigurasi valid, tetapi Bind gagal. Silakan cek pengaturan server dan keamanan." -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." @@ -86,43 +86,43 @@ msgstr "Sukses" msgid "Error" msgstr "Galat" -#: js/settings.js:777 +#: js/settings.js:837 msgid "Configuration OK" msgstr "" -#: js/settings.js:786 +#: js/settings.js:846 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:795 +#: js/settings.js:855 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:872 js/settings.js:881 msgid "Select groups" msgstr "Pilih grup" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:875 js/settings.js:884 msgid "Select object classes" msgstr "" -#: js/settings.js:818 +#: js/settings.js:878 msgid "Select attributes" msgstr "" -#: js/settings.js:845 +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "Tes koneksi sukses" -#: js/settings.js:852 +#: js/settings.js:912 msgid "Connection test failed" msgstr "Tes koneksi gagal" -#: js/settings.js:861 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "Anda ingin menghapus Konfigurasi Server saat ini?" -#: js/settings.js:862 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "Konfirmasi Penghapusan" @@ -138,11 +138,11 @@ msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:778 lib/wizard.php:790 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:952 +#: lib/wizard.php:951 msgid "Could not find the desired feature" msgstr "" @@ -283,7 +283,7 @@ msgstr "Kembali" #: templates/part.wizardcontrols.php:8 msgid "Continue" -msgstr "" +msgstr "Lanjutkan" #: templates/settings.php:11 msgid "" diff --git a/l10n/is/core.po b/l10n/is/core.po index 88eafddac09..24e272a5edf 100644 --- a/l10n/is/core.po +++ b/l10n/is/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:22+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -149,59 +149,59 @@ msgstr "Nóvember" msgid "December" msgstr "Desember" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Stillingar" -#: js/js.js:858 +#: js/js.js:869 msgid "seconds ago" msgstr "sek." -#: js/js.js:859 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:860 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:861 +#: js/js.js:872 msgid "today" msgstr "í dag" -#: js/js.js:862 +#: js/js.js:873 msgid "yesterday" msgstr "í gær" -#: js/js.js:863 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:864 +#: js/js.js:875 msgid "last month" msgstr "síðasta mánuði" -#: js/js.js:865 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:866 +#: js/js.js:877 msgid "months ago" msgstr "mánuðir síðan" -#: js/js.js:867 +#: js/js.js:878 msgid "last year" msgstr "síðasta ári" -#: js/js.js:868 +#: js/js.js:879 msgid "years ago" msgstr "einhverjum árum" diff --git a/l10n/is/files.po b/l10n/is/files.po index 76c4efedf04..ba1a0cc0144 100644 --- a/l10n/is/files.po +++ b/l10n/is/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-11 13:31-0500\n" -"PO-Revision-Date: 2013-12-09 12:00+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "Deila" diff --git a/l10n/is/lib.po b/l10n/is/lib.po index 19c63cba80d..8bda5c5c8cf 100644 --- a/l10n/is/lib.po +++ b/l10n/is/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -53,15 +53,15 @@ msgstr "Stjórnun" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "vefþjónusta undir þinni stjórn" @@ -70,23 +70,23 @@ msgstr "vefþjónusta undir þinni stjórn" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "Slökkt á ZIP niðurhali." -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Skrárnar verður að sækja eina og eina" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Aftur í skrár" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Valdar skrár eru of stórar til að búa til ZIP skrá." -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "Texti" msgid "Images" msgstr "Myndir" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -331,7 +331,3 @@ msgstr "síðasta ári" #: private/template/functions.php:142 msgid "years ago" msgstr "einhverjum árum" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/is/user_ldap.po b/l10n/is/user_ldap.po index 6ff3adf596b..346a6ab1bd1 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -26,17 +26,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." @@ -87,43 +87,43 @@ msgstr "" msgid "Error" msgstr "Villa" -#: js/settings.js:777 +#: js/settings.js:837 msgid "Configuration OK" msgstr "" -#: js/settings.js:786 +#: js/settings.js:846 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:795 +#: js/settings.js:855 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:872 js/settings.js:881 msgid "Select groups" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:875 js/settings.js:884 msgid "Select object classes" msgstr "" -#: js/settings.js:818 +#: js/settings.js:878 msgid "Select attributes" msgstr "" -#: js/settings.js:845 +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:852 +#: js/settings.js:912 msgid "Connection test failed" msgstr "" -#: js/settings.js:861 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:862 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "" @@ -141,11 +141,11 @@ msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:778 lib/wizard.php:790 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:952 +#: lib/wizard.php:951 msgid "Could not find the desired feature" msgstr "" diff --git a/l10n/it/core.po b/l10n/it/core.po index ec1dbafc655..4e82d964475 100644 --- a/l10n/it/core.po +++ b/l10n/it/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-09 06:39-0500\n" -"PO-Revision-Date: 2013-12-08 20:35+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: Vincenzo Reale <vinx.reale@gmail.com>\n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -152,59 +152,59 @@ msgstr "Novembre" msgid "December" msgstr "Dicembre" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Impostazioni" -#: js/js.js:858 +#: js/js.js:869 msgid "seconds ago" msgstr "secondi fa" -#: js/js.js:859 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minuto fa" msgstr[1] "%n minuti fa" -#: js/js.js:860 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n ora fa" msgstr[1] "%n ore fa" -#: js/js.js:861 +#: js/js.js:872 msgid "today" msgstr "oggi" -#: js/js.js:862 +#: js/js.js:873 msgid "yesterday" msgstr "ieri" -#: js/js.js:863 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n giorno fa" msgstr[1] "%n giorni fa" -#: js/js.js:864 +#: js/js.js:875 msgid "last month" msgstr "mese scorso" -#: js/js.js:865 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n mese fa" msgstr[1] "%n mesi fa" -#: js/js.js:866 +#: js/js.js:877 msgid "months ago" msgstr "mesi fa" -#: js/js.js:867 +#: js/js.js:878 msgid "last year" msgstr "anno scorso" -#: js/js.js:868 +#: js/js.js:879 msgid "years ago" msgstr "anni fa" diff --git a/l10n/it/files.po b/l10n/it/files.po index eafd58473ee..888244240e0 100644 --- a/l10n/it/files.po +++ b/l10n/it/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-11 13:31-0500\n" -"PO-Revision-Date: 2013-12-09 12:00+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-12-24 01:55-0500\n" +"PO-Revision-Date: 2013-12-22 22:30+0000\n" +"Last-Translator: Vincenzo Reale <vinx.reale@gmail.com>\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" @@ -48,12 +48,17 @@ msgstr "Il nome %s è attualmente in uso nella cartella %s. Scegli un nome diver msgid "Not a valid source" msgstr "Non è una sorgente valida" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "Al server non è permesso aprire URL, controlla la configurazione del server" + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" msgstr "Errore durante lo scaricamento di %s su %s" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "Errore durante la creazione del file" @@ -173,6 +178,10 @@ msgstr "Impossibile creare il file" msgid "Could not create folder" msgstr "Impossibile creare la cartella" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "Errore durante il recupero dello URL" + #: js/fileactions.js:125 msgid "Share" msgstr "Condividi" diff --git a/l10n/it/lib.po b/l10n/it/lib.po index 54eecda2d0d..6fba55653fe 100644 --- a/l10n/it/lib.po +++ b/l10n/it/lib.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-24 00:13-0500\n" -"PO-Revision-Date: 2013-11-22 21:10+0000\n" -"Last-Translator: Vincenzo Reale <vinx.reale@gmail.com>\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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" @@ -56,15 +56,15 @@ msgstr "Admin" msgid "Failed to upgrade \"%s\"." msgstr "Aggiornamento non riuscito \"%s\"." -#: private/avatar.php:62 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "Tipo di file sconosciuto" -#: private/avatar.php:67 +#: private/avatar.php:71 msgid "Invalid image" msgstr "Immagine non valida" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "servizi web nelle tue mani" @@ -73,23 +73,23 @@ msgstr "servizi web nelle tue mani" msgid "cannot open \"%s\"" msgstr "impossibile aprire \"%s\"" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "Lo scaricamento in formato ZIP è stato disabilitato." -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "I file devono essere scaricati uno alla volta." -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Torna ai file" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "I file selezionati sono troppo grandi per generare un file zip." -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -175,17 +175,17 @@ msgstr "Testo" msgid "Images" msgstr "Immagini" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s digita il nome utente del database." -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s digita il nome del database." -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s non dovresti utilizzare punti nel nome del database" @@ -206,11 +206,11 @@ msgid "MySQL username and/or password not valid" msgstr "Nome utente e/o password di MySQL non validi" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -218,10 +218,10 @@ msgid "DB Error: \"%s\"" msgstr "Errore DB: \"%s\"" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -254,7 +254,7 @@ msgstr "La connessione a Oracle non può essere stabilita" msgid "Oracle username and/or password not valid" msgstr "Nome utente e/o password di Oracle non validi" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Il comando non consentito era: \"%s\", nome: %s, password: %s" @@ -334,7 +334,3 @@ msgstr "anno scorso" #: private/template/functions.php:142 msgid "years ago" msgstr "anni fa" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "Causato da:" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index 2b43e39615a..b972a97ad19 100644 --- a/l10n/it/settings.po +++ b/l10n/it/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-05 22:23-0500\n" -"PO-Revision-Date: 2013-12-05 23:10+0000\n" -"Last-Translator: polxmod <paolo.velati@gmail.com>\n" +"POT-Creation-Date: 2013-12-24 01:55-0500\n" +"PO-Revision-Date: 2013-12-22 22:30+0000\n" +"Last-Translator: Vincenzo Reale <vinx.reale@gmail.com>\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" @@ -202,19 +202,19 @@ msgstr "Elimina" msgid "add group" msgstr "aggiungi gruppo" -#: js/users.js:451 +#: js/users.js:454 msgid "A valid username must be provided" msgstr "Deve essere fornito un nome utente valido" -#: js/users.js:452 js/users.js:458 js/users.js:473 +#: js/users.js:455 js/users.js:461 js/users.js:476 msgid "Error creating user" msgstr "Errore durante la creazione dell'utente" -#: js/users.js:457 +#: js/users.js:460 msgid "A valid password must be provided" msgstr "Deve essere fornita una password valida" -#: js/users.js:481 +#: js/users.js:484 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Avviso: la cartella home dell'utente \"{user}\" esiste già" @@ -251,7 +251,7 @@ msgstr "Avviso di sicurezza" msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." -msgstr "Sei connesso a %s con il protocollo HTTP. Ti suggeriamo fortemente di configurare il tuo server per richiedere l'utilizzo del protocollo HTTPS al posto di HTTP." +msgstr "Sei connesso a %s tramite HTTP. Ti suggeriamo vivamente di configurare il tuo server per richiedere l'utilizzo del protocollo HTTPS al posto di HTTP." #: templates/admin.php:39 msgid "" @@ -289,14 +289,14 @@ msgstr "Il modulo PHP 'fileinfo' non è presente. Consigliamo vivamente di abili #: templates/admin.php:79 msgid "Your PHP version is outdated" -msgstr "La tua versione di PHP è superata" +msgstr "La tua versione di PHP è obsoleta" #: templates/admin.php:82 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." -msgstr "La tua versione di PHP è superata. Ti raccomandiamo di aggiornare alla versione 5.3.8 o superiore poiché è risaputo che le vecchie versioni siano fallate. L'installazione attuale potrebbe non funzionare correttamente." +msgstr "La tua versione di PHP è obsoleta. Ti consigliamo vivamente di aggiornare alla versione 5.3.8 o successiva poiché è sono noti problemi con le vecchie versioni. L'installazione attuale potrebbe non funzionare correttamente." #: templates/admin.php:93 msgid "Locale not working" @@ -572,7 +572,7 @@ msgstr "Sia png che jpg. Preferibilmente quadrata, ma potrai ritagliarla." #: templates/personal.php:97 msgid "Your avatar is provided by your original account." -msgstr "Il tuo avatar è ottenuto da tuo account originale." +msgstr "Il tuo avatar è ottenuto dal tuo account originale." #: templates/personal.php:101 msgid "Abort" diff --git a/l10n/it/user_ldap.po b/l10n/it/user_ldap.po index 921dd0c1216..dbe65895ef6 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -27,17 +27,17 @@ msgstr "Cancellazione delle associazioni non riuscita." msgid "Failed to delete the server configuration" msgstr "Eliminazione della configurazione del server non riuscita" -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "La configurazione è valida e la connessione può essere stabilita." -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "La configurazione è valida, ma il Bind non è riuscito. Controlla le impostazioni del server e le credenziali." -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." @@ -88,43 +88,43 @@ msgstr "Riuscito" msgid "Error" msgstr "Errore" -#: js/settings.js:777 +#: js/settings.js:837 msgid "Configuration OK" msgstr "Configurazione corretta" -#: js/settings.js:786 +#: js/settings.js:846 msgid "Configuration incorrect" msgstr "Configurazione non corretta" -#: js/settings.js:795 +#: js/settings.js:855 msgid "Configuration incomplete" msgstr "Configurazione incompleta" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:872 js/settings.js:881 msgid "Select groups" msgstr "Seleziona i gruppi" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:875 js/settings.js:884 msgid "Select object classes" msgstr "Seleziona le classi di oggetti" -#: js/settings.js:818 +#: js/settings.js:878 msgid "Select attributes" msgstr "Seleziona gli attributi" -#: js/settings.js:845 +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "Prova di connessione riuscita" -#: js/settings.js:852 +#: js/settings.js:912 msgid "Connection test failed" msgstr "Prova di connessione non riuscita" -#: js/settings.js:861 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "Vuoi davvero eliminare la configurazione attuale del server?" -#: js/settings.js:862 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "Conferma l'eliminazione" @@ -142,11 +142,11 @@ msgid_plural "%s users found" msgstr[0] "%s utente trovato" msgstr[1] "%s utenti trovati" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:778 lib/wizard.php:790 msgid "Invalid Host" msgstr "Host non valido" -#: lib/wizard.php:952 +#: lib/wizard.php:951 msgid "Could not find the desired feature" msgstr "Impossibile trovare la funzionalità desiderata" diff --git a/l10n/ja_JP/core.po b/l10n/ja_JP/core.po index 25f0e8f7ac3..63923cbb960 100644 --- a/l10n/ja_JP/core.po +++ b/l10n/ja_JP/core.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-11 13:31-0500\n" -"PO-Revision-Date: 2013-12-11 01:50+0000\n" -"Last-Translator: iLikeIT <dj_dark_junglist@yahoo.com>\n" +"POT-Creation-Date: 2013-12-25 01:55-0500\n" +"PO-Revision-Date: 2013-12-24 08:10+0000\n" +"Last-Translator: tt yn <tetuyano+transi@gmail.com>\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" @@ -153,57 +153,57 @@ msgstr "11月" msgid "December" msgstr "12月" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "設定" -#: js/js.js:858 +#: js/js.js:869 msgid "seconds ago" msgstr "数秒前" -#: js/js.js:859 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n 分前" -#: js/js.js:860 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n 時間前" -#: js/js.js:861 +#: js/js.js:872 msgid "today" msgstr "今日" -#: js/js.js:862 +#: js/js.js:873 msgid "yesterday" msgstr "昨日" -#: js/js.js:863 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n 日前" -#: js/js.js:864 +#: js/js.js:875 msgid "last month" msgstr "一月前" -#: js/js.js:865 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n ヶ月前" -#: js/js.js:866 +#: js/js.js:877 msgid "months ago" -msgstr "月前" +msgstr "数ヶ月前" -#: js/js.js:867 +#: js/js.js:878 msgid "last year" msgstr "一年前" -#: js/js.js:868 +#: js/js.js:879 msgid "years ago" -msgstr "年前" +msgstr "数年前" #: js/oc-dialogs.js:123 msgid "Choose" diff --git a/l10n/ja_JP/files.po b/l10n/ja_JP/files.po index bc3d8201044..e8b99a951c8 100644 --- a/l10n/ja_JP/files.po +++ b/l10n/ja_JP/files.po @@ -8,14 +8,14 @@ # iLikeIT <dj_dark_junglist@yahoo.com>, 2013 # Koichi MATSUMOTO <mzch@me.com>, 2013 # pabook <pabook.32@gmail.com>, 2013 -# tt yn <tetuyano+transi@gmail.com>, 2013 +# tt yn <tetuyano+transi@gmail.com>, 2013-2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-11 13:31-0500\n" -"PO-Revision-Date: 2013-12-11 02:00+0000\n" -"Last-Translator: iLikeIT <dj_dark_junglist@yahoo.com>\n" +"POT-Creation-Date: 2014-01-04 01:55-0500\n" +"PO-Revision-Date: 2014-01-03 14:10+0000\n" +"Last-Translator: tt yn <tetuyano+transi@gmail.com>\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" @@ -52,12 +52,17 @@ msgstr "%s はフォルダ %s ないですでに使われています。別の msgid "Not a valid source" msgstr "有効なソースではありません" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "サーバーは、URLを開くことは許されません。サーバーの設定をチェックしてください。" + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" msgstr "%s から %s へのダウンロードエラー" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "ファイルの生成エラー" @@ -177,6 +182,10 @@ msgstr "ファイルを作成できませんでした" msgid "Could not create folder" msgstr "フォルダを作成できませんでした" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "URL取得エラー" + #: js/fileactions.js:125 msgid "Share" msgstr "共有" diff --git a/l10n/ja_JP/lib.po b/l10n/ja_JP/lib.po index 98f2ca9c88e..addc53d2f7f 100644 --- a/l10n/ja_JP/lib.po +++ b/l10n/ja_JP/lib.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-29 11:30+0000\n" -"Last-Translator: Daisuke Deguchi <ddeguchi@nagoya-u.jp>\n" +"POT-Creation-Date: 2013-12-25 01:55-0500\n" +"PO-Revision-Date: 2013-12-24 08:00+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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" @@ -21,38 +21,38 @@ msgstr "" "Language: ja_JP\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: private/app.php:243 +#: private/app.php:245 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr " \"%s\" アプリは、このバージョンのownCloudと互換性がない為、インストールできません。" -#: private/app.php:255 +#: private/app.php:257 msgid "No app name specified" msgstr "アプリ名が未指定" -#: private/app.php:360 +#: private/app.php:362 msgid "Help" msgstr "ヘルプ" -#: private/app.php:373 +#: private/app.php:375 msgid "Personal" msgstr "個人" -#: private/app.php:384 +#: private/app.php:386 msgid "Settings" msgstr "設定" -#: private/app.php:396 +#: private/app.php:398 msgid "Users" msgstr "ユーザ" -#: private/app.php:409 +#: private/app.php:411 msgid "Admin" msgstr "管理" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "\"%s\" へのアップグレードに失敗しました。" @@ -74,23 +74,23 @@ msgstr "管理下のウェブサービス" msgid "cannot open \"%s\"" msgstr "\"%s\" が開けません" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "ZIPダウンロードは無効です。" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "ファイルは1つずつダウンロードする必要があります。" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "ファイルに戻る" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "選択したファイルはZIPファイルの生成には大きすぎます。" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -176,17 +176,17 @@ msgstr "TTY TDD" msgid "Images" msgstr "画像" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s のデータベースのユーザ名を入力してください。" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s のデータベース名を入力してください。" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s ではデータベース名にドットを利用できないかもしれません。" @@ -207,11 +207,11 @@ msgid "MySQL username and/or password not valid" msgstr "MySQLのユーザ名もしくはパスワードは有効ではありません" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -219,10 +219,10 @@ msgid "DB Error: \"%s\"" msgstr "DBエラー: \"%s\"" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -255,7 +255,7 @@ msgstr "Oracleへの接続が確立できませんでした。" msgid "Oracle username and/or password not valid" msgstr "Oracleのユーザ名もしくはパスワードは有効ではありません" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "違反コマンド: \"%s\"、名前: %s、パスワード: %s" @@ -331,7 +331,3 @@ msgstr "一年前" #: private/template/functions.php:142 msgid "years ago" msgstr "年前" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "原因:" diff --git a/l10n/ja_JP/user_ldap.po b/l10n/ja_JP/user_ldap.po index d6d79d86bc3..1061b8d35c8 100644 --- a/l10n/ja_JP/user_ldap.po +++ b/l10n/ja_JP/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-29 11:30+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: Daisuke Deguchi <ddeguchi@nagoya-u.jp>\n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" @@ -28,17 +28,17 @@ msgstr "マッピングのクリアに失敗しました。" msgid "Failed to delete the server configuration" msgstr "サーバ設定の削除に失敗しました" -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "設定は有効であり、接続を確立しました!" -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "設定は有効ですが、接続に失敗しました。サーバ設定と資格情報を確認して下さい。" -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." @@ -89,43 +89,43 @@ msgstr "成功" msgid "Error" msgstr "エラー" -#: js/settings.js:777 +#: js/settings.js:837 msgid "Configuration OK" msgstr "設定OK" -#: js/settings.js:786 +#: js/settings.js:846 msgid "Configuration incorrect" msgstr "設定に誤りがあります" -#: js/settings.js:795 +#: js/settings.js:855 msgid "Configuration incomplete" msgstr "設定が不完全です" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:872 js/settings.js:881 msgid "Select groups" msgstr "グループを選択" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:875 js/settings.js:884 msgid "Select object classes" msgstr "オブジェクトクラスを選択" -#: js/settings.js:818 +#: js/settings.js:878 msgid "Select attributes" msgstr "属性を選択" -#: js/settings.js:845 +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "接続テストに成功しました" -#: js/settings.js:852 +#: js/settings.js:912 msgid "Connection test failed" msgstr "接続テストに失敗しました" -#: js/settings.js:861 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "現在のサーバ設定を本当に削除してもよろしいですか?" -#: js/settings.js:862 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "削除の確認" @@ -141,11 +141,11 @@ msgid "%s user found" msgid_plural "%s users found" msgstr[0] "%s ユーザが見つかりました" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:778 lib/wizard.php:790 msgid "Invalid Host" msgstr "無効なホスト" -#: lib/wizard.php:952 +#: lib/wizard.php:951 msgid "Could not find the desired feature" msgstr "望ましい機能は見つかりませんでした" diff --git a/l10n/ka/files.po b/l10n/ka/files.po index 3e55f8b3203..37ff89fc2b7 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" +"POT-Creation-Date: 2013-12-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06:55+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "" diff --git a/l10n/ka/lib.po b/l10n/ka/lib.po index 1458b755e12..c23f452e6df 100644 --- a/l10n/ka/lib.po +++ b/l10n/ka/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -53,15 +53,15 @@ msgstr "ადმინისტრატორი" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "" @@ -70,23 +70,23 @@ msgstr "" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "ZIP გადმოწერა გამორთულია" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "" msgid "Images" msgstr "" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -327,7 +327,3 @@ msgstr "" #: private/template/functions.php:142 msgid "years ago" msgstr "" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/ka_GE/core.po b/l10n/ka_GE/core.po index 077486d89f5..624e0a15d52 100644 --- a/l10n/ka_GE/core.po +++ b/l10n/ka_GE/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -148,55 +148,55 @@ msgstr "ნოემბერი" msgid "December" msgstr "დეკემბერი" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "პარამეტრები" -#: js/js.js:858 +#: js/js.js:869 msgid "seconds ago" msgstr "წამის წინ" -#: js/js.js:859 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:860 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:861 +#: js/js.js:872 msgid "today" msgstr "დღეს" -#: js/js.js:862 +#: js/js.js:873 msgid "yesterday" msgstr "გუშინ" -#: js/js.js:863 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:864 +#: js/js.js:875 msgid "last month" msgstr "გასულ თვეში" -#: js/js.js:865 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:866 +#: js/js.js:877 msgid "months ago" msgstr "თვის წინ" -#: js/js.js:867 +#: js/js.js:878 msgid "last year" msgstr "ბოლო წელს" -#: js/js.js:868 +#: js/js.js:879 msgid "years ago" msgstr "წლის წინ" diff --git a/l10n/ka_GE/files.po b/l10n/ka_GE/files.po index 32430d59687..519f12885eb 100644 --- a/l10n/ka_GE/files.po +++ b/l10n/ka_GE/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-11 13:31-0500\n" -"PO-Revision-Date: 2013-12-09 12:00+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "გაზიარება" diff --git a/l10n/ka_GE/lib.po b/l10n/ka_GE/lib.po index 939e84996cf..26ee4dc2e87 100644 --- a/l10n/ka_GE/lib.po +++ b/l10n/ka_GE/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -53,15 +53,15 @@ msgstr "ადმინისტრატორი" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "web services under your control" @@ -70,23 +70,23 @@ msgstr "web services under your control" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "ZIP download–ი გათიშულია" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "ფაილები უნდა გადმოიტვირთოს სათითაოდ." -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "უკან ფაილებში" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "არჩეული ფაილები ძალიან დიდია zip ფაილის გენერაციისთვის." -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "ტექსტი" msgid "Images" msgstr "სურათები" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s შეიყვანეთ ბაზის იუზერნეიმი." -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s შეიყვანეთ ბაზის სახელი." -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s არ მიუთითოთ წერტილი ბაზის სახელში" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "MySQL იუზერნეიმი და/ან პაროლი არ არის სწორი" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "DB შეცდომა: \"%s\"" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "Oracle იუზერნეიმი და/ან პაროლი არ არის სწორი" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Offending ბრძანება იყო: \"%s\", სახელი: %s, პაროლი: %s" @@ -327,7 +327,3 @@ msgstr "ბოლო წელს" #: private/template/functions.php:142 msgid "years ago" msgstr "წლის წინ" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/ka_GE/user_ldap.po b/l10n/ka_GE/user_ldap.po index 6385515da01..e4540bd24e8 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "შეცდომა სერვერის კონფიგურაციის წაშლისას" -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "კონფიგურაცია მართებულია და კავშირი დამყარდება!" -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "კონფიგურაცია მართებულია, მაგრამ მიერთება ვერ მოხერხდა. გთხოვთ შეამოწმოთ სერვერის პარამეტრები და აუთენთიკაციის პარამეტრები." -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." @@ -86,43 +86,43 @@ msgstr "დასრულდა" msgid "Error" msgstr "შეცდომა" -#: js/settings.js:777 +#: js/settings.js:837 msgid "Configuration OK" msgstr "" -#: js/settings.js:786 +#: js/settings.js:846 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:795 +#: js/settings.js:855 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:872 js/settings.js:881 msgid "Select groups" msgstr "ჯგუფების არჩევა" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:875 js/settings.js:884 msgid "Select object classes" msgstr "" -#: js/settings.js:818 +#: js/settings.js:878 msgid "Select attributes" msgstr "" -#: js/settings.js:845 +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "კავშირის ტესტირება მოხერხდა" -#: js/settings.js:852 +#: js/settings.js:912 msgid "Connection test failed" msgstr "კავშირის ტესტირება ვერ მოხერხდა" -#: js/settings.js:861 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "ნამდვილად გინდათ წაშალოთ სერვერის მიმდინარე პარამეტრები?" -#: js/settings.js:862 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "წაშლის დადასტურება" @@ -138,11 +138,11 @@ msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:778 lib/wizard.php:790 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:952 +#: lib/wizard.php:951 msgid "Could not find the desired feature" msgstr "" diff --git a/l10n/km/files.po b/l10n/km/files.po index 98fc2cdbcf2..d5b5468f564 100644 --- a/l10n/km/files.po +++ b/l10n/km/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" +"POT-Creation-Date: 2013-12-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06:55+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n" "MIME-Version: 1.0\n" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "" diff --git a/l10n/km/lib.po b/l10n/km/lib.po index 7a67810adbf..87bcd1528a0 100644 --- a/l10n/km/lib.po +++ b/l10n/km/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n" "MIME-Version: 1.0\n" @@ -53,15 +53,15 @@ msgstr "" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "" @@ -70,23 +70,23 @@ msgstr "" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "" msgid "Images" msgstr "" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -327,7 +327,3 @@ msgstr "" #: private/template/functions.php:142 msgid "years ago" msgstr "" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/kn/files.po b/l10n/kn/files.po index 76ffe97ff7d..31a4b49208d 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" +"POT-Creation-Date: 2013-12-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06:55+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "" diff --git a/l10n/kn/lib.po b/l10n/kn/lib.po index 5ff982c9fb2..93d65f06c4f 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" @@ -53,15 +53,15 @@ msgstr "" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "" @@ -70,23 +70,23 @@ msgstr "" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "" msgid "Images" msgstr "" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -327,7 +327,3 @@ msgstr "" #: private/template/functions.php:142 msgid "years ago" msgstr "" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/ko/core.po b/l10n/ko/core.po index 29e5b4ffcc7..212e85bb4ad 100644 --- a/l10n/ko/core.po +++ b/l10n/ko/core.po @@ -3,16 +3,19 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# 책읽는달팽 <bjh13579@gmail.com>, 2013 +# madeng <jongyoul@gmail.com>, 2013 # madeng <jongyoul@gmail.com>, 2013 +# Park Shinjo <peremen@gmail.com>, 2013 # Shinjo Park <kde@peremen.name>, 2013 # 책읽는달팽 <bjh13579@gmail.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-12-29 01:55-0500\n" +"PO-Revision-Date: 2013-12-28 13:54+0000\n" +"Last-Translator: Shinjo Park <kde@peremen.name>\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" @@ -23,20 +26,20 @@ msgstr "" #: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" -msgstr "" +msgstr "%s 님이 %s을(를) 공유하였습니다" #: ajax/share.php:169 #, php-format msgid "Couldn't send mail to following users: %s " -msgstr "%s에게 메일을 보낼 수 없습니다." +msgstr "%s 님에게 메일을 보낼 수 없습니다." #: ajax/update.php:11 msgid "Turned on maintenance mode" -msgstr "유지보수 모드 켜기" +msgstr "유지 보수 모드 켜짐" #: ajax/update.php:14 msgid "Turned off maintenance mode" -msgstr "유지보수 모드 끄기" +msgstr "유지 보수 모드 꺼짐" #: ajax/update.php:17 msgid "Updated database" @@ -44,11 +47,11 @@ msgstr "데이터베이스 업데이트 됨" #: ajax/update.php:20 msgid "Updating filecache, this may take really long..." -msgstr "파일 캐시 업데이트중, 시간이 약간 걸릴수 있습니다..." +msgstr "파일 캐시 업데이트 중, 시간이 약간 걸릴 수 있습니다..." #: ajax/update.php:23 msgid "Updated filecache" -msgstr "파일캐시 업데이트 됨" +msgstr "파일 캐시 업데이트 됨" #: ajax/update.php:26 #, php-format @@ -61,7 +64,7 @@ msgstr "이미지나 파일이 없음" #: avatar/controller.php:81 msgid "Unknown filetype" -msgstr "알려지지 않은 파일형식" +msgstr "알려지지 않은 파일 형식" #: avatar/controller.php:85 msgid "Invalid image" @@ -69,7 +72,7 @@ msgstr "잘못된 이미지" #: avatar/controller.php:115 avatar/controller.php:142 msgid "No temporary profile picture available, try again" -msgstr "사용가능한 프로파일 사진이 없습니다. 재시도 하세요." +msgstr "사용 가능한 프로필 사진이 없습니다. 다시 시도하십시오." #: avatar/controller.php:135 msgid "No crop data provided" @@ -151,55 +154,55 @@ msgstr "11월" msgid "December" msgstr "12월" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "설정" -#: js/js.js:858 +#: js/js.js:869 msgid "seconds ago" msgstr "초 전" -#: js/js.js:859 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n분 전 " -#: js/js.js:860 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n시간 전 " -#: js/js.js:861 +#: js/js.js:872 msgid "today" msgstr "오늘" -#: js/js.js:862 +#: js/js.js:873 msgid "yesterday" msgstr "어제" -#: js/js.js:863 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n일 전 " -#: js/js.js:864 +#: js/js.js:875 msgid "last month" msgstr "지난 달" -#: js/js.js:865 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n달 전 " -#: js/js.js:866 +#: js/js.js:877 msgid "months ago" msgstr "개월 전" -#: js/js.js:867 +#: js/js.js:878 msgid "last year" msgstr "작년" -#: js/js.js:868 +#: js/js.js:879 msgid "years ago" msgstr "년 전" @@ -209,7 +212,7 @@ msgstr "선택" #: js/oc-dialogs.js:146 msgid "Error loading file picker template: {error}" -msgstr "" +msgstr "파일 선택 템플릿을 불러오는 중 오류 발생: {error}" #: js/oc-dialogs.js:172 msgid "Yes" @@ -221,30 +224,30 @@ msgstr "아니요" #: js/oc-dialogs.js:199 msgid "Ok" -msgstr "승락" +msgstr "확인" #: js/oc-dialogs.js:219 msgid "Error loading message template: {error}" -msgstr "" +msgstr "메시지 템플릿을 불러오는 중 오류 발생: {error}" #: js/oc-dialogs.js:347 msgid "{count} file conflict" msgid_plural "{count} file conflicts" -msgstr[0] "{count} 파일 중복" +msgstr[0] "파일 {count}개 충돌" #: js/oc-dialogs.js:361 msgid "One file conflict" -msgstr "하나의 파일이 충돌" +msgstr "파일 1개 충돌" #: js/oc-dialogs.js:367 msgid "Which files do you want to keep?" -msgstr "어느 파일들을 보관하고 싶습니까?" +msgstr "어느 파일을 유지하시겠습니까?" #: js/oc-dialogs.js:368 msgid "" "If you select both versions, the copied file will have a number added to its" " name." -msgstr "두 버전을 모두 선택하면, 파일이름에 번호가 추가될 것입니다." +msgstr "두 버전을 모두 선택하면, 파일 이름에 번호가 추가될 것입니다." #: js/oc-dialogs.js:376 msgid "Cancel" @@ -260,11 +263,11 @@ msgstr "(모두 선택됨)" #: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "({count} selected)" -msgstr "({count}개가 선택됨)" +msgstr "({count}개 선택됨)" #: js/oc-dialogs.js:457 msgid "Error loading file exists template" -msgstr "" +msgstr "파일 존재함 템플릿을 불러오는 중 오류 발생" #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" @@ -301,11 +304,11 @@ msgstr "{owner} 님이 공유 중" #: js/share.js:213 msgid "Share with user or group …" -msgstr "" +msgstr "사용자 및 그룹과 공유..." #: js/share.js:219 msgid "Share link" -msgstr "" +msgstr "링크 공유" #: js/share.js:222 msgid "Password protect" @@ -317,7 +320,7 @@ msgstr "암호" #: js/share.js:229 msgid "Allow Public Upload" -msgstr "퍼블릭 업로드 허용" +msgstr "공개 업로드 허용" #: js/share.js:233 msgid "Email link to person" @@ -361,7 +364,7 @@ msgstr "공유 해제" #: js/share.js:405 msgid "notify by email" -msgstr "" +msgstr "이메일로 알림" #: js/share.js:408 msgid "can edit" @@ -417,7 +420,7 @@ msgstr "객체 유형이 지정되지 않았습니다." #: js/tags.js:13 msgid "Enter new" -msgstr "" +msgstr "새로운 값 입력" #: js/tags.js:27 msgid "Delete" @@ -429,19 +432,19 @@ msgstr "추가" #: js/tags.js:39 msgid "Edit tags" -msgstr "태크 편집" +msgstr "태그 편집" #: js/tags.js:57 msgid "Error loading dialog template: {error}" -msgstr "" +msgstr "대화 상자 템플릿을 불러오는 중 오류 발생: {error}" #: js/tags.js:261 msgid "No tags selected for deletion." -msgstr "" +msgstr "삭제할 태그를 선택하지 않았습니다." #: js/update.js:8 msgid "Please reload the page." -msgstr "페이지를 새로고침 해주세요" +msgstr "페이지를 새로 고치십시오." #: js/update.js:17 msgid "" @@ -457,7 +460,7 @@ msgstr "업데이트가 성공하였습니다. ownCloud로 돌아갑니다." #: lostpassword/controller.php:62 #, php-format msgid "%s password reset" -msgstr "%s 비밀번호 재설정" +msgstr "%s 암호 재설정" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" @@ -468,11 +471,11 @@ msgid "" "The link to reset your password has been sent to your email.<br>If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.<br>If it is not there ask your local administrator ." -msgstr "비밀번호를 초기화 하기 위한 링크가 이메일로 발송되었습니다.<br>만약 수분이내에 메일이 도착하지 않은 경우, 스팸 메일함을 확인하세요.<br>만약 없다면, 메일 관리자에게 문의하세요." +msgstr "암호를 초기화 하기 위한 링크가 이메일로 발송되었습니다.<br>만약 수 분 이내에 메일이 도착하지 않은 경우, 스팸 메일함을 확인하십시오.<br>스팸 메일함에도 없다면, 메일 관리자에게 문의하십시오." #: lostpassword/templates/lostpassword.php:15 msgid "Request failed!<br>Did you make sure your email/username was right?" -msgstr "요청이 실패했습니다!<br>email 주소와 사용자 명을 정확하게 넣으셨나요?" +msgstr "요청이 실패했습니다!<br>이메일 주소와 사용자 이름을 정확하게 입력하셨습니까?" #: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." @@ -489,11 +492,11 @@ msgid "" "will be no way to get your data back after your password is reset. If you " "are not sure what to do, please contact your administrator before you " "continue. Do you really want to continue?" -msgstr "당신의 파일은 암호화 되어있습니다. 만약 복구키를 가지고 있지 않다면, 비밀번호를 초기화한 후에, 당신의 데이터를 복구할 수 없을 것입니다. 당신이 원하는 것이 확실하지 않다면, 계속진행하기 전에 관리자에게 문의하세요. 계속 진행하시겠습니까?" +msgstr "저장된 파일은 암호화되어 있습니다. 복구 키를 활성화하지 않았다면 암호를 초기화한 후 데이터를 복구할 수 없습니다. 무엇을 해야 할 지 모르겠으면 진행하기 전에 시스템 관리자에게 연락하십시오. 계속 진행하시겠습니까?" #: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" -msgstr "네, 전 제 비밀번호를 리셋하길 원합니다" +msgstr "예, 지금 내 암호를 재설정합니다" #: lostpassword/templates/lostpassword.php:30 msgid "Reset" @@ -537,7 +540,7 @@ msgstr "도움말" #: tags/controller.php:22 msgid "Error loading tags" -msgstr "" +msgstr "태그 불러오기 오류" #: tags/controller.php:48 msgid "Tag already exists" @@ -545,23 +548,23 @@ msgstr "태그가 이미 존재합니다" #: tags/controller.php:64 msgid "Error deleting tag(s)" -msgstr "" +msgstr "태그 삭제 오류" #: tags/controller.php:75 msgid "Error tagging" -msgstr "" +msgstr "태그 추가 오류" #: tags/controller.php:86 msgid "Error untagging" -msgstr "" +msgstr "태그 해제 오류" #: tags/controller.php:97 msgid "Error favoriting" -msgstr "" +msgstr "즐겨찾기 추가 오류" #: tags/controller.php:108 msgid "Error unfavoriting" -msgstr "" +msgstr "즐겨찾기 삭제 오류" #: templates/403.php:12 msgid "Access forbidden" @@ -579,16 +582,16 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -msgstr "" +msgstr "안녕하세요,\n\n%s 님이 %s을(를) 공유하였음을 알려 드립니다.\n보기 링크: %s\n\n" #: templates/altmail.php:4 templates/mail.php:17 #, php-format msgid "The share will expire on %s." -msgstr "" +msgstr "이 공유는 %s 까지 유지됩니다." #: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" -msgstr "화이팅!" +msgstr "감사합니다!" #: templates/installation.php:25 templates/installation.php:32 #: templates/installation.php:39 @@ -627,7 +630,7 @@ msgstr ".htaccess 파일이 처리되지 않아서 데이터 디렉터리와 파 msgid "" "For information how to properly configure your server, please see the <a " "href=\"%s\" target=\"_blank\">documentation</a>." -msgstr "올바른 서버 설정을 위한 정보는 <a href=\"%s\" target=\"_blank\">문서</a>를 참조하세요." +msgstr "올바른 서버 설정을 위한 정보는 <a href=\"%s\" target=\"_blank\">문서</a>를 참조하십시오." #: templates/installation.php:48 msgid "Create an <strong>admin account</strong>" @@ -677,19 +680,19 @@ msgstr "설치 완료" #: templates/installation.php:185 msgid "Finishing …" -msgstr "종료중 ..." +msgstr "완료 중 ..." #: templates/layout.user.php:40 msgid "" "This application requires JavaScript to be enabled for correct operation. " "Please <a href=\"http://enable-javascript.com/\" target=\"_blank\">enable " "JavaScript</a> and re-load this interface." -msgstr "" +msgstr "이 애플리케이션을 올바르게 사용하려면 자바스크립트를 활성화해야 합니다. <a href=\"http://enable-javascript.com/\" target=\"_blank\">자바스크립트를 활성화</a>한 다음 인터페이스를 새로 고치십시오." #: templates/layout.user.php:44 #, php-format msgid "%s is available. Get more information on how to update." -msgstr "%s는 사용가능합니다. 업데이트방법에 대해서 더 많은 정보를 얻으세요." +msgstr "%s을(를) 사용할 수 있습니다. 업데이트하는 방법에 대해서 자세한 정보를 얻으십시오." #: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" @@ -715,7 +718,7 @@ msgstr "서버 인증 실패!" #: templates/login.php:18 msgid "Please contact your administrator." -msgstr "관리자에게 문의하세요." +msgstr "관리자에게 문의하십시오." #: templates/login.php:44 msgid "Lost your password?" @@ -731,32 +734,32 @@ msgstr "로그인" #: templates/login.php:58 msgid "Alternative Logins" -msgstr "대체 " +msgstr "대체 로그인" #: templates/mail.php:15 #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " "href=\"%s\">View it!</a><br><br>" -msgstr "" +msgstr "안녕하세요,<br><br>%s 님이 %s을(를) 공유하였음을 알려 드립니다.<br><a href=\"%s\">지금 보기!</a><br><br>" #: templates/singleuser.user.php:3 msgid "This ownCloud instance is currently in single user mode." -msgstr "" +msgstr "ownCloud 인스턴스가 현재 단일 사용자 모드로 동작 중입니다." #: templates/singleuser.user.php:4 msgid "This means only administrators can use the instance." -msgstr "" +msgstr "현재 시스템 관리자만 인스턴스를 사용할 수 있습니다." #: templates/singleuser.user.php:5 templates/update.user.php:5 msgid "" "Contact your system administrator if this message persists or appeared " "unexpectedly." -msgstr "" +msgstr "이 메시지가 계속 표시되거나, 예상하지 못하였을 때 표시된다면 시스템 관리자에게 연락하십시오" #: templates/singleuser.user.php:7 templates/update.user.php:6 msgid "Thank you for your patience." -msgstr "" +msgstr "기다려 주셔서 감사합니다." #: templates/update.admin.php:3 #, php-format @@ -766,8 +769,8 @@ msgstr "ownCloud를 버전 %s(으)로 업데이트합니다. 잠시 기다려 #: templates/update.user.php:3 msgid "" "This ownCloud instance is currently being updated, which may take a while." -msgstr "" +msgstr "ownCloud 인스턴스가 현재 업데이트 중입니다. 잠시만 기다려 주십시오." #: templates/update.user.php:4 msgid "Please reload this page after a short time to continue using ownCloud." -msgstr "" +msgstr "잠시 후 페이지를 다시 불러온 다음 ownCloud를 사용해 주십시오." diff --git a/l10n/ko/files.po b/l10n/ko/files.po index 4c34aa1f641..7ae321b6aba 100644 --- a/l10n/ko/files.po +++ b/l10n/ko/files.po @@ -3,6 +3,9 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# 책읽는달팽 <bjh13579@gmail.com>, 2013 +# Park Shinjo <peremen@gmail.com>, 2013 +# ujuc Gang <potopro@gmail.com>, 2013 # ujuc Gang <potopro@gmail.com>, 2013 # ujuc Gang <potopro@gmail.com>, 2013 # 책읽는달팽 <bjh13579@gmail.com>, 2013 @@ -10,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-11 13:31-0500\n" -"PO-Revision-Date: 2013-12-09 12:00+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-12-29 01:55-0500\n" +"PO-Revision-Date: 2013-12-28 22:06+0000\n" +"Last-Translator: Shinjo Park <kde@peremen.name>\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" @@ -23,12 +26,12 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "%s 항목을 이동시키지 못하였음 - 파일 이름이 이미 존재함" +msgstr "항목 %s을(를) 이동시킬 수 없음 - 같은 이름의 파일이 이미 존재함" #: ajax/move.php:27 ajax/move.php:30 #, php-format msgid "Could not move %s" -msgstr "%s 항목을 이딩시키지 못하였음" +msgstr "항목 %s을(를) 이동시킬 수 없음" #: ajax/newfile.php:56 js/files.js:74 msgid "File name cannot be empty." @@ -36,43 +39,48 @@ msgstr "파일 이름이 비어 있을 수 없습니다." #: ajax/newfile.php:62 msgid "File name must not contain \"/\". Please choose a different name." -msgstr "" +msgstr "파일 이름에는 \"/\"가 들어갈 수 없습니다. 다른 이름을 사용하십시오." #: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." -msgstr "" +msgstr "이름 %s이(가) 폴더 %s에서 이미 사용 중입니다. 다른 이름을 사용하십시오." #: ajax/newfile.php:81 msgid "Not a valid source" -msgstr "" +msgstr "올바르지 않은 원본" + +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "서버에서 URL을 열 수 없습니다. 서버 설정을 확인하십시오" -#: ajax/newfile.php:94 +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" -msgstr "" +msgstr "%s을(를) %s(으)로 다운로드하는 중 오류 발생" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" -msgstr "" +msgstr "파일 생성 중 오류 발생" #: ajax/newfolder.php:21 msgid "Folder name cannot be empty." -msgstr "" +msgstr "폴더 이름이 비어있을 수 없습니다." #: ajax/newfolder.php:27 msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "" +msgstr "폴더 이름에는 \"/\"가 들어갈 수 없습니다. 다른 이름을 사용하십시오." #: ajax/newfolder.php:56 msgid "Error when creating the folder" -msgstr "" +msgstr "폴더 생성 중 오류 발생" #: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." -msgstr "업로드 디렉터리를 정할수 없습니다" +msgstr "업로드 디렉터리를 설정할 수 없습니다." #: ajax/upload.php:27 msgid "Invalid Token" @@ -80,7 +88,7 @@ msgstr "잘못된 토큰" #: ajax/upload.php:64 msgid "No file was uploaded. Unknown error" -msgstr "파일이 업로드되지 않았습니다. 알 수 없는 오류입니다" +msgstr "파일이 업로드 되지 않았습니다. 알 수 없는 오류입니다" #: ajax/upload.php:71 msgid "There is no error, the file uploaded with success" @@ -119,11 +127,11 @@ msgstr "저장소가 용량이 충분하지 않습니다." #: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." -msgstr "업로드에 실패했습니다. 파일 정보를 가져올수 없습니다." +msgstr "업로드에 실패했습니다. 파일 정보를 가져올 수 없습니다." #: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" -msgstr "업로드에 실패했습니다. 업로드할 파일을 찾을수 없습니다" +msgstr "업로드에 실패했습니다. 업로드할 파일을 찾을 수 없습니다" #: ajax/upload.php:172 msgid "Invalid directory." @@ -135,7 +143,7 @@ msgstr "파일" #: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" -msgstr "{filename}을 업로드 할수 없습니다. 폴더이거나 0 바이트 파일입니다." +msgstr "{filename}을(를) 업로드할 수 없습니다. 폴더이거나 0 바이트 파일입니다." #: js/file-upload.js:239 msgid "Not enough space available" @@ -147,7 +155,7 @@ msgstr "업로드가 취소되었습니다." #: js/file-upload.js:344 msgid "Could not get result from server." -msgstr "서버에서 결과를 가져올수 없습니다." +msgstr "서버에서 결과를 가져올 수 없습니다." #: js/file-upload.js:436 msgid "" @@ -156,11 +164,11 @@ msgstr "파일 업로드가 진행 중입니다. 이 페이지를 벗어나면 #: js/file-upload.js:523 msgid "URL cannot be empty" -msgstr "" +msgstr "URL이 비어있을 수 없음" #: js/file-upload.js:527 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" +msgstr "'공유됨'은 홈 폴더의 예약된 파일 이름임" #: js/file-upload.js:529 js/filelist.js:379 msgid "{new_name} already exists" @@ -168,11 +176,15 @@ msgstr "{new_name}이(가) 이미 존재함" #: js/file-upload.js:595 msgid "Could not create file" -msgstr "" +msgstr "파일을 만들 수 없음" #: js/file-upload.js:611 msgid "Could not create folder" -msgstr "" +msgstr "폴더를 만들 수 없음" + +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "URL을 가져올 수 없음" #: js/fileactions.js:125 msgid "Share" @@ -180,7 +192,7 @@ msgstr "공유" #: js/fileactions.js:137 msgid "Delete permanently" -msgstr "영원히 삭제" +msgstr "영구히 삭제" #: js/fileactions.js:194 msgid "Rename" @@ -192,7 +204,7 @@ msgstr "대기 중" #: js/filelist.js:405 msgid "Could not rename file" -msgstr "" +msgstr "이름을 변경할 수 없음" #: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" @@ -200,21 +212,21 @@ msgstr "{old_name}이(가) {new_name}(으)로 대체됨" #: js/filelist.js:539 msgid "undo" -msgstr "되돌리기" +msgstr "실행 취소" #: js/filelist.js:591 msgid "Error deleting file." -msgstr "" +msgstr "파일 삭제 오류." #: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" -msgstr[0] "폴더 %n" +msgstr[0] "폴더 %n개" #: js/filelist.js:610 js/filelist.js:684 js/files.js:637 msgid "%n file" msgid_plural "%n files" -msgstr[0] "파일 %n 개" +msgstr[0] "파일 %n개" #: js/filelist.js:617 msgid "{dirs} and {files}" @@ -223,11 +235,11 @@ msgstr "{dirs} 그리고 {files}" #: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" msgid_plural "Uploading %n files" -msgstr[0] "%n 개의 파일을 업로드중" +msgstr[0] "파일 %n개 업로드 중" #: js/files.js:72 msgid "'.' is an invalid file name." -msgstr "'.' 는 올바르지 않은 파일 이름 입니다." +msgstr "'.' 는 올바르지 않은 파일 이름입니다." #: js/files.js:81 msgid "" @@ -247,26 +259,26 @@ msgstr "저장 공간이 거의 가득 찼습니다 ({usedSpacePercent}%)" msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" -msgstr "" +msgstr "암호화 앱이 활성화되어 있지만 키가 초기화되지 않았습니다. 로그아웃한 후 다시 로그인하십시오" #: js/files.js:114 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." -msgstr "" +msgstr "암호화 앱의 개인 키가 잘못되었습니다. 암호화된 파일에 다시 접근하려면 개인 설정에서 개인 키 암호를 업데이트해야 합니다." #: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." -msgstr "암호화는 해제되어 있지만, 파일은 아직 암호화 되어 있습니다. 개인 설저에 가셔서 암호를 해제하십시오" +msgstr "암호화는 해제되어 있지만, 파일은 아직 암호화되어 있습니다. 개인 설정에서 파일을 복호화하십시오." #: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." -msgstr "다운로드가 준비 중입니다. 파일 크기가 크다면 시간이 오래 걸릴 수도 있습니다." +msgstr "다운로드 준비 중입니다. 파일 크기가 크면 시간이 오래 걸릴 수도 있습니다." #: js/files.js:558 js/files.js:596 msgid "Error moving file" @@ -290,12 +302,12 @@ msgstr "수정됨" #: lib/app.php:60 msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" +msgstr "폴더 이름이 잘못되었습니다. '공유됨'은 예약된 폴더 이름입니다." #: lib/app.php:101 #, php-format msgid "%s could not be renamed" -msgstr "%s 의 이름을 변경할수 없습니다" +msgstr "%s의 이름을 변경할 수 없습니다" #: lib/helper.php:11 templates/index.php:16 msgid "Upload" @@ -339,7 +351,7 @@ msgstr "새로 만들기" #: templates/index.php:8 msgid "New text file" -msgstr "" +msgstr "새 텍스트 파일" #: templates/index.php:8 msgid "Text file" @@ -359,7 +371,7 @@ msgstr "링크에서" #: templates/index.php:29 msgid "Deleted files" -msgstr "파일 삭제됨" +msgstr "삭제된 파일" #: templates/index.php:34 msgid "Cancel upload" @@ -367,7 +379,7 @@ msgstr "업로드 취소" #: templates/index.php:40 msgid "You don’t have permission to upload or create files here" -msgstr "" +msgstr "여기에 파일을 업로드하거나 만들 권한이 없습니다" #: templates/index.php:45 msgid "Nothing in here. Upload something!" diff --git a/l10n/ko/files_encryption.po b/l10n/ko/files_encryption.po index f1c34c056be..87e1438ba0d 100644 --- a/l10n/ko/files_encryption.po +++ b/l10n/ko/files_encryption.po @@ -4,13 +4,16 @@ # # Translators: # 책읽는달팽 <bjh13579@gmail.com>, 2013 +# Park Shinjo <peremen@gmail.com>, 2013 +# Shinjo Park <kde@peremen.name>, 2013 +# 책읽는달팽 <bjh13579@gmail.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-02 17:27-0500\n" -"PO-Revision-Date: 2013-12-01 02:20+0000\n" -"Last-Translator: 책읽는달팽 <bjh13579@gmail.com>\n" +"POT-Creation-Date: 2013-12-29 01:55-0500\n" +"PO-Revision-Date: 2013-12-28 13:54+0000\n" +"Last-Translator: Shinjo Park <kde@peremen.name>\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" @@ -20,21 +23,21 @@ msgstr "" #: ajax/adminrecovery.php:29 msgid "Recovery key successfully enabled" -msgstr "복구키가 성공적으로 활성화 되었습니다" +msgstr "복구 키가 성공적으로 활성화되었습니다" #: ajax/adminrecovery.php:34 msgid "" "Could not enable recovery key. Please check your recovery key password!" -msgstr "복구키를 활성화 할수 없습니다. 복구키의 비밀번호를 확인해주세요!" +msgstr "복구 키를 활성화 할 수 없습니다. 복구 키의 암호를 확인해 주세요!" #: ajax/adminrecovery.php:48 msgid "Recovery key successfully disabled" -msgstr "복구키가 성공적으로 비활성화 되었습니다" +msgstr "복구 키가 성공적으로 비활성화 되었습니다" #: ajax/adminrecovery.php:53 msgid "" "Could not disable recovery key. Please check your recovery key password!" -msgstr "복구키를 비활성화 할수 없습니다. 복구키의 비밀번호를 확인해주세요!" +msgstr "복구 키를 비활성화 할 수 없습니다. 복구 키의 암호를 확인해주세요!" #: ajax/changeRecoveryPassword.php:49 msgid "Password successfully changed." @@ -42,24 +45,24 @@ msgstr "암호가 성공적으로 변경되었습니다" #: ajax/changeRecoveryPassword.php:51 msgid "Could not change the password. Maybe the old password was not correct." -msgstr "암호를 변경할수 없습니다. 아마도 예전 암호가 정확하지 않은것 같습니다." +msgstr "암호를 변경할 수 없습니다. 예전 암호가 정확하지 않은 것 같습니다." #: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." -msgstr "개인키 암호가 성공적으로 업데이트 됨." +msgstr "개인 키 암호가 성공적으로 업데이트 됨." #: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." -msgstr "" +msgstr "개인 키 암호를 업데이트할 수 없습니다. 이전 암호가 올바르지 않은 것 같습니다." #: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." -msgstr "" +msgstr "암호화 앱이 초기화되지 않았습니다! 암호화 앱이 다시 활성화된 것 같습니다. 암호화 앱을 초기화하려면 로그아웃했다 다시 로그인하십시오." #: files/error.php:16 #, php-format @@ -67,38 +70,38 @@ msgid "" "Your private key is not valid! Likely your password was changed outside of " "%s (e.g. your corporate directory). You can update your private key password" " in your personal settings to recover access to your encrypted files." -msgstr "" +msgstr "개인 키가 올바르지 않습니다! 암호가 %s(예: 회사 디렉터리) 외부에서 변경된 것 같습니다. 암호화된 파일에 다시 접근하려면 개인 설정에서 개인 키 암호를 수정하십시오." #: files/error.php:19 msgid "" "Can not decrypt this file, probably this is a shared file. Please ask the " "file owner to reshare the file with you." -msgstr "" +msgstr "이 파일을 복호화할 수 없습니다. 공유된 파일일 수도 있습니다. 파일 소유자에게 공유를 다시 요청하십시오." #: files/error.php:22 files/error.php:27 msgid "" "Unknown error please check your system settings or contact your " "administrator" -msgstr "" +msgstr "알 수 없는 오류. 시스템 설정을 확인하거나 관리자에게 문의하십시오." -#: hooks/hooks.php:59 +#: hooks/hooks.php:62 msgid "Missing requirements." -msgstr "" +msgstr "요구 사항이 부족합니다." -#: hooks/hooks.php:60 +#: hooks/hooks.php:63 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." -msgstr "" +msgstr "PHP 5.3.3 이상 설치 여부, PHP의 OpenSSL 확장 기능 활성화 및 설정 여부를 확인하십시오. 암호화 앱이 비활성화 되었습니다." -#: hooks/hooks.php:273 +#: hooks/hooks.php:281 msgid "Following users are not set up for encryption:" -msgstr "" +msgstr "다음 사용자는 암호화를 사용할 수 없습니다:" #: js/detect-migration.js:21 msgid "Initial encryption started... This can take some time. Please wait." -msgstr "" +msgstr "초기 암호화가 시작되었습니다... 시간이 걸릴 수도 있으니 기다려 주십시오." #: js/settings-admin.js:13 msgid "Saving..." @@ -106,7 +109,7 @@ msgstr "저장 중..." #: templates/invalid_private_key.php:8 msgid "Go directly to your " -msgstr "" +msgstr "다음으로 바로 가기: " #: templates/invalid_private_key.php:8 msgid "personal settings" @@ -119,15 +122,15 @@ msgstr "암호화" #: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" -msgstr "" +msgstr "복구 키 사용 (암호를 잊었을 때 파일을 복구할 수 있도록 함):" #: templates/settings-admin.php:11 msgid "Recovery key password" -msgstr "키 비밀번호 복구" +msgstr "복구 키 암호" #: templates/settings-admin.php:14 msgid "Repeat Recovery key password" -msgstr "" +msgstr "복구 키 암호 재입력" #: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" @@ -139,19 +142,19 @@ msgstr "비활성화" #: templates/settings-admin.php:34 msgid "Change recovery key password:" -msgstr "복구 키 비밀번호 변경" +msgstr "복구 키 암호 변경:" #: templates/settings-admin.php:40 msgid "Old Recovery key password" -msgstr "예전 복구 키 비밀번호" +msgstr "이전 복구 키 암호" #: templates/settings-admin.php:47 msgid "New Recovery key password" -msgstr "새 복구 키 비밀번호" +msgstr "새 복구 키 암호" #: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" -msgstr "" +msgstr "새 복구 키 암호 재입력" #: templates/settings-admin.php:58 msgid "Change Password" @@ -159,21 +162,21 @@ msgstr "암호 변경" #: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" -msgstr "" +msgstr "개인 키 암호와 로그인 암호가 일치하지 않습니다:" #: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." -msgstr "" +msgstr "이전 개인 키 암호를 현재 로그인 암호로 설정하십시오." #: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." -msgstr "" +msgstr " 이전 암호가 기억나지 않으면 시스템 관리자에게 파일 복구를 요청하십시오." #: templates/settings-personal.php:22 msgid "Old log-in password" -msgstr "예전 로그인 암호" +msgstr "이전 로그인 암호" #: templates/settings-personal.php:28 msgid "Current log-in password" @@ -185,13 +188,13 @@ msgstr "개인 키 암호 업데이트" #: templates/settings-personal.php:42 msgid "Enable password recovery:" -msgstr "" +msgstr "암호 복구 사용:" #: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" -msgstr "" +msgstr "이 옵션을 사용하면 암호를 잊었을 때 암호화된 파일에 다시 접근할 수 있습니다" #: templates/settings-personal.php:60 msgid "File recovery settings updated" @@ -199,4 +202,4 @@ msgstr "파일 복구 설정 업데이트됨" #: templates/settings-personal.php:61 msgid "Could not update file recovery" -msgstr "파일 복구를 업데이트 할수 없습니다" +msgstr "파일 복구를 업데이트할 수 없습니다" diff --git a/l10n/ko/files_sharing.po b/l10n/ko/files_sharing.po index eafcf147b51..7d21cd8d9d3 100644 --- a/l10n/ko/files_sharing.po +++ b/l10n/ko/files_sharing.po @@ -4,13 +4,15 @@ # # Translators: # 책읽는달팽 <bjh13579@gmail.com>, 2013 +# Park Shinjo <peremen@gmail.com>, 2013 +# 책읽는달팽 <bjh13579@gmail.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-12-24 01:55-0500\n" +"PO-Revision-Date: 2013-12-22 14:24+0000\n" +"Last-Translator: Shinjo Park <kde@peremen.name>\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" @@ -20,11 +22,11 @@ msgstr "" #: templates/authenticate.php:4 msgid "This share is password-protected" -msgstr "" +msgstr "이 공유는 암호로 보호되어 있습니다" #: templates/authenticate.php:7 msgid "The password is wrong. Try again." -msgstr "비밀번호가 틀립니다. 다시 입력해주세요." +msgstr "암호가 잘못되었습니다. 다시 입력해 주십시오." #: templates/authenticate.php:10 msgid "Password" @@ -32,7 +34,7 @@ msgstr "암호" #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." -msgstr "죄송합니다만 이 링크는 더이상 작동되지 않습니다." +msgstr "죄송합니다. 이 링크는 더 이상 작동하지 않습니다." #: templates/part.404.php:4 msgid "Reasons might be:" @@ -40,19 +42,19 @@ msgstr "이유는 다음과 같을 수 있습니다:" #: templates/part.404.php:6 msgid "the item was removed" -msgstr "이 항목은 삭제되었습니다" +msgstr "항목이 삭제됨" #: templates/part.404.php:7 msgid "the link expired" -msgstr "링크가 만료되었습니다" +msgstr "링크가 만료됨" #: templates/part.404.php:8 msgid "sharing is disabled" -msgstr "공유가 비활성되었습니다" +msgstr "공유가 비활성화됨" #: templates/part.404.php:10 msgid "For more info, please ask the person who sent this link." -msgstr "더 자세한 설명은 링크를 보내신 분에게 여쭤보십시오" +msgstr "자세한 정보는 링크를 보낸 사람에게 문의하십시오." #: templates/public.php:18 #, php-format @@ -82,4 +84,4 @@ msgstr "다음 항목을 미리 볼 수 없음:" #: templates/public.php:99 msgid "Direct link" -msgstr "" +msgstr "직접 링크" diff --git a/l10n/ko/files_trashbin.po b/l10n/ko/files_trashbin.po index b2fb3b67488..3b26bd329b5 100644 --- a/l10n/ko/files_trashbin.po +++ b/l10n/ko/files_trashbin.po @@ -4,13 +4,15 @@ # # Translators: # 책읽는달팽 <bjh13579@gmail.com>, 2013 +# Park Shinjo <peremen@gmail.com>, 2013 +# 책읽는달팽 <bjh13579@gmail.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-12-29 01:55-0500\n" +"PO-Revision-Date: 2013-12-28 13:54+0000\n" +"Last-Translator: Shinjo Park <kde@peremen.name>\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" @@ -18,44 +20,44 @@ msgstr "" "Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/delete.php:42 +#: ajax/delete.php:63 #, php-format msgid "Couldn't delete %s permanently" -msgstr "%s를 영구적으로 삭제할수 없습니다" +msgstr "%s을(를_ 영구적으로 삭제할 수 없습니다" -#: ajax/undelete.php:42 +#: ajax/undelete.php:43 #, php-format msgid "Couldn't restore %s" -msgstr "%s를 복원할수 없습니다" +msgstr "%s을(를) 복원할 수 없습니다" -#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 +#: js/trash.js:18 js/trash.js:45 js/trash.js:88 js/trash.js:142 msgid "Error" msgstr "오류" -#: lib/trashbin.php:815 lib/trashbin.php:817 +#: lib/trashbin.php:905 lib/trashbin.php:907 msgid "restored" msgstr "복원됨" -#: templates/index.php:8 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" -msgstr "현재 휴지통은 비어있습니다!" +msgstr "휴지통이 비어 있습니다!" -#: templates/index.php:22 +#: templates/index.php:20 msgid "Name" msgstr "이름" -#: templates/index.php:25 templates/index.php:27 +#: templates/index.php:23 templates/index.php:25 msgid "Restore" msgstr "복원" -#: templates/index.php:33 +#: templates/index.php:31 msgid "Deleted" msgstr "삭제됨" -#: templates/index.php:36 templates/index.php:37 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "삭제" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" -msgstr "삭제된 파일들" +msgstr "삭제된 파일" diff --git a/l10n/ko/files_versions.po b/l10n/ko/files_versions.po index 1a9375ae400..a7ee1176d0d 100644 --- a/l10n/ko/files_versions.po +++ b/l10n/ko/files_versions.po @@ -3,15 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# 책읽는달팽 <bjh13579@gmail.com>, 2013 +# Park Shinjo <peremen@gmail.com>, 2013 # Shinjo Park <kde@peremen.name>, 2013 -# smallsnail <bjh13579@gmail.com>, 2013 +# 책읽는달팽 <bjh13579@gmail.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-30 10:16-0400\n" -"PO-Revision-Date: 2013-09-29 10:18+0000\n" -"Last-Translator: smallsnail <bjh13579@gmail.com>\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-29 01:55-0500\n" +"PO-Revision-Date: 2013-12-28 13:54+0000\n" +"Last-Translator: Shinjo Park <kde@peremen.name>\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" @@ -24,22 +26,22 @@ msgstr "" msgid "Could not revert: %s" msgstr "되돌릴 수 없습니다: %s" -#: js/versions.js:7 +#: js/versions.js:14 msgid "Versions" msgstr "버전" -#: js/versions.js:53 +#: js/versions.js:60 msgid "Failed to revert {file} to revision {timestamp}." -msgstr "{timestamp} 판의 {file}로 돌리는데 실패했습니다." +msgstr "{file}을(를) 리비전 {timestamp}으(로) 되돌리는 데 실패하였습니다." -#: js/versions.js:79 +#: js/versions.js:86 msgid "More versions..." -msgstr "더 많은 버전들..." +msgstr "더 많은 버전..." -#: js/versions.js:116 +#: js/versions.js:123 msgid "No other versions available" -msgstr "다른 버전을 사용할수 없습니다" +msgstr "다른 버전을 사용할 수 없습니다" -#: js/versions.js:145 +#: js/versions.js:154 msgid "Restore" msgstr "복원" diff --git a/l10n/ko/lib.po b/l10n/ko/lib.po index 0ba47683b4a..b1fbf718762 100644 --- a/l10n/ko/lib.po +++ b/l10n/ko/lib.po @@ -3,15 +3,18 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# 책읽는달팽 <bjh13579@gmail.com>, 2013 +# chohy <chohy@yahoo.com>, 2013 # chohy <chohy@yahoo.com>, 2013 +# Park Shinjo <peremen@gmail.com>, 2013 # 책읽는달팽 <bjh13579@gmail.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-02 17:27-0500\n" -"PO-Revision-Date: 2013-12-01 02:20+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-12-24 01:55-0500\n" +"PO-Revision-Date: 2013-12-22 14:20+0000\n" +"Last-Translator: Shinjo Park <kde@peremen.name>\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" @@ -57,7 +60,7 @@ msgstr "\"%s\" 업그레이드에 실패했습니다." #: private/avatar.php:66 msgid "Unknown filetype" -msgstr "알수없는 파일형식" +msgstr "알 수 없는 파일 형식" #: private/avatar.php:71 msgid "Invalid image" @@ -72,27 +75,27 @@ msgstr "내가 관리하는 웹 서비스" msgid "cannot open \"%s\"" msgstr "\"%s\"을(를) 열 수 없습니다." -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." -msgstr "ZIP 다운로드가 비활성화되었습니다." +msgstr "ZIP 다운로드가 비활성화 되었습니다." -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "파일을 개별적으로 다운로드해야 합니다." -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "파일로 돌아가기" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "선택한 파일들은 ZIP 파일을 생성하기에 너무 큽니다." -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." -msgstr "" +msgstr "작은 조각들 안에 들어있는 파일들을 받고자 하신다면, 나누어서 받으시거나 혹은 시스템 관리자에게 정중하게 물어보십시오" #: private/installer.php:63 msgid "No source specified when installing app" @@ -100,7 +103,7 @@ msgstr "앱을 설치할 때 소스가 지정되지 않았습니다." #: private/installer.php:70 msgid "No href specified when installing app from http" -msgstr "http에서 앱을 설치할 대 href가 지정되지 않았습니다." +msgstr "http에서 앱을 설치할 때 href가 지정되지 않았습니다." #: private/installer.php:75 msgid "No path specified when installing app from local file" @@ -121,7 +124,7 @@ msgstr "앱에서 info.xml 파일이 제공되지 않았습니다." #: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" -msgstr "앱에 허용되지 않는 코드가 있어서 앱을 설치할 수 없습니다. " +msgstr "앱에 허용되지 않는 코드가 있어서 앱을 설치할 수 없습니다." #: private/installer.php:140 msgid "" @@ -133,22 +136,22 @@ msgstr "현재 ownCloud 버전과 호환되지 않기 때문에 앱을 설치할 msgid "" "App can't be installed because it contains the <shipped>true</shipped> tag " "which is not allowed for non shipped apps" -msgstr "출하되지 않은 앱에 허용되지 않는 <shipped>true</shipped> 태그를 포함하고 있기 때문에 앱을 설치할 수 없습니다." +msgstr "출시되지 않은 앱에 허용되지 않는 <shipped>true</shipped> 태그를 포함하고 있기 때문에 앱을 설치할 수 없습니다." #: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" -msgstr "info.xml/version에 포함된 버전과 앱 스토어에 보고된 버전이 같지 않아서 앱을 설치할 수 없습니다. " +msgstr "info.xml/version에 포함된 버전과 앱 스토어에 보고된 버전이 같지 않아서 앱을 설치할 수 없습니다." #: private/installer.php:169 msgid "App directory already exists" -msgstr "앱 디렉토리가 이미 존재합니다. " +msgstr "앱 디렉터리가 이미 존재합니다." #: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" -msgstr "앱 폴더를 만들 수 없습니다. 권한을 수정하십시오. %s " +msgstr "앱 폴더를 만들 수 없습니다. 권한을 수정하십시오. %s" #: private/json.php:28 msgid "Application is not enabled" @@ -174,20 +177,20 @@ msgstr "텍스트" msgid "Images" msgstr "그림" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." -msgstr "데이터베이스 사용자 명을 %s 에 입력해주십시오" +msgstr "%s 데이터베이스 사용자 이름을 입력해 주십시오." -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." -msgstr "데이터베이스 명을 %s 에 입력해주십시오" +msgstr "%s 데이터베이스 이름을 입력하십시오." -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" -msgstr "%s 에 적으신 데이터베이스 이름에는 점을 사용할수 없습니다" +msgstr "%s 데이터베이스 이름에는 마침표를 사용할 수 없습니다" #: private/setup/mssql.php:20 #, php-format @@ -205,11 +208,11 @@ msgid "MySQL username and/or password not valid" msgstr "MySQL 사용자 이름이나 암호가 잘못되었습니다." #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -217,10 +220,10 @@ msgid "DB Error: \"%s\"" msgstr "DB 오류: \"%s\"" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -234,16 +237,16 @@ msgstr "MySQL 사용자 '%s'@'localhost'이(가) 이미 존재합니다." #: private/setup/mysql.php:86 msgid "Drop this user from MySQL" -msgstr "이 사용자를 MySQL에서 뺍니다." +msgstr "이 사용자를 MySQL에서 삭제하십시오" #: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" -msgstr "MySQL 사용자 '%s'@'%%'이(가) 이미 존재합니다. " +msgstr "MySQL 사용자 '%s'@'%%'이(가) 이미 존재합니다." #: private/setup/mysql.php:92 msgid "Drop this user from MySQL." -msgstr "이 사용자를 MySQL에서 뺍니다." +msgstr "이 사용자를 MySQL에서 삭제하십시오." #: private/setup/oci.php:34 msgid "Oracle connection could not be established" @@ -253,22 +256,22 @@ msgstr "Oracle 연결을 수립할 수 없습니다." msgid "Oracle username and/or password not valid" msgstr "Oracle 사용자 이름이나 암호가 잘못되었습니다." -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "잘못된 명령: \"%s\", 이름: %s, 암호: %s" #: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" -msgstr "PostgreSQL의 사용자 명 혹은 비밀번호가 잘못되었습니다" +msgstr "PostgreSQL의 사용자 이름 또는 암호가 잘못되었습니다" #: private/setup.php:28 msgid "Set an admin username." -msgstr "관리자 이름 설정" +msgstr "관리자의 사용자 이름을 설정합니다." #: private/setup.php:31 msgid "Set an admin password." -msgstr "관리자 비밀번호 설정" +msgstr "관리자의 암호를 설정합니다." #: private/setup.php:195 msgid "" @@ -329,7 +332,3 @@ msgstr "작년" #: private/template/functions.php:142 msgid "years ago" msgstr "년 전" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "원인: " diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index 024b9957d9a..cb273b0aacf 100644 --- a/l10n/ko/settings.po +++ b/l10n/ko/settings.po @@ -3,15 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# 책읽는달팽 <bjh13579@gmail.com>, 2013 +# Park Shinjo <peremen@gmail.com>, 2013 # Shinjo Park <kde@peremen.name>, 2013 # 책읽는달팽 <bjh13579@gmail.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-04 23:13+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-12-30 01:55-0500\n" +"PO-Revision-Date: 2013-12-29 14:50+0000\n" +"Last-Translator: Shinjo Park <kde@peremen.name>\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" @@ -30,11 +32,11 @@ msgstr "인증 오류" #: ajax/changedisplayname.php:31 msgid "Your full name has been changed." -msgstr "" +msgstr "전체 이름이 변경되었습니다." #: ajax/changedisplayname.php:34 msgid "Unable to change full name" -msgstr "" +msgstr "전체 이름을 변경할 수 없음" #: ajax/creategroup.php:10 msgid "Group already exists" @@ -88,32 +90,32 @@ msgstr "앱을 업데이트할 수 없습니다." #: changepassword/controller.php:20 msgid "Wrong password" -msgstr "잘못된 비밀번호" +msgstr "잘못된 암호" #: changepassword/controller.php:42 msgid "No user supplied" -msgstr "" +msgstr "사용자가 지정되지 않음" #: changepassword/controller.php:74 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" -msgstr "" +msgstr "관리자 복구 암호를 입력하지 않으면 모든 사용자 데이터가 삭제됩니다" #: changepassword/controller.php:79 msgid "" "Wrong admin recovery password. Please check the password and try again." -msgstr "" +msgstr "관리자 복구 암호가 잘못되었습니다. 암호를 다시 확인하십시오." #: changepassword/controller.php:87 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." -msgstr "" +msgstr "백엔드에서 암호 변경을 지원하지 않지만, 사용자의 암호화 키는 갱신되었습니다." #: changepassword/controller.php:92 changepassword/controller.php:103 msgid "Unable to change password" -msgstr "비밀번호를 변경하실수 없습니다" +msgstr "암호를 변경할 수 없음" #: js/apps.js:43 msgid "Update to {appversion}" @@ -121,7 +123,7 @@ msgstr "버전 {appversion}(으)로 업데이트" #: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" -msgstr "비활성화" +msgstr "사용 안함" #: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" @@ -133,11 +135,11 @@ msgstr "기다려 주십시오...." #: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" -msgstr "앱을 사용중지하는 도중 에러발생" +msgstr "앱을 비활성화하는 중 오류 발생" #: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" -msgstr "앱을 사용토록 하는 중에 에러발생" +msgstr "앱을 활성화하는 중 오류 발생" #: js/apps.js:125 msgid "Updating...." @@ -165,7 +167,7 @@ msgstr "프로필 사진 선택" #: js/personal.js:266 msgid "Decrypting files... Please wait, this can take some time." -msgstr "파일 해독중... 잠시만 기다려주세요, 시간이 걸릴수 있습니다." +msgstr "파일 복호화 중... 시간이 걸릴 수도 있으니 기다려 주십시오." #: js/personal.js:287 msgid "Saving..." @@ -200,21 +202,21 @@ msgstr "삭제" msgid "add group" msgstr "그룹 추가" -#: js/users.js:451 +#: js/users.js:454 msgid "A valid username must be provided" msgstr "올바른 사용자 이름을 입력해야 함" -#: js/users.js:452 js/users.js:458 js/users.js:473 +#: js/users.js:455 js/users.js:461 js/users.js:476 msgid "Error creating user" msgstr "사용자 생성 오류" -#: js/users.js:457 +#: js/users.js:460 msgid "A valid password must be provided" msgstr "올바른 암호를 입력해야 함" -#: js/users.js:481 +#: js/users.js:484 msgid "Warning: Home directory for user \"{user}\" already exists" -msgstr "" +msgstr "경고: 사용자 \"{user}\"의 홈 디렉터리가 이미 존재합니다" #: personal.php:45 personal.php:46 msgid "__language_name__" @@ -222,23 +224,23 @@ msgstr "한국어" #: templates/admin.php:8 msgid "Everything (fatal issues, errors, warnings, info, debug)" -msgstr "" +msgstr "모두 (치명적 문제, 오류, 경고, 정보, 디버그)" #: templates/admin.php:9 msgid "Info, warnings, errors and fatal issues" -msgstr "" +msgstr "정보, 경고, 오류, 치명적 문제" #: templates/admin.php:10 msgid "Warnings, errors and fatal issues" -msgstr "" +msgstr "경고, 오류, 치명적 문제" #: templates/admin.php:11 msgid "Errors and fatal issues" -msgstr "" +msgstr "오류, 치명적 문제" #: templates/admin.php:12 msgid "Fatal issues only" -msgstr "" +msgstr "치명적 문제만" #: templates/admin.php:22 templates/admin.php:36 msgid "Security Warning" @@ -249,7 +251,7 @@ msgstr "보안 경고" msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." -msgstr "" +msgstr "%s에 HTTP로 접근하고 있습니다. 서버에서 HTTPS를 사용하도록 설정하는 것을 추천합니다." #: templates/admin.php:39 msgid "" @@ -258,7 +260,7 @@ msgid "" "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 "데이터 디렉터리와 파일을 인터넷에서 접근할 수도 있습니다. .htaccess 파일이 작동하지 않습니다. 웹 서버 설정을 변경하여 데이터 디렉터리에 접근할 수 없도록 하거나, 웹 서버 문서 경로 외부로 데이터 디렉터리를 옮기십시오." #: templates/admin.php:50 msgid "Setup Warning" @@ -273,7 +275,7 @@ msgstr "WebDAV 인터페이스가 제대로 작동하지 않습니다. 웹 서 #: templates/admin.php:54 #, php-format msgid "Please double check the <a href=\"%s\">installation guides</a>." -msgstr "" +msgstr "<a href=\"%s\">설치 가이드</a>를 다시 한 번 확인하십시오." #: templates/admin.php:65 msgid "Module 'fileinfo' missing" @@ -287,14 +289,14 @@ msgstr "PHP 모듈 'fileinfo'가 존재하지 않습니다. MIME 형식 감지 #: templates/admin.php:79 msgid "Your PHP version is outdated" -msgstr "" +msgstr "PHP 버전이 오래됨" #: templates/admin.php:82 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." -msgstr "" +msgstr "PHP 버전이 오래되었습니다. 오래된 버전은 작동하지 않을 수도 있기 때문에 PHP 5.3.8 이상을 사용하는 것을 추천합니다." #: templates/admin.php:93 msgid "Locale not working" @@ -302,20 +304,20 @@ msgstr "로캘이 작동하지 않음" #: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." -msgstr "" +msgstr "UTF-8을 지원하는 시스템 로캘을 사용할 수 없습니다." #: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." -msgstr "" +msgstr "파일 이름의 일부 문자에 문제가 생길 수도 있습니다." #: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." -msgstr "" +msgstr "다음 로캘을 지원하도록 시스템 설정을 변경하는 것을 추천합니다: %s" #: templates/admin.php:118 msgid "Internet connection not working" @@ -328,7 +330,7 @@ msgid "" "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." -msgstr "" +msgstr "서버에서 인터넷에 연결할 수 없습니다. 외부 저장소 마운트, 업데이트 알림, 제 3자 앱 설치 등 일부 기능을 사용할 수 없습니다. 외부에서 파일에 접근하거나 알림 이메일을 보내지 못할 수도 있습니다. 모든 기능을 사용하려면 인터넷에 연결하는 것을 추천합니다." #: templates/admin.php:135 msgid "Cron" @@ -342,11 +344,11 @@ msgstr "개별 페이지를 불러올 때마다 실행" msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." -msgstr "" +msgstr "cron.php는 webcron 서비스에 등록되어 HTTP로 15분마다 cron.php에 접근합니다." #: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." -msgstr "" +msgstr "시스템의 cron 서비스를 통하여 15분마다 cron.php 파일에 접근합니다." #: templates/admin.php:163 msgid "Sharing" @@ -370,12 +372,12 @@ msgstr "사용자가 개별 항목의 링크를 공유할 수 있도록 허용" #: templates/admin.php:186 msgid "Allow public uploads" -msgstr "퍼블릭 업로드 허용" +msgstr "공개 업로드 허용" #: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" -msgstr "" +msgstr "다른 사용자들이 공개된 공유 폴더에 파일 업로드 허용" #: templates/admin.php:195 msgid "Allow resharing" @@ -391,11 +393,11 @@ msgstr "누구나와 공유할 수 있도록 허용" #: templates/admin.php:206 msgid "Allow users to only share with users in their groups" -msgstr "사용자가 속해 있는 그룹의 사용자와만 공유할 수 있도록 허용" +msgstr "사용자가 속해 있는 그룹의 사용자에게만 공유할 수 있도록 허용" #: templates/admin.php:213 msgid "Allow mail notification" -msgstr "메일 알림을 허용" +msgstr "메일 알림 허용" #: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" @@ -412,14 +414,14 @@ msgstr "HTTPS 강제 사용" #: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." -msgstr "" +msgstr "클라이언트가 %s에 연결할 때 암호화 연결을 강제로 사용합니다." #: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." -msgstr "" +msgstr "SSL 강제 설정을 변경하려면 %s에 HTTPS로 연결해야 합니다." #: templates/admin.php:254 msgid "Log" @@ -534,7 +536,7 @@ msgstr "암호 변경" #: templates/personal.php:58 templates/users.php:88 msgid "Full Name" -msgstr "" +msgstr "전체 이름" #: templates/personal.php:73 msgid "Email" @@ -554,7 +556,7 @@ msgstr "프로필 사진" #: templates/personal.php:91 msgid "Upload new" -msgstr "새로이 업로드하기" +msgstr "새로 업로드" #: templates/personal.php:93 msgid "Select new from Files" @@ -566,19 +568,19 @@ msgstr "그림 삭제" #: templates/personal.php:95 msgid "Either png or jpg. Ideally square but you will be able to crop it." -msgstr "" +msgstr "png나 jpg를 사용하십시오. 정사각형 형태가 가장 좋지만 잘라낼 수 있습니다." #: templates/personal.php:97 msgid "Your avatar is provided by your original account." -msgstr "" +msgstr "원본 계정의 아바타를 사용합니다." #: templates/personal.php:101 msgid "Abort" -msgstr "대하여" +msgstr "중지" #: templates/personal.php:102 msgid "Choose as profile image" -msgstr "프로필 사진을 선택해주세요" +msgstr "프로필 이미지로 사용" #: templates/personal.php:110 templates/personal.php:111 msgid "Language" @@ -597,7 +599,7 @@ msgstr "WebDAV" msgid "" "Use this address to <a href=\"%s\" target=\"_blank\">access your Files via " "WebDAV</a>" -msgstr "" +msgstr "WebDAV로 파일에 접근하려면 <a href=\"%s\" target=\"_blank\">이 주소를 사용하십시오</a>" #: templates/personal.php:150 msgid "Encryption" @@ -605,15 +607,15 @@ msgstr "암호화" #: templates/personal.php:152 msgid "The encryption app is no longer enabled, please decrypt all your files" -msgstr "" +msgstr "암호화 앱이 비활성화되었습니다. 모든 파일을 복호화해야 합니다." #: templates/personal.php:158 msgid "Log-in password" -msgstr "로그인 비밀번호" +msgstr "로그인 암호" #: templates/personal.php:163 msgid "Decrypt all Files" -msgstr "모든 파일 해독" +msgstr "모든 파일 복호화" #: templates/users.php:21 msgid "Login Name" @@ -639,7 +641,7 @@ msgstr "기본 저장소" #: templates/users.php:44 templates/users.php:139 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" -msgstr "" +msgstr "저장소 할당량을 입력하십시오 (예: \"512 MB\", \"12 GB\")" #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" @@ -659,7 +661,7 @@ msgstr "저장소" #: templates/users.php:108 msgid "change full name" -msgstr "" +msgstr "전체 이름 변경" #: templates/users.php:112 msgid "set new password" diff --git a/l10n/ko/user_ldap.po b/l10n/ko/user_ldap.po index 950b5ff5f15..9fd54b68897 100644 --- a/l10n/ko/user_ldap.po +++ b/l10n/ko/user_ldap.po @@ -4,13 +4,15 @@ # # Translators: # madeng <jongyoul@gmail.com>, 2013 +# madeng <jongyoul@gmail.com>, 2013 +# Park Shinjo <peremen@gmail.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-03 02:50+0000\n" -"Last-Translator: madeng <jongyoul@gmail.com>\n" +"POT-Creation-Date: 2013-12-29 01:55-0500\n" +"PO-Revision-Date: 2013-12-28 13:55+0000\n" +"Last-Translator: Shinjo Park <kde@peremen.name>\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" @@ -20,44 +22,44 @@ msgstr "" #: ajax/clearMappings.php:34 msgid "Failed to clear the mappings." -msgstr "" +msgstr "매핑을 비울 수 없습니다." #: ajax/deleteConfiguration.php:34 msgid "Failed to delete the server configuration" -msgstr "" +msgstr "서버 설정을 삭제할 수 없습니다." #: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" -msgstr "" +msgstr "설정 정보가 올바르고 연결할 수 있습니다!" #: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." -msgstr "" +msgstr "설정 정보가 올바르지만 바인딩이 실패하였습니다. 서버 설정과 인증 정보를 확인하십시오." #: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." -msgstr "" +msgstr "설정이 올바르지 않습니다. 자세한 사항은 로그를 참고하십시오." #: ajax/wizard.php:32 msgid "No action specified" -msgstr "" +msgstr "동작이 지정되지 않음" #: ajax/wizard.php:38 msgid "No configuration specified" -msgstr "" +msgstr "설정이 지정되지 않음" #: ajax/wizard.php:81 msgid "No data specified" -msgstr "" +msgstr "데이터가 지정되지 않음" #: ajax/wizard.php:89 #, php-format msgid " Could not set configuration %s" -msgstr "" +msgstr " 설정 %s을(를) 지정할 수 없음" #: js/settings.js:67 msgid "Deletion failed" @@ -65,23 +67,23 @@ msgstr "삭제 실패" #: js/settings.js:83 msgid "Take over settings from recent server configuration?" -msgstr "" +msgstr "최근 서버 설정을 다시 불러오시겠습니까?" #: js/settings.js:84 msgid "Keep settings?" -msgstr "설정을 유지합니까?" +msgstr "설정을 유지하겠습니까?" #: js/settings.js:99 msgid "Cannot add server configuration" -msgstr "" +msgstr "서버 설정을 추가할 수 없음" #: js/settings.js:127 msgid "mappings cleared" -msgstr "" +msgstr "매핑 삭제됨" #: js/settings.js:128 msgid "Success" -msgstr "" +msgstr "성공" #: js/settings.js:133 msgid "Error" @@ -89,15 +91,15 @@ msgstr "오류" #: js/settings.js:837 msgid "Configuration OK" -msgstr "" +msgstr "설정 올바름" #: js/settings.js:846 msgid "Configuration incorrect" -msgstr "" +msgstr "설정 올바르지 않음" #: js/settings.js:855 msgid "Configuration incomplete" -msgstr "" +msgstr "설정 불완전함" #: js/settings.js:872 js/settings.js:881 msgid "Select groups" @@ -105,11 +107,11 @@ msgstr "그룹 선택" #: js/settings.js:875 js/settings.js:884 msgid "Select object classes" -msgstr "" +msgstr "객체 클래스 선택" #: js/settings.js:878 msgid "Select attributes" -msgstr "" +msgstr "속성 선택" #: js/settings.js:905 msgid "Connection test succeeded" @@ -125,27 +127,27 @@ msgstr "현재 서버 설정을 지우시겠습니까?" #: js/settings.js:922 msgid "Confirm Deletion" -msgstr "" +msgstr "삭제 확인" #: lib/wizard.php:79 lib/wizard.php:93 #, php-format msgid "%s group found" msgid_plural "%s groups found" -msgstr[0] "" +msgstr[0] "그룹 %s개 찾음" #: lib/wizard.php:122 #, php-format msgid "%s user found" msgid_plural "%s users found" -msgstr[0] "" +msgstr[0] "사용자 %s명 찾음" #: lib/wizard.php:778 lib/wizard.php:790 msgid "Invalid Host" -msgstr "" +msgstr "잘못된 호스트" #: lib/wizard.php:951 msgid "Could not find the desired feature" -msgstr "" +msgstr "필요한 기능을 찾을 수 없음" #: templates/part.settingcontrols.php:2 msgid "Save" @@ -153,7 +155,7 @@ msgstr "저장" #: templates/part.settingcontrols.php:4 msgid "Test Configuration" -msgstr "" +msgstr "설정 시험" #: templates/part.settingcontrols.php:10 templates/part.wizardcontrols.php:14 msgid "Help" @@ -162,62 +164,62 @@ msgstr "도움말" #: templates/part.wizard-groupfilter.php:4 #, php-format msgid "Limit the access to %s to groups meeting this criteria:" -msgstr "" +msgstr "다음 조건을 만족하는 그룹만 %s 접근 허용:" #: templates/part.wizard-groupfilter.php:8 #: templates/part.wizard-userfilter.php:8 msgid "only those object classes:" -msgstr "" +msgstr "다음 객체 클래스만:" #: templates/part.wizard-groupfilter.php:17 #: templates/part.wizard-userfilter.php:17 msgid "only from those groups:" -msgstr "" +msgstr "다음 그룹에서만:" #: templates/part.wizard-groupfilter.php:25 #: templates/part.wizard-loginfilter.php:32 #: templates/part.wizard-userfilter.php:25 msgid "Edit raw filter instead" -msgstr "" +msgstr "필터 직접 편집" #: templates/part.wizard-groupfilter.php:30 #: templates/part.wizard-loginfilter.php:37 #: templates/part.wizard-userfilter.php:30 msgid "Raw LDAP filter" -msgstr "" +msgstr "LDAP 필터" #: templates/part.wizard-groupfilter.php:31 #, php-format msgid "" "The filter specifies which LDAP groups shall have access to the %s instance." -msgstr "" +msgstr "이 필터는 %s에 접근할 수 있는 LDAP 그룹을 설정합니다." #: templates/part.wizard-groupfilter.php:38 msgid "groups found" -msgstr "" +msgstr "그룹 찾음" #: templates/part.wizard-loginfilter.php:4 msgid "What attribute shall be used as login name:" -msgstr "" +msgstr "로그인 이름으로 사용할 속성:" #: templates/part.wizard-loginfilter.php:8 msgid "LDAP Username:" -msgstr "" +msgstr "LDAP 사용자 이름:" #: templates/part.wizard-loginfilter.php:16 msgid "LDAP Email Address:" -msgstr "" +msgstr "LDAP 이메일 주소:" #: templates/part.wizard-loginfilter.php:24 msgid "Other Attributes:" -msgstr "" +msgstr "기타 속성:" #: templates/part.wizard-loginfilter.php:38 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action. Example: \"uid=%%uid\"" -msgstr "" +msgstr "로그인을 시도할 때 적용할 필터를 입력하십시오. %%uid는 로그인 동작의 사용자 이름으로 대체됩니다. 예: \"uid=%%uid\"" #: templates/part.wizard-server.php:18 msgid "Add Server Configuration" @@ -230,7 +232,7 @@ msgstr "호스트" #: templates/part.wizard-server.php:31 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" -msgstr "SSL을 사용하는 경우가 아니라면 프로토콜을 입력하지 않아도 됩니다. SSL을 사용하려면 ldaps://를 입력하십시오." +msgstr "SSL을 사용하지 않으면 프로토콜을 입력하지 않아도 됩니다. SSL을 사용하려면 ldaps://를 입력하십시오." #: templates/part.wizard-server.php:36 msgid "Port" @@ -266,17 +268,17 @@ msgstr "고급 탭에서 사용자 및 그룹에 대한 기본 DN을 지정할 #: templates/part.wizard-userfilter.php:4 #, php-format msgid "Limit the access to %s to users meeting this criteria:" -msgstr "" +msgstr "다음 조건을 만족하는 사용자만 %s 접근 허용:" #: templates/part.wizard-userfilter.php:31 #, php-format msgid "" "The filter specifies which LDAP users shall have access to the %s instance." -msgstr "" +msgstr "이 필터는 %s에 접근할 수 있는 LDAP 사용자를 설정합니다." #: templates/part.wizard-userfilter.php:38 msgid "users found" -msgstr "" +msgstr "사용자 찾음" #: templates/part.wizardcontrols.php:5 msgid "Back" @@ -291,7 +293,7 @@ msgid "" "<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may" " experience unexpected behavior. Please ask your system administrator to " "disable one of them." -msgstr "" +msgstr "<b>경고:</b> user_ldap, user_webdavauth 앱은 서로 호환되지 않습니다. 예상하지 못한 행동을 할 수도 있습니다. 시스템 관리자에게 연락하여 둘 중 하나의 앱의 사용을 중단하십시오." #: templates/settings.php:14 msgid "" @@ -305,21 +307,21 @@ msgstr "연결 설정" #: templates/settings.php:22 msgid "Configuration Active" -msgstr "구성 활성화" +msgstr "구성 활성" #: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." -msgstr "선택하지 않으시면, 설정은 무시됩니다." +msgstr "선택하지 않으면 이 설정을 무시합니다." #: templates/settings.php:23 msgid "Backup (Replica) Host" -msgstr "백업 (복제) 포트" +msgstr "백업 (복제) 호스트" #: templates/settings.php:23 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." -msgstr "" +msgstr "추가적인 백업 호스트를 지정합니다. 기본 LDAP/AD 서버의 복사본이어야 합니다." #: templates/settings.php:24 msgid "Backup (Replica) Port" @@ -331,7 +333,7 @@ msgstr "주 서버 비활성화" #: templates/settings.php:25 msgid "Only connect to the replica server." -msgstr "" +msgstr "복제 서버에만 연결합니다." #: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" @@ -346,19 +348,19 @@ msgstr "SSL 인증서 유효성 검사를 해제합니다." msgid "" "Not recommended, use it for testing only! If connection only works with this" " option, import the LDAP server's SSL certificate in your %s server." -msgstr "" +msgstr "테스트 목적으로만 사용하십시오! 이 옵션을 사용해야만 연결할 수 있으면 %s 서버에 LDAP 서버의 SSL 인증서를 설치하십시오." #: templates/settings.php:28 msgid "Cache Time-To-Live" -msgstr "" +msgstr "캐시 유지 시간" #: templates/settings.php:28 msgid "in seconds. A change empties the cache." -msgstr "초. 항목 변경 시 캐시가 갱신됩니다." +msgstr "초 단위입니다. 항목 변경 시 캐시가 갱신됩니다." #: templates/settings.php:30 msgid "Directory Settings" -msgstr "디렉토리 설정" +msgstr "디렉터리 설정" #: templates/settings.php:32 msgid "User Display Name Field" @@ -366,7 +368,7 @@ msgstr "사용자의 표시 이름 필드" #: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." -msgstr "" +msgstr "사용자 표시 이름을 생성할 때 사용할 LDAP 속성입니다." #: templates/settings.php:33 msgid "Base User Tree" @@ -382,7 +384,7 @@ msgstr "사용자 검색 속성" #: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" -msgstr "" +msgstr "추가적, 한 줄에 하나의 속성을 입력하십시오" #: templates/settings.php:35 msgid "Group Display Name Field" @@ -390,7 +392,7 @@ msgstr "그룹의 표시 이름 필드" #: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." -msgstr "" +msgstr "그룹 표시 이름을 생성할 때 사용할 LDAP 속성입니다." #: templates/settings.php:36 msgid "Base Group Tree" @@ -410,27 +412,27 @@ msgstr "그룹-회원 연결" #: templates/settings.php:40 msgid "Special Attributes" -msgstr "" +msgstr "특수 속성" #: templates/settings.php:42 msgid "Quota Field" -msgstr "" +msgstr "할당량 필드" #: templates/settings.php:43 msgid "Quota Default" -msgstr "" +msgstr "기본 할당량" #: templates/settings.php:43 msgid "in bytes" -msgstr "바이트" +msgstr "바이트 단위" #: templates/settings.php:44 msgid "Email Field" -msgstr "" +msgstr "이메일 필드" #: templates/settings.php:45 msgid "User Home Folder Naming Rule" -msgstr "" +msgstr "사용자 홈 폴더 이름 규칙" #: templates/settings.php:45 msgid "" @@ -440,7 +442,7 @@ msgstr "사용자 이름을 사용하려면 비워 두십시오(기본값). 기 #: templates/settings.php:51 msgid "Internal Username" -msgstr "" +msgstr "내부 사용자 이름" #: templates/settings.php:52 msgid "" @@ -456,15 +458,15 @@ msgid "" "behavior as before ownCloud 5 enter the user display name attribute in the " "following field. Leave it empty for default behavior. Changes will have " "effect only on newly mapped (added) LDAP users." -msgstr "" +msgstr "기본적으로 내부 사용자 이름은 UUID 속성에서 생성됩니다. 사용자 이름이 중복되지 않고 문자열을 변환할 필요가 없도록 합니다. 내부 사용자 이름에는 다음과 같은 문자열만 사용할 수 있습니다: [a-zA-Z0-9_.@-] 다른 문자열은 ASCII에 해당하는 문자열로 변경되거나 없는 글자로 취급됩니다. 충돌하는 경우 숫자가 붙거나 증가합니다. 내부 사용자 이름은 내부적으로 사용자를 식별하는 데 사용되며, 사용자 홈 폴더의 기본 이름입니다. 또한 *DAV와 같은 외부 URL의 일부로 사용됩니다. 이 설정을 사용하면 기본 설정을 재정의할 수 있습니다. ownCloud 5 이전의 행동을 사용하려면 아래 필드에 사용자의 표시 이름 속성을 입력하십시오. 비워 두면 기본 설정을 사용합니다. 새로 추가되거나 매핑된 LDAP 사용자에게만 적용됩니다." #: templates/settings.php:53 msgid "Internal Username Attribute:" -msgstr "" +msgstr "내부 사용자 이름 속성:" #: templates/settings.php:54 msgid "Override UUID detection" -msgstr "" +msgstr "UUID 확인 재정의" #: templates/settings.php:55 msgid "" @@ -475,19 +477,19 @@ msgid "" "You must make sure that the attribute of your choice can be fetched for both" " users and groups and it is unique. Leave it empty for default behavior. " "Changes will have effect only on newly mapped (added) LDAP users and groups." -msgstr "" +msgstr "기본적으로 UUID 속성은 자동적으로 감지됩니다. UUID 속성은 LDAP 사용자와 그룹을 정확히 식별하는 데 사용됩니다. 지정하지 않은 경우 내부 사용자 이름은 UUID를 기반으로 생성됩니다. 이 설정을 다시 정의하고 임의의 속성을 지정할 수 있습니다. 사용자와 그룹 모두에게 속성을 적용할 수 있고 중복된 값이 없는지 확인하십시오. 비워 두면 기본 설정을 사용합니다. 새로 추가되거나 매핑된 LDAP 사용자와 그룹에만 적용됩니다." #: templates/settings.php:56 msgid "UUID Attribute for Users:" -msgstr "" +msgstr "사용자 UUID 속성:" #: templates/settings.php:57 msgid "UUID Attribute for Groups:" -msgstr "" +msgstr "그룹 UUID 속성:" #: templates/settings.php:58 msgid "Username-LDAP User Mapping" -msgstr "" +msgstr "사용자 이름-LDAP 사용자 매핑" #: templates/settings.php:59 msgid "" @@ -501,12 +503,12 @@ msgid "" " is not configuration sensitive, it affects all LDAP configurations! Never " "clear the mappings in a production environment, only in a testing or " "experimental stage." -msgstr "" +msgstr "사용자 이름은 (메타) 데이터를 저장하고 할당하는 데 사용됩니다. 사용자를 정확하게 식별하기 위하여 각각 LDAP 사용자는 내부 사용자 이름을 갖습니다. 이는 사용자 이름과 LDAP 사용자 간의 매핑이 필요합니다. 생성된 사용자 이름은 LDAP 사용자의 UUID로 매핑됩니다. 추가적으로 LDAP 통신을 줄이기 위해서 DN이 캐시에 저장되지만 식별에 사용되지는 않습니다. DN이 변경되면 변경 사항이 기록됩니다. 내부 사용자 이름은 계속 사용됩니다. 매핑을 비우면 흔적이 남아 있게 됩니다. 매핑을 비우는 작업은 모든 LDAP 설정에 영향을 줍니다! 테스트 및 실험 단계에만 사용하고, 사용 중인 서버에서는 시도하지 마십시오." #: templates/settings.php:60 msgid "Clear Username-LDAP User Mapping" -msgstr "" +msgstr "사용자 이름-LDAP 사용자 매핑 비우기" #: templates/settings.php:60 msgid "Clear Groupname-LDAP Group Mapping" -msgstr "" +msgstr "그룹 이름-LDAP 그룹 매핑 비우기" diff --git a/l10n/ko/user_webdavauth.po b/l10n/ko/user_webdavauth.po index 3f4b8bc0bb4..e63287131e5 100644 --- a/l10n/ko/user_webdavauth.po +++ b/l10n/ko/user_webdavauth.po @@ -5,18 +5,19 @@ # Translators: # aoiob4305 <aoiob4305@gmail.com>, 2013 # aoiob4305 <aoiob4305@gmail.com>, 2013 +# 책읽는달팽 <bjh13579@gmail.com>, 2013 # 남자사람 <cessnagi@gmail.com>, 2012 # 남자사람 <cessnagi@gmail.com>, 2012 # Shinjo Park <kde@peremen.name>, 2013 # Shinjo Park <kde@peremen.name>, 2013 -# smallsnail <bjh13579@gmail.com>, 2013 +# 책읽는달팽 <bjh13579@gmail.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-02 14:50+0000\n" -"Last-Translator: smallsnail <bjh13579@gmail.com>\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-24 01:55-0500\n" +"PO-Revision-Date: 2013-12-22 14:18+0000\n" +"Last-Translator: Shinjo Park <kde@peremen.name>\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/ku_IQ/core.po b/l10n/ku_IQ/core.po index be776e6d22b..e1f373f400e 100644 --- a/l10n/ku_IQ/core.po +++ b/l10n/ku_IQ/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -148,59 +148,59 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "دهستكاری" -#: js/js.js:858 +#: js/js.js:869 msgid "seconds ago" msgstr "" -#: js/js.js:859 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:860 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:861 +#: js/js.js:872 msgid "today" msgstr "" -#: js/js.js:862 +#: js/js.js:873 msgid "yesterday" msgstr "" -#: js/js.js:863 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:864 +#: js/js.js:875 msgid "last month" msgstr "" -#: js/js.js:865 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:866 +#: js/js.js:877 msgid "months ago" msgstr "" -#: js/js.js:867 +#: js/js.js:878 msgid "last year" msgstr "" -#: js/js.js:868 +#: js/js.js:879 msgid "years ago" msgstr "" diff --git a/l10n/ku_IQ/files.po b/l10n/ku_IQ/files.po index 87a1dd031b0..d373fd5e632 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "هاوبەشی کردن" diff --git a/l10n/ku_IQ/lib.po b/l10n/ku_IQ/lib.po index 2339d9095db..9c805fbc4c7 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -53,15 +53,15 @@ msgstr "بهڕێوهبهری سهرهكی" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "ڕاژهی وێب لهژێر چاودێریت دایه" @@ -70,23 +70,23 @@ msgstr "ڕاژهی وێب لهژێر چاودێریت دایه" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "" msgid "Images" msgstr "" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -331,7 +331,3 @@ msgstr "" #: private/template/functions.php:142 msgid "years ago" msgstr "" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/ku_IQ/user_ldap.po b/l10n/ku_IQ/user_ldap.po index 2ca4abaa850..1158ecfddd2 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." @@ -86,43 +86,43 @@ msgstr "سهرکهوتن" msgid "Error" msgstr "ههڵه" -#: js/settings.js:777 +#: js/settings.js:837 msgid "Configuration OK" msgstr "" -#: js/settings.js:786 +#: js/settings.js:846 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:795 +#: js/settings.js:855 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:872 js/settings.js:881 msgid "Select groups" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:875 js/settings.js:884 msgid "Select object classes" msgstr "" -#: js/settings.js:818 +#: js/settings.js:878 msgid "Select attributes" msgstr "" -#: js/settings.js:845 +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:852 +#: js/settings.js:912 msgid "Connection test failed" msgstr "" -#: js/settings.js:861 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:862 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "" @@ -140,11 +140,11 @@ msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:778 lib/wizard.php:790 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:952 +#: lib/wizard.php:951 msgid "Could not find the desired feature" msgstr "" diff --git a/l10n/lb/core.po b/l10n/lb/core.po index fc3666b326b..b4188cede15 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" +"POT-Creation-Date: 2013-12-28 01:55-0500\n" +"PO-Revision-Date: 2013-12-27 13:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -150,59 +150,59 @@ msgstr "November" msgid "December" msgstr "Dezember" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Astellungen" -#: js/js.js:858 +#: js/js.js:869 msgid "seconds ago" msgstr "Sekonnen hir" -#: js/js.js:859 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n Minutt hir" msgstr[1] "%n Minutten hir" -#: js/js.js:860 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:861 +#: js/js.js:872 msgid "today" msgstr "haut" -#: js/js.js:862 +#: js/js.js:873 msgid "yesterday" msgstr "gëschter" -#: js/js.js:863 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:864 +#: js/js.js:875 msgid "last month" msgstr "leschte Mount" -#: js/js.js:865 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:866 +#: js/js.js:877 msgid "months ago" msgstr "Méint hir" -#: js/js.js:867 +#: js/js.js:878 msgid "last year" msgstr "Lescht Joer" -#: js/js.js:868 +#: js/js.js:879 msgid "years ago" msgstr "Joren hir" diff --git a/l10n/lb/files.po b/l10n/lb/files.po index fbea3217dd8..0b0406f9334 100644 --- a/l10n/lb/files.po +++ b/l10n/lb/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-11 13:31-0500\n" -"PO-Revision-Date: 2013-12-09 12:00+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "Deelen" diff --git a/l10n/lb/lib.po b/l10n/lb/lib.po index 3eba6dc0e67..022fc34107e 100644 --- a/l10n/lb/lib.po +++ b/l10n/lb/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -54,15 +54,15 @@ msgstr "Admin" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "Onbekannten Fichier Typ" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "Ongülteg d'Bild" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "Web-Servicer ënnert denger Kontroll" @@ -71,23 +71,23 @@ msgstr "Web-Servicer ënnert denger Kontroll" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -173,17 +173,17 @@ msgstr "SMS" msgid "Images" msgstr "" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -204,11 +204,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -216,10 +216,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -252,7 +252,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -332,7 +332,3 @@ msgstr "Läscht Joer" #: private/template/functions.php:142 msgid "years ago" msgstr "Joren hier" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/lb/settings.po b/l10n/lb/settings.po index b19ee92e73b..e6c9568f239 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-04 23:13+0000\n" +"POT-Creation-Date: 2013-12-28 01:55-0500\n" +"PO-Revision-Date: 2013-12-27 13:21+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -199,19 +199,19 @@ msgstr "Läschen" msgid "add group" msgstr "" -#: js/users.js:451 +#: js/users.js:454 msgid "A valid username must be provided" msgstr "" -#: js/users.js:452 js/users.js:458 js/users.js:473 +#: js/users.js:455 js/users.js:461 js/users.js:476 msgid "Error creating user" msgstr "" -#: js/users.js:457 +#: js/users.js:460 msgid "A valid password must be provided" msgstr "" -#: js/users.js:481 +#: js/users.js:484 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" diff --git a/l10n/lb/user_ldap.po b/l10n/lb/user_ldap.po index 8aac83d4acc..3f2a7d8244a 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" +"POT-Creation-Date: 2013-12-28 01:55-0500\n" +"PO-Revision-Date: 2013-12-27 13:40+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." @@ -86,43 +86,43 @@ msgstr "" msgid "Error" msgstr "Fehler" -#: js/settings.js:777 +#: js/settings.js:837 msgid "Configuration OK" msgstr "" -#: js/settings.js:786 +#: js/settings.js:846 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:795 +#: js/settings.js:855 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:872 js/settings.js:881 msgid "Select groups" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:875 js/settings.js:884 msgid "Select object classes" msgstr "" -#: js/settings.js:818 +#: js/settings.js:878 msgid "Select attributes" msgstr "" -#: js/settings.js:845 +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:852 +#: js/settings.js:912 msgid "Connection test failed" msgstr "" -#: js/settings.js:861 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:862 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "" @@ -140,11 +140,11 @@ msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:778 lib/wizard.php:790 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:952 +#: lib/wizard.php:951 msgid "Could not find the desired feature" msgstr "" diff --git a/l10n/lt_LT/core.po b/l10n/lt_LT/core.po index c77d74bc2e2..f01c67df45a 100644 --- a/l10n/lt_LT/core.po +++ b/l10n/lt_LT/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -153,63 +153,63 @@ msgstr "Lapkritis" msgid "December" msgstr "Gruodis" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Nustatymai" -#: js/js.js:858 +#: js/js.js:869 msgid "seconds ago" msgstr "prieš sekundę" -#: js/js.js:859 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] " prieš %n minutę" msgstr[1] " prieš %n minučių" msgstr[2] " prieš %n minučių" -#: js/js.js:860 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "prieš %n valandą" msgstr[1] "prieš %n valandų" msgstr[2] "prieš %n valandų" -#: js/js.js:861 +#: js/js.js:872 msgid "today" msgstr "šiandien" -#: js/js.js:862 +#: js/js.js:873 msgid "yesterday" msgstr "vakar" -#: js/js.js:863 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "prieš %n dieną" msgstr[1] "prieš %n dienas" msgstr[2] "prieš %n dienų" -#: js/js.js:864 +#: js/js.js:875 msgid "last month" msgstr "praeitą mėnesį" -#: js/js.js:865 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "prieš %n mėnesį" msgstr[1] "prieš %n mėnesius" msgstr[2] "prieš %n mėnesių" -#: js/js.js:866 +#: js/js.js:877 msgid "months ago" msgstr "prieš mėnesį" -#: js/js.js:867 +#: js/js.js:878 msgid "last year" msgstr "praeitais metais" -#: js/js.js:868 +#: js/js.js:879 msgid "years ago" msgstr "prieš metus" diff --git a/l10n/lt_LT/files.po b/l10n/lt_LT/files.po index ff8245fb084..5c4b37ac043 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-11 13:31-0500\n" -"PO-Revision-Date: 2013-12-09 12:00+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -49,12 +49,17 @@ msgstr "Pavadinimas %s jau naudojamas aplanke %s. Prašome pasirinkti kitokį pa msgid "Not a valid source" msgstr "Netinkamas šaltinis" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" msgstr "Klaida siunčiant %s į %s" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "Klaida kuriant failą" @@ -174,6 +179,10 @@ msgstr "Neįmanoma sukurti failo" msgid "Could not create folder" msgstr "Neįmanoma sukurti aplanko" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "Dalintis" diff --git a/l10n/lt_LT/lib.po b/l10n/lt_LT/lib.po index 047e337a0a4..61269023440 100644 --- a/l10n/lt_LT/lib.po +++ b/l10n/lt_LT/lib.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 11:10+0000\n" -"Last-Translator: Liudas Ališauskas <liudas.alisauskas@gmail.com>\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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" @@ -74,23 +74,23 @@ msgstr "jūsų valdomos web paslaugos" msgid "cannot open \"%s\"" msgstr "nepavyksta atverti „%s“" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "ZIP atsisiuntimo galimybė yra išjungta." -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Failai turi būti parsiunčiami vienas po kito." -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Atgal į Failus" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Pasirinkti failai per dideli archyvavimui į ZIP." -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -176,17 +176,17 @@ msgstr "Žinučių" msgid "Images" msgstr "Paveikslėliai" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s įrašykite duombazės naudotojo vardą." -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s įrašykite duombazės pavadinimą." -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s negalite naudoti taškų duombazės pavadinime" @@ -207,11 +207,11 @@ msgid "MySQL username and/or password not valid" msgstr "Neteisingas MySQL naudotojo vardas ir/arba slaptažodis" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -219,10 +219,10 @@ msgid "DB Error: \"%s\"" msgstr "DB klaida: \"%s\"" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -255,7 +255,7 @@ msgstr "Nepavyko sukurti Oracle ryšio" msgid "Oracle username and/or password not valid" msgstr "Neteisingas Oracle naudotojo vardas ir/arba slaptažodis" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Vykdyta komanda buvo: \"%s\", name: %s, password: %s" @@ -339,7 +339,3 @@ msgstr "praeitais metais" #: private/template/functions.php:142 msgid "years ago" msgstr "prieš metus" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "Iššaukė:" diff --git a/l10n/lt_LT/user_ldap.po b/l10n/lt_LT/user_ldap.po index ef29507b5b8..742bca400a0 100644 --- a/l10n/lt_LT/user_ldap.po +++ b/l10n/lt_LT/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -27,17 +27,17 @@ msgstr "Nepavyko išvalyti sąsajų." msgid "Failed to delete the server configuration" msgstr "Nepavyko pašalinti serverio konfigūracijos" -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "Konfigūracija yra tinkama bei prisijungta sėkmingai!" -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." @@ -88,43 +88,43 @@ msgstr "Sėkmingai" msgid "Error" msgstr "Klaida" -#: js/settings.js:777 +#: js/settings.js:837 msgid "Configuration OK" msgstr "" -#: js/settings.js:786 +#: js/settings.js:846 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:795 +#: js/settings.js:855 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:872 js/settings.js:881 msgid "Select groups" msgstr "Pasirinkti grupes" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:875 js/settings.js:884 msgid "Select object classes" msgstr "" -#: js/settings.js:818 +#: js/settings.js:878 msgid "Select attributes" msgstr "" -#: js/settings.js:845 +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "Ryšio patikrinimas pavyko" -#: js/settings.js:852 +#: js/settings.js:912 msgid "Connection test failed" msgstr "Ryšio patikrinimas nepavyko" -#: js/settings.js:861 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "Ar tikrai norite ištrinti dabartinę serverio konfigūraciją?" -#: js/settings.js:862 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "Patvirtinkite trynimą" @@ -144,11 +144,11 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:778 lib/wizard.php:790 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:952 +#: lib/wizard.php:951 msgid "Could not find the desired feature" msgstr "" diff --git a/l10n/lv/core.po b/l10n/lv/core.po index 9e58e494255..5e89b7c6e5b 100644 --- a/l10n/lv/core.po +++ b/l10n/lv/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -149,63 +149,63 @@ msgstr "Novembris" msgid "December" msgstr "Decembris" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Iestatījumi" -#: js/js.js:858 +#: js/js.js:869 msgid "seconds ago" msgstr "sekundes atpakaļ" -#: js/js.js:859 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "Tagad, %n minūtes" msgstr[1] "Pirms %n minūtes" msgstr[2] "Pirms %n minūtēm" -#: js/js.js:860 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Šodien, %n stundas" msgstr[1] "Pirms %n stundas" msgstr[2] "Pirms %n stundām" -#: js/js.js:861 +#: js/js.js:872 msgid "today" msgstr "šodien" -#: js/js.js:862 +#: js/js.js:873 msgid "yesterday" msgstr "vakar" -#: js/js.js:863 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "Šodien, %n dienas" msgstr[1] "Pirms %n dienas" msgstr[2] "Pirms %n dienām" -#: js/js.js:864 +#: js/js.js:875 msgid "last month" msgstr "pagājušajā mēnesī" -#: js/js.js:865 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Šomēnes, %n mēneši" msgstr[1] "Pirms %n mēneša" msgstr[2] "Pirms %n mēnešiem" -#: js/js.js:866 +#: js/js.js:877 msgid "months ago" msgstr "mēnešus atpakaļ" -#: js/js.js:867 +#: js/js.js:878 msgid "last year" msgstr "gājušajā gadā" -#: js/js.js:868 +#: js/js.js:879 msgid "years ago" msgstr "gadus atpakaļ" diff --git a/l10n/lv/files.po b/l10n/lv/files.po index 18f80357700..65bec5be945 100644 --- a/l10n/lv/files.po +++ b/l10n/lv/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-11 13:31-0500\n" -"PO-Revision-Date: 2013-12-09 12:00+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -47,12 +47,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -172,6 +177,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "Dalīties" diff --git a/l10n/lv/lib.po b/l10n/lv/lib.po index b063c00d93f..7a1a5ed242a 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -54,15 +54,15 @@ msgstr "Administratori" msgid "Failed to upgrade \"%s\"." msgstr "Kļūda atjauninot \"%s\"" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "tīmekļa servisi tavā varā" @@ -71,23 +71,23 @@ msgstr "tīmekļa servisi tavā varā" msgid "cannot open \"%s\"" msgstr "Nevar atvērt \"%s\"" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "ZIP lejupielādēšana ir izslēgta." -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Datnes var lejupielādēt tikai katru atsevišķi." -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Atpakaļ pie datnēm" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Izvēlētās datnes ir pārāk lielas, lai izveidotu zip datni." -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -173,17 +173,17 @@ msgstr "Teksts" msgid "Images" msgstr "Attēli" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s ievadiet datubāzes lietotājvārdu." -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s ievadiet datubāzes nosaukumu." -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s datubāžu nosaukumos nedrīkst izmantot punktus" @@ -204,11 +204,11 @@ msgid "MySQL username and/or password not valid" msgstr "Nav derīga MySQL parole un/vai lietotājvārds" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -216,10 +216,10 @@ msgid "DB Error: \"%s\"" msgstr "DB kļūda — “%s”" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -252,7 +252,7 @@ msgstr "Nevar izveidot savienojumu ar Oracle" msgid "Oracle username and/or password not valid" msgstr "Nav derīga Oracle parole un/vai lietotājvārds" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Vainīgā komanda bija \"%s\", vārds: %s, parole: %s" @@ -336,7 +336,3 @@ msgstr "gājušajā gadā" #: private/template/functions.php:142 msgid "years ago" msgstr "gadus atpakaļ" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "Cēlonis:" diff --git a/l10n/lv/user_ldap.po b/l10n/lv/user_ldap.po index 068177670aa..be178e2356b 100644 --- a/l10n/lv/user_ldap.po +++ b/l10n/lv/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "Neizdevās izdzēst servera konfigurāciju" -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "Konfigurācija ir derīga un varēja izveidot savienojumu!" -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "Konfigurācija ir derīga, bet sasaiste neizdevās. Lūdzu, pārbaudiet servera iestatījumus un akreditācijas datus." -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." @@ -86,43 +86,43 @@ msgstr "" msgid "Error" msgstr "Kļūda" -#: js/settings.js:777 +#: js/settings.js:837 msgid "Configuration OK" msgstr "" -#: js/settings.js:786 +#: js/settings.js:846 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:795 +#: js/settings.js:855 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:872 js/settings.js:881 msgid "Select groups" msgstr "Izvēlieties grupas" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:875 js/settings.js:884 msgid "Select object classes" msgstr "" -#: js/settings.js:818 +#: js/settings.js:878 msgid "Select attributes" msgstr "" -#: js/settings.js:845 +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "Savienojuma tests ir veiksmīgs" -#: js/settings.js:852 +#: js/settings.js:912 msgid "Connection test failed" msgstr "Savienojuma tests cieta neveiksmi" -#: js/settings.js:861 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "Vai tiešām vēlaties dzēst pašreizējo servera konfigurāciju?" -#: js/settings.js:862 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "Apstiprināt dzēšanu" @@ -142,11 +142,11 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:778 lib/wizard.php:790 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:952 +#: lib/wizard.php:951 msgid "Could not find the desired feature" msgstr "" diff --git a/l10n/mk/core.po b/l10n/mk/core.po index 92eaa75c1dc..25feb2f8a99 100644 --- a/l10n/mk/core.po +++ b/l10n/mk/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:22+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -149,59 +149,59 @@ msgstr "Ноември" msgid "December" msgstr "Декември" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Подесувања" -#: js/js.js:858 +#: js/js.js:869 msgid "seconds ago" msgstr "пред секунди" -#: js/js.js:859 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:860 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:861 +#: js/js.js:872 msgid "today" msgstr "денеска" -#: js/js.js:862 +#: js/js.js:873 msgid "yesterday" msgstr "вчера" -#: js/js.js:863 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:864 +#: js/js.js:875 msgid "last month" msgstr "минатиот месец" -#: js/js.js:865 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:866 +#: js/js.js:877 msgid "months ago" msgstr "пред месеци" -#: js/js.js:867 +#: js/js.js:878 msgid "last year" msgstr "минатата година" -#: js/js.js:868 +#: js/js.js:879 msgid "years ago" msgstr "пред години" diff --git a/l10n/mk/files.po b/l10n/mk/files.po index dada6e2a173..07ce1852680 100644 --- a/l10n/mk/files.po +++ b/l10n/mk/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-11 13:31-0500\n" -"PO-Revision-Date: 2013-12-09 12:00+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -47,12 +47,17 @@ msgstr "" msgid "Not a valid source" msgstr "Не е валиден извор" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" msgstr "Грешка додека преземам %s to %s" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "Грешка при креирање на датотека" @@ -172,6 +177,10 @@ msgstr "Не множам да креирам датотека" msgid "Could not create folder" msgstr "Не можам да креирам папка" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "Сподели" diff --git a/l10n/mk/lib.po b/l10n/mk/lib.po index 7b629110a32..45cc5c02cb5 100644 --- a/l10n/mk/lib.po +++ b/l10n/mk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -53,15 +53,15 @@ msgstr "Админ" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "Непознат тип на датотека" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "Невалидна фотографија" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "веб сервиси под Ваша контрола" @@ -70,23 +70,23 @@ msgstr "веб сервиси под Ваша контрола" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "Преземање во ZIP е исклучено" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Датотеките треба да се симнат една по една." -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Назад кон датотеки" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Избраните датотеки се преголеми за да се генерира zip." -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "Текст" msgid "Images" msgstr "Слики" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -331,7 +331,3 @@ msgstr "минатата година" #: private/template/functions.php:142 msgid "years ago" msgstr "пред години" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/mk/user_ldap.po b/l10n/mk/user_ldap.po index 893744e1b38..f7687a00d8d 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -26,17 +26,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." @@ -87,43 +87,43 @@ msgstr "" msgid "Error" msgstr "Грешка" -#: js/settings.js:777 +#: js/settings.js:837 msgid "Configuration OK" msgstr "" -#: js/settings.js:786 +#: js/settings.js:846 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:795 +#: js/settings.js:855 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:872 js/settings.js:881 msgid "Select groups" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:875 js/settings.js:884 msgid "Select object classes" msgstr "" -#: js/settings.js:818 +#: js/settings.js:878 msgid "Select attributes" msgstr "" -#: js/settings.js:845 +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "Тестот за поврзување е успешен" -#: js/settings.js:852 +#: js/settings.js:912 msgid "Connection test failed" msgstr "Тестот за поврзување не е успешен" -#: js/settings.js:861 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:862 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "Потврдете го бришењето" @@ -141,11 +141,11 @@ msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:778 lib/wizard.php:790 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:952 +#: lib/wizard.php:951 msgid "Could not find the desired feature" msgstr "" diff --git a/l10n/ml_IN/files.po b/l10n/ml_IN/files.po index a46b2d8c9a4..03a9d3ef97f 100644 --- a/l10n/ml_IN/files.po +++ b/l10n/ml_IN/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" +"POT-Creation-Date: 2013-12-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06:55+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Malayalam (India) (http://www.transifex.com/projects/p/owncloud/language/ml_IN/)\n" "MIME-Version: 1.0\n" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "" diff --git a/l10n/ml_IN/lib.po b/l10n/ml_IN/lib.po index 54ab9112f5b..a510bace28a 100644 --- a/l10n/ml_IN/lib.po +++ b/l10n/ml_IN/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Malayalam (India) (http://www.transifex.com/projects/p/owncloud/language/ml_IN/)\n" "MIME-Version: 1.0\n" @@ -53,15 +53,15 @@ msgstr "" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "" @@ -70,23 +70,23 @@ msgstr "" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "" msgid "Images" msgstr "" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -331,7 +331,3 @@ msgstr "" #: private/template/functions.php:142 msgid "years ago" msgstr "" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/ms_MY/core.po b/l10n/ms_MY/core.po index e85b66654f7..4835578aba6 100644 --- a/l10n/ms_MY/core.po +++ b/l10n/ms_MY/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -148,55 +148,55 @@ msgstr "November" msgid "December" msgstr "Disember" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Tetapan" -#: js/js.js:858 +#: js/js.js:869 msgid "seconds ago" msgstr "" -#: js/js.js:859 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:860 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:861 +#: js/js.js:872 msgid "today" msgstr "" -#: js/js.js:862 +#: js/js.js:873 msgid "yesterday" msgstr "" -#: js/js.js:863 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:864 +#: js/js.js:875 msgid "last month" msgstr "" -#: js/js.js:865 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:866 +#: js/js.js:877 msgid "months ago" msgstr "" -#: js/js.js:867 +#: js/js.js:878 msgid "last year" msgstr "" -#: js/js.js:868 +#: js/js.js:879 msgid "years ago" msgstr "" diff --git a/l10n/ms_MY/files.po b/l10n/ms_MY/files.po index 48405a6ce38..8186def0cad 100644 --- a/l10n/ms_MY/files.po +++ b/l10n/ms_MY/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-11 13:31-0500\n" -"PO-Revision-Date: 2013-12-09 12:00+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "Kongsi" diff --git a/l10n/ms_MY/lib.po b/l10n/ms_MY/lib.po index c0037524440..73ab323519c 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -53,15 +53,15 @@ msgstr "Admin" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "Perkhidmatan web di bawah kawalan anda" @@ -70,23 +70,23 @@ msgstr "Perkhidmatan web di bawah kawalan anda" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "Teks" msgid "Images" msgstr "" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -327,7 +327,3 @@ msgstr "" #: private/template/functions.php:142 msgid "years ago" msgstr "" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/ms_MY/user_ldap.po b/l10n/ms_MY/user_ldap.po index 0edd83428c2..567a9d10bb6 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." @@ -86,43 +86,43 @@ msgstr "" msgid "Error" msgstr "Ralat" -#: js/settings.js:777 +#: js/settings.js:837 msgid "Configuration OK" msgstr "" -#: js/settings.js:786 +#: js/settings.js:846 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:795 +#: js/settings.js:855 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:872 js/settings.js:881 msgid "Select groups" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:875 js/settings.js:884 msgid "Select object classes" msgstr "" -#: js/settings.js:818 +#: js/settings.js:878 msgid "Select attributes" msgstr "" -#: js/settings.js:845 +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:852 +#: js/settings.js:912 msgid "Connection test failed" msgstr "" -#: js/settings.js:861 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:862 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "" @@ -138,11 +138,11 @@ msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:778 lib/wizard.php:790 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:952 +#: lib/wizard.php:951 msgid "Could not find the desired feature" msgstr "" diff --git a/l10n/my_MM/core.po b/l10n/my_MM/core.po index 820694e805b..2b5a7020a44 100644 --- a/l10n/my_MM/core.po +++ b/l10n/my_MM/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -148,55 +148,55 @@ msgstr "နိုဝင်ဘာ" msgid "December" msgstr "ဒီဇင်ဘာ" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "" -#: js/js.js:858 +#: js/js.js:869 msgid "seconds ago" msgstr "စက္ကန့်အနည်းငယ်က" -#: js/js.js:859 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:860 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:861 +#: js/js.js:872 msgid "today" msgstr "ယနေ့" -#: js/js.js:862 +#: js/js.js:873 msgid "yesterday" msgstr "မနေ့က" -#: js/js.js:863 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:864 +#: js/js.js:875 msgid "last month" msgstr "ပြီးခဲ့သောလ" -#: js/js.js:865 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:866 +#: js/js.js:877 msgid "months ago" msgstr "" -#: js/js.js:867 +#: js/js.js:878 msgid "last year" msgstr "မနှစ်က" -#: js/js.js:868 +#: js/js.js:879 msgid "years ago" msgstr "နှစ် အရင်က" diff --git a/l10n/my_MM/files.po b/l10n/my_MM/files.po index 4d560641f13..09849cace99 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" +"POT-Creation-Date: 2013-12-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06:55+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "" diff --git a/l10n/my_MM/lib.po b/l10n/my_MM/lib.po index 6333de7caf6..4f07303819e 100644 --- a/l10n/my_MM/lib.po +++ b/l10n/my_MM/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -53,15 +53,15 @@ msgstr "အက်ဒမင်" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "သင်၏ထိန်းချုပ်မှု့အောက်တွင်ရှိသော Web services" @@ -70,23 +70,23 @@ msgstr "သင်၏ထိန်းချုပ်မှု့အောက်တ msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "ZIP ဒေါင်းလုတ်ကိုပိတ်ထားသည်" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "ဖိုင်များသည် တစ်ခုပြီး တစ်ခုဒေါင်းလုတ်ချရန်လိုအပ်သည်" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "ဖိုင်သို့ပြန်သွားမည်" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "zip ဖိုင်အဖြစ်ပြုလုပ်ရန် ရွေးချယ်ထားသောဖိုင်များသည် အရမ်းကြီးလွန်းသည်" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "စာသား" msgid "Images" msgstr "ပုံရိပ်များ" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -327,7 +327,3 @@ msgstr "မနှစ်က" #: private/template/functions.php:142 msgid "years ago" msgstr "နှစ် အရင်က" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/nb_NO/core.po b/l10n/nb_NO/core.po index 102df1e3d3b..0260c4f4c8e 100644 --- a/l10n/nb_NO/core.po +++ b/l10n/nb_NO/core.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# onionhead <brthomassen@gmail.com>, 2013 # Stein-Aksel Basma <stabasm@hotmail.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-12-22 01:55-0500\n" +"PO-Revision-Date: 2013-12-21 07:10+0000\n" +"Last-Translator: onionhead <brthomassen@gmail.com>\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" @@ -59,11 +60,11 @@ msgstr "" #: avatar/controller.php:81 msgid "Unknown filetype" -msgstr "" +msgstr "Ukjent filtype" #: avatar/controller.php:85 msgid "Invalid image" -msgstr "" +msgstr "Ugyldig bilde" #: avatar/controller.php:115 avatar/controller.php:142 msgid "No temporary profile picture available, try again" @@ -149,59 +150,59 @@ msgstr "November" msgid "December" msgstr "Desember" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Innstillinger" -#: js/js.js:858 +#: js/js.js:869 msgid "seconds ago" msgstr "sekunder siden" -#: js/js.js:859 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%n minutt siden" +msgstr[1] "%n minutter siden" -#: js/js.js:860 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%n time siden" +msgstr[1] "%n timer siden" -#: js/js.js:861 +#: js/js.js:872 msgid "today" msgstr "i dag" -#: js/js.js:862 +#: js/js.js:873 msgid "yesterday" msgstr "i går" -#: js/js.js:863 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%n dag siden" +msgstr[1] "%n dager siden" -#: js/js.js:864 +#: js/js.js:875 msgid "last month" msgstr "forrige måned" -#: js/js.js:865 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%n dag siden" +msgstr[1] "%n dager siden" -#: js/js.js:866 +#: js/js.js:877 msgid "months ago" msgstr "måneder siden" -#: js/js.js:867 +#: js/js.js:878 msgid "last year" msgstr "forrige år" -#: js/js.js:868 +#: js/js.js:879 msgid "years ago" msgstr "år siden" @@ -255,7 +256,7 @@ msgstr "Avbryt" #: js/oc-dialogs.js:386 msgid "Continue" -msgstr "" +msgstr "Fortsett" #: js/oc-dialogs.js:433 js/oc-dialogs.js:446 msgid "(all selected)" @@ -680,7 +681,7 @@ msgstr "Fullfør oppsetting" #: templates/installation.php:185 msgid "Finishing …" -msgstr "" +msgstr "Ferdigstiller ..." #: templates/layout.user.php:40 msgid "" diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po index c8b2c821949..b0f0975c6ba 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-11 13:31-0500\n" -"PO-Revision-Date: 2013-12-09 12:00+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -49,12 +49,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -174,6 +179,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "Del" diff --git a/l10n/nb_NO/lib.po b/l10n/nb_NO/lib.po index a2111d02cac..034978c5f13 100644 --- a/l10n/nb_NO/lib.po +++ b/l10n/nb_NO/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-22 01:55-0500\n" +"PO-Revision-Date: 2013-12-21 07:10+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -53,15 +53,15 @@ msgstr "Admin" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" -msgstr "" +msgstr "Ukjent filtype" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" -msgstr "" +msgstr "Ugyldig bilde" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "web tjenester du kontrollerer" @@ -70,23 +70,23 @@ msgstr "web tjenester du kontrollerer" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "ZIP-nedlasting av avslått" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Filene må lastes ned en om gangen" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Tilbake til filer" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "De valgte filene er for store til å kunne generere ZIP-fil" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "Tekst" msgid "Images" msgstr "Bilder" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -292,13 +292,13 @@ msgstr "sekunder siden" msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -msgstr[1] "" +msgstr[1] "%n minutter siden" #: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -msgstr[1] "" +msgstr[1] "%n timer siden" #: private/template/functions.php:133 msgid "today" @@ -312,7 +312,7 @@ msgstr "i går" msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" -msgstr[1] "" +msgstr[1] "%n dager siden" #: private/template/functions.php:138 msgid "last month" @@ -322,7 +322,7 @@ msgstr "forrige måned" msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -msgstr[1] "" +msgstr[1] "%n dager siden" #: private/template/functions.php:141 msgid "last year" @@ -331,7 +331,3 @@ msgstr "forrige år" #: private/template/functions.php:142 msgid "years ago" msgstr "år siden" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/nb_NO/user_ldap.po b/l10n/nb_NO/user_ldap.po index 57c886d6bc6..ca55fe72a9a 100644 --- a/l10n/nb_NO/user_ldap.po +++ b/l10n/nb_NO/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" +"POT-Creation-Date: 2013-12-22 01:55-0500\n" +"PO-Revision-Date: 2013-12-21 07:10+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "Klarte ikke å slette tjener-konfigurasjonen." -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "Konfigurasjonen er i orden og tilkoblingen skal være etablert!" -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "Konfigurasjonen er i orden, men Bind mislyktes. Vennligst sjekk tjener-konfigurasjonen og påloggingsinformasjonen." -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." @@ -86,43 +86,43 @@ msgstr "Suksess" msgid "Error" msgstr "Feil" -#: js/settings.js:777 +#: js/settings.js:837 msgid "Configuration OK" msgstr "" -#: js/settings.js:786 +#: js/settings.js:846 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:795 +#: js/settings.js:855 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:872 js/settings.js:881 msgid "Select groups" msgstr "Velg grupper" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:875 js/settings.js:884 msgid "Select object classes" msgstr "" -#: js/settings.js:818 +#: js/settings.js:878 msgid "Select attributes" msgstr "" -#: js/settings.js:845 +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "Tilkoblingstest lyktes" -#: js/settings.js:852 +#: js/settings.js:912 msgid "Connection test failed" msgstr "Tilkoblingstest mislyktes" -#: js/settings.js:861 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "Er du sikker på at du vil slette aktiv tjener-konfigurasjon?" -#: js/settings.js:862 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "Bekreft sletting" @@ -140,11 +140,11 @@ msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:778 lib/wizard.php:790 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:952 +#: lib/wizard.php:951 msgid "Could not find the desired feature" msgstr "" @@ -285,7 +285,7 @@ msgstr "Tilbake" #: templates/part.wizardcontrols.php:8 msgid "Continue" -msgstr "" +msgstr "Fortsett" #: templates/settings.php:11 msgid "" diff --git a/l10n/nds/files.po b/l10n/nds/files.po index 9c53c7ed622..0923a19e994 100644 --- a/l10n/nds/files.po +++ b/l10n/nds/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" +"POT-Creation-Date: 2013-12-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06:55+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Low German (http://www.transifex.com/projects/p/owncloud/language/nds/)\n" "MIME-Version: 1.0\n" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "" diff --git a/l10n/nds/lib.po b/l10n/nds/lib.po index 3e81e7061c9..8fe55cbf501 100644 --- a/l10n/nds/lib.po +++ b/l10n/nds/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Low German (http://www.transifex.com/projects/p/owncloud/language/nds/)\n" "MIME-Version: 1.0\n" @@ -53,15 +53,15 @@ msgstr "" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "" @@ -70,23 +70,23 @@ msgstr "" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "" msgid "Images" msgstr "" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -331,7 +331,3 @@ msgstr "" #: private/template/functions.php:142 msgid "years ago" msgstr "" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/ne/files.po b/l10n/ne/files.po index 815d48c5ba7..0d44c7750fa 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" +"POT-Creation-Date: 2013-12-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06:55+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "" diff --git a/l10n/ne/lib.po b/l10n/ne/lib.po index 99cee713a01..bc3849b95dc 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" @@ -53,15 +53,15 @@ msgstr "" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "" @@ -70,23 +70,23 @@ msgstr "" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "" msgid "Images" msgstr "" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -331,7 +331,3 @@ msgstr "" #: private/template/functions.php:142 msgid "years ago" msgstr "" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/nl/core.po b/l10n/nl/core.po index 0ebbcac08df..54f27a40f2c 100644 --- a/l10n/nl/core.po +++ b/l10n/nl/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-13 14:43-0500\n" -"PO-Revision-Date: 2013-12-12 20:30+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: André Koot <meneer@tken.net>\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -151,59 +151,59 @@ msgstr "november" msgid "December" msgstr "december" -#: js/js.js:394 +#: js/js.js:398 msgid "Settings" msgstr "Instellingen" -#: js/js.js:865 +#: js/js.js:869 msgid "seconds ago" msgstr "seconden geleden" -#: js/js.js:866 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "%n minuten geleden" -#: js/js.js:867 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "%n uur geleden" -#: js/js.js:868 +#: js/js.js:872 msgid "today" msgstr "vandaag" -#: js/js.js:869 +#: js/js.js:873 msgid "yesterday" msgstr "gisteren" -#: js/js.js:870 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "%n dagen geleden" -#: js/js.js:871 +#: js/js.js:875 msgid "last month" msgstr "vorige maand" -#: js/js.js:872 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "%n maanden geleden" -#: js/js.js:873 +#: js/js.js:877 msgid "months ago" msgstr "maanden geleden" -#: js/js.js:874 +#: js/js.js:878 msgid "last year" msgstr "vorig jaar" -#: js/js.js:875 +#: js/js.js:879 msgid "years ago" msgstr "jaar geleden" diff --git a/l10n/nl/files.po b/l10n/nl/files.po index fe1522405e4..bd5ede56598 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-11 13:31-0500\n" -"PO-Revision-Date: 2013-12-09 12:00+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-12-24 01:55-0500\n" +"PO-Revision-Date: 2013-12-23 08:30+0000\n" +"Last-Translator: André Koot <meneer@tken.net>\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -48,12 +48,17 @@ msgstr "De naam %s bestaat al in map %s. Kies een andere naam." msgid "Not a valid source" msgstr "Geen geldige bron" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "Server mag geen URS's openen, controleer de server configuratie" + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" msgstr "Fout bij downloaden %s naar %s" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "Fout bij creëren bestand" @@ -173,6 +178,10 @@ msgstr "Kon bestand niet creëren" msgid "Could not create folder" msgstr "Kon niet creëren map" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "Fout bij ophalen URL" + #: js/fileactions.js:125 msgid "Share" msgstr "Delen" diff --git a/l10n/nl/lib.po b/l10n/nl/lib.po index dfc4b57a1d4..91ff5c34878 100644 --- a/l10n/nl/lib.po +++ b/l10n/nl/lib.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-02 17:27-0500\n" -"PO-Revision-Date: 2013-11-30 19:10+0000\n" -"Last-Translator: André Koot <meneer@tken.net>\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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" @@ -73,23 +73,23 @@ msgstr "Webdiensten in eigen beheer" msgid "cannot open \"%s\"" msgstr "Kon \"%s\" niet openen" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "ZIP download is uitgeschakeld." -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Bestanden moeten één voor één worden gedownload." -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Terug naar bestanden" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "De geselecteerde bestanden zijn te groot om een zip bestand te maken." -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -175,17 +175,17 @@ msgstr "Tekst" msgid "Images" msgstr "Afbeeldingen" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s opgeven database gebruikersnaam." -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s opgeven databasenaam." -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s er mogen geen puntjes in de databasenaam voorkomen" @@ -206,11 +206,11 @@ msgid "MySQL username and/or password not valid" msgstr "MySQL gebruikersnaam en/of wachtwoord ongeldig" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -218,10 +218,10 @@ msgid "DB Error: \"%s\"" msgstr "DB Fout: \"%s\"" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -254,7 +254,7 @@ msgstr "Er kon geen verbinding met Oracle worden bereikt" msgid "Oracle username and/or password not valid" msgstr "Oracle gebruikersnaam en/of wachtwoord ongeldig" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Onjuiste commando was: \"%s\", naam: %s, wachtwoord: %s" @@ -334,7 +334,3 @@ msgstr "vorig jaar" #: private/template/functions.php:142 msgid "years ago" msgstr "jaar geleden" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "Gekomen door:" diff --git a/l10n/nl/user_ldap.po b/l10n/nl/user_ldap.po index 7125c0fceab..563da00c9a1 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -28,17 +28,17 @@ msgstr "Niet gelukt de vertalingen leeg te maken." msgid "Failed to delete the server configuration" msgstr "Verwijderen serverconfiguratie mislukt" -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "De configuratie is geldig en de verbinding is geslaagd!" -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "De configuratie is geldig, maar Bind mislukte. Controleer de serverinstellingen en inloggegevens." -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." @@ -89,43 +89,43 @@ msgstr "Succes" msgid "Error" msgstr "Fout" -#: js/settings.js:777 +#: js/settings.js:837 msgid "Configuration OK" msgstr "Configuratie OK" -#: js/settings.js:786 +#: js/settings.js:846 msgid "Configuration incorrect" msgstr "Configuratie onjuist" -#: js/settings.js:795 +#: js/settings.js:855 msgid "Configuration incomplete" msgstr "Configuratie incompleet" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:872 js/settings.js:881 msgid "Select groups" msgstr "Selecteer groepen" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:875 js/settings.js:884 msgid "Select object classes" msgstr "Selecteer objectklasse" -#: js/settings.js:818 +#: js/settings.js:878 msgid "Select attributes" msgstr "Selecteer attributen" -#: js/settings.js:845 +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "Verbindingstest geslaagd" -#: js/settings.js:852 +#: js/settings.js:912 msgid "Connection test failed" msgstr "Verbindingstest mislukt" -#: js/settings.js:861 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "Wilt u werkelijk de huidige Serverconfiguratie verwijderen?" -#: js/settings.js:862 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "Bevestig verwijderen" @@ -143,11 +143,11 @@ msgid_plural "%s users found" msgstr[0] "%s gebruiker gevonden" msgstr[1] "%s gebruikers gevonden" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:778 lib/wizard.php:790 msgid "Invalid Host" msgstr "Ongeldige server" -#: lib/wizard.php:952 +#: lib/wizard.php:951 msgid "Could not find the desired feature" msgstr "Kon de gewenste functie niet vinden" diff --git a/l10n/nn_NO/core.po b/l10n/nn_NO/core.po index b47740c6ef3..0364a320a67 100644 --- a/l10n/nn_NO/core.po +++ b/l10n/nn_NO/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -151,59 +151,59 @@ msgstr "November" msgid "December" msgstr "Desember" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Innstillingar" -#: js/js.js:858 +#: js/js.js:869 msgid "seconds ago" msgstr "sekund sidan" -#: js/js.js:859 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minutt sidan" msgstr[1] "%n minutt sidan" -#: js/js.js:860 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n time sidan" msgstr[1] "%n timar sidan" -#: js/js.js:861 +#: js/js.js:872 msgid "today" msgstr "i dag" -#: js/js.js:862 +#: js/js.js:873 msgid "yesterday" msgstr "i går" -#: js/js.js:863 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n dag sidan" msgstr[1] "%n dagar sidan" -#: js/js.js:864 +#: js/js.js:875 msgid "last month" msgstr "førre månad" -#: js/js.js:865 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n månad sidan" msgstr[1] "%n månadar sidan" -#: js/js.js:866 +#: js/js.js:877 msgid "months ago" msgstr "månadar sidan" -#: js/js.js:867 +#: js/js.js:878 msgid "last year" msgstr "i fjor" -#: js/js.js:868 +#: js/js.js:879 msgid "years ago" msgstr "år sidan" diff --git a/l10n/nn_NO/files.po b/l10n/nn_NO/files.po index 2cad0f20225..08a93b7fab3 100644 --- a/l10n/nn_NO/files.po +++ b/l10n/nn_NO/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-11 13:31-0500\n" -"PO-Revision-Date: 2013-12-09 12:00+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -49,12 +49,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -174,6 +179,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "Del" diff --git a/l10n/nn_NO/lib.po b/l10n/nn_NO/lib.po index 76ab32a7f89..ec60d2c1735 100644 --- a/l10n/nn_NO/lib.po +++ b/l10n/nn_NO/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -55,15 +55,15 @@ msgstr "Administrer" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "Ukjend filtype" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "Ugyldig bilete" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "Vev tjenester under din kontroll" @@ -72,23 +72,23 @@ msgstr "Vev tjenester under din kontroll" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -174,17 +174,17 @@ msgstr "Tekst" msgid "Images" msgstr "" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -205,11 +205,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -217,10 +217,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -253,7 +253,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -333,7 +333,3 @@ msgstr "i fjor" #: private/template/functions.php:142 msgid "years ago" msgstr "år sidan" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/nn_NO/user_ldap.po b/l10n/nn_NO/user_ldap.po index 0432ab19151..354e05bee4d 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." @@ -86,43 +86,43 @@ msgstr "" msgid "Error" msgstr "Feil" -#: js/settings.js:777 +#: js/settings.js:837 msgid "Configuration OK" msgstr "" -#: js/settings.js:786 +#: js/settings.js:846 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:795 +#: js/settings.js:855 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:872 js/settings.js:881 msgid "Select groups" msgstr "Vel grupper" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:875 js/settings.js:884 msgid "Select object classes" msgstr "" -#: js/settings.js:818 +#: js/settings.js:878 msgid "Select attributes" msgstr "" -#: js/settings.js:845 +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:852 +#: js/settings.js:912 msgid "Connection test failed" msgstr "" -#: js/settings.js:861 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:862 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "" @@ -140,11 +140,11 @@ msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:778 lib/wizard.php:790 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:952 +#: lib/wizard.php:951 msgid "Could not find the desired feature" msgstr "" diff --git a/l10n/nqo/files.po b/l10n/nqo/files.po index c27a11a8f8c..779270d0848 100644 --- a/l10n/nqo/files.po +++ b/l10n/nqo/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" +"POT-Creation-Date: 2013-12-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06:55+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: N'ko (http://www.transifex.com/projects/p/owncloud/language/nqo/)\n" "MIME-Version: 1.0\n" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "" diff --git a/l10n/nqo/lib.po b/l10n/nqo/lib.po index b01497deeef..2ee237736f6 100644 --- a/l10n/nqo/lib.po +++ b/l10n/nqo/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: N'ko (http://www.transifex.com/projects/p/owncloud/language/nqo/)\n" "MIME-Version: 1.0\n" @@ -53,15 +53,15 @@ msgstr "" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "" @@ -70,23 +70,23 @@ msgstr "" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "" msgid "Images" msgstr "" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -327,7 +327,3 @@ msgstr "" #: private/template/functions.php:142 msgid "years ago" msgstr "" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/oc/core.po b/l10n/oc/core.po index f570ee61e97..7ace16d5737 100644 --- a/l10n/oc/core.po +++ b/l10n/oc/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -148,59 +148,59 @@ msgstr "Novembre" msgid "December" msgstr "Decembre" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Configuracion" -#: js/js.js:858 +#: js/js.js:869 msgid "seconds ago" msgstr "segonda a" -#: js/js.js:859 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:860 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:861 +#: js/js.js:872 msgid "today" msgstr "uèi" -#: js/js.js:862 +#: js/js.js:873 msgid "yesterday" msgstr "ièr" -#: js/js.js:863 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:864 +#: js/js.js:875 msgid "last month" msgstr "mes passat" -#: js/js.js:865 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:866 +#: js/js.js:877 msgid "months ago" msgstr "meses a" -#: js/js.js:867 +#: js/js.js:878 msgid "last year" msgstr "an passat" -#: js/js.js:868 +#: js/js.js:879 msgid "years ago" msgstr "ans a" diff --git a/l10n/oc/files.po b/l10n/oc/files.po index cd522aed1da..2fd5757cfc4 100644 --- a/l10n/oc/files.po +++ b/l10n/oc/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-11 13:31-0500\n" -"PO-Revision-Date: 2013-12-09 12:00+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "Parteja" diff --git a/l10n/oc/lib.po b/l10n/oc/lib.po index e79aa765465..3fa8719bf94 100644 --- a/l10n/oc/lib.po +++ b/l10n/oc/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -53,15 +53,15 @@ msgstr "Admin" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "Services web jos ton contraròtle" @@ -70,23 +70,23 @@ msgstr "Services web jos ton contraròtle" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "Avalcargar los ZIP es inactiu." -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Los fichièrs devan èsser avalcargats un per un." -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Torna cap als fichièrs" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "" msgid "Images" msgstr "" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -331,7 +331,3 @@ msgstr "an passat" #: private/template/functions.php:142 msgid "years ago" msgstr "ans a" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/oc/user_ldap.po b/l10n/oc/user_ldap.po index 5794de76bc5..58d4c7ffba4 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." @@ -86,43 +86,43 @@ msgstr "" msgid "Error" msgstr "Error" -#: js/settings.js:777 +#: js/settings.js:837 msgid "Configuration OK" msgstr "" -#: js/settings.js:786 +#: js/settings.js:846 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:795 +#: js/settings.js:855 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:872 js/settings.js:881 msgid "Select groups" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:875 js/settings.js:884 msgid "Select object classes" msgstr "" -#: js/settings.js:818 +#: js/settings.js:878 msgid "Select attributes" msgstr "" -#: js/settings.js:845 +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:852 +#: js/settings.js:912 msgid "Connection test failed" msgstr "" -#: js/settings.js:861 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:862 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "" @@ -140,11 +140,11 @@ msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:778 lib/wizard.php:790 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:952 +#: lib/wizard.php:951 msgid "Could not find the desired feature" msgstr "" diff --git a/l10n/pa/core.po b/l10n/pa/core.po index 1bdc9730e2c..d84cad3d41f 100644 --- a/l10n/pa/core.po +++ b/l10n/pa/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/owncloud/language/pa/)\n" "MIME-Version: 1.0\n" @@ -149,59 +149,59 @@ msgstr "ਨਵੰਬ" msgid "December" msgstr "ਦਸੰਬਰ" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "ਸੈਟਿੰਗ" -#: js/js.js:858 +#: js/js.js:869 msgid "seconds ago" msgstr "ਸਕਿੰਟ ਪਹਿਲਾਂ" -#: js/js.js:859 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:860 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:861 +#: js/js.js:872 msgid "today" msgstr "ਅੱਜ" -#: js/js.js:862 +#: js/js.js:873 msgid "yesterday" msgstr "ਕੱਲ੍ਹ" -#: js/js.js:863 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:864 +#: js/js.js:875 msgid "last month" msgstr "ਪਿਛਲੇ ਮਹੀਨੇ" -#: js/js.js:865 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:866 +#: js/js.js:877 msgid "months ago" msgstr "ਮਹੀਨੇ ਪਹਿਲਾਂ" -#: js/js.js:867 +#: js/js.js:878 msgid "last year" msgstr "ਪਿਛਲੇ ਸਾਲ" -#: js/js.js:868 +#: js/js.js:879 msgid "years ago" msgstr "ਸਾਲਾਂ ਪਹਿਲਾਂ" diff --git a/l10n/pa/files.po b/l10n/pa/files.po index 3a635819614..5c76d7fda4b 100644 --- a/l10n/pa/files.po +++ b/l10n/pa/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" +"POT-Creation-Date: 2013-12-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06:55+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/owncloud/language/pa/)\n" "MIME-Version: 1.0\n" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "ਸਾਂਝਾ ਕਰੋ" diff --git a/l10n/pa/lib.po b/l10n/pa/lib.po index bd575b7f41b..a5ae066958d 100644 --- a/l10n/pa/lib.po +++ b/l10n/pa/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/owncloud/language/pa/)\n" "MIME-Version: 1.0\n" @@ -53,15 +53,15 @@ msgstr "" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "" @@ -70,23 +70,23 @@ msgstr "" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "" msgid "Images" msgstr "" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -331,7 +331,3 @@ msgstr "ਪਿਛਲੇ ਸਾਲ" #: private/template/functions.php:142 msgid "years ago" msgstr "ਸਾਲਾਂ ਪਹਿਲਾਂ" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/pl/core.po b/l10n/pl/core.po index 9a6174900d5..3bc8355954d 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-13 14:43-0500\n" -"PO-Revision-Date: 2013-12-13 14:20+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: bobie <maciej.przybecki@gmail.com>\n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -151,63 +151,63 @@ msgstr "Listopad" msgid "December" msgstr "Grudzień" -#: js/js.js:394 +#: js/js.js:398 msgid "Settings" msgstr "Ustawienia" -#: js/js.js:865 +#: js/js.js:869 msgid "seconds ago" msgstr "sekund temu" -#: js/js.js:866 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minute temu" msgstr[1] "%n minut temu" msgstr[2] "%n minut temu" -#: js/js.js:867 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n godzine temu" msgstr[1] "%n godzin temu" msgstr[2] "%n godzin temu" -#: js/js.js:868 +#: js/js.js:872 msgid "today" msgstr "dziś" -#: js/js.js:869 +#: js/js.js:873 msgid "yesterday" msgstr "wczoraj" -#: js/js.js:870 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n dzień temu" msgstr[1] "%n dni temu" msgstr[2] "%n dni temu" -#: js/js.js:871 +#: js/js.js:875 msgid "last month" msgstr "w zeszłym miesiącu" -#: js/js.js:872 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n miesiąc temu" msgstr[1] "%n miesięcy temu" msgstr[2] "%n miesięcy temu" -#: js/js.js:873 +#: js/js.js:877 msgid "months ago" msgstr "miesięcy temu" -#: js/js.js:874 +#: js/js.js:878 msgid "last year" msgstr "w zeszłym roku" -#: js/js.js:875 +#: js/js.js:879 msgid "years ago" msgstr "lat temu" diff --git a/l10n/pl/files.po b/l10n/pl/files.po index dae21380ca4..c68288c62b9 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/files.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-13 14:43-0500\n" -"PO-Revision-Date: 2013-12-13 14:46+0000\n" -"Last-Translator: bobie <maciej.przybecki@gmail.com>\n" +"POT-Creation-Date: 2013-12-21 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 10:30+0000\n" +"Last-Translator: Cyryl Sochacki <cyrylsochacki@gmail.com>\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" @@ -52,12 +52,17 @@ msgstr "Nazwa %s jest już używana w folderze %s. Proszę wybrać inną nazwę. msgid "Not a valid source" msgstr "Niepoprawne źródło" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "Serwer nie mógł otworzyć adresów URL, należy sprawdzić konfigurację serwera" + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" msgstr "Błąd podczas pobierania %s do %S" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "Błąd przy tworzeniu pliku" @@ -177,6 +182,10 @@ msgstr "Nie można utworzyć pliku" msgid "Could not create folder" msgstr "Nie można utworzyć folderu" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "Błąd przy pobieraniu adresu URL" + #: js/fileactions.js:125 msgid "Share" msgstr "Udostępnij" diff --git a/l10n/pl/lib.po b/l10n/pl/lib.po index 8d3e29a72ba..2f3c4cb6cba 100644 --- a/l10n/pl/lib.po +++ b/l10n/pl/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-13 14:43-0500\n" -"PO-Revision-Date: 2013-12-13 15:00+0000\n" -"Last-Translator: bobie <maciej.przybecki@gmail.com>\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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" @@ -337,7 +337,3 @@ msgstr "w zeszłym roku" #: private/template/functions.php:142 msgid "years ago" msgstr "lat temu" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "Spowodowane przez:" diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index 65c564afe79..e2ec0caf254 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-04 23:13+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-12-21 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 10:40+0000\n" +"Last-Translator: Cyryl Sochacki <cyrylsochacki@gmail.com>\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" @@ -200,19 +200,19 @@ msgstr "Usuń" msgid "add group" msgstr "dodaj grupę" -#: js/users.js:451 +#: js/users.js:454 msgid "A valid username must be provided" msgstr "Należy podać prawidłową nazwę użytkownika" -#: js/users.js:452 js/users.js:458 js/users.js:473 +#: js/users.js:455 js/users.js:461 js/users.js:476 msgid "Error creating user" msgstr "Błąd podczas tworzenia użytkownika" -#: js/users.js:457 +#: js/users.js:460 msgid "A valid password must be provided" msgstr "Należy podać prawidłowe hasło" -#: js/users.js:481 +#: js/users.js:484 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Ostrzeżenie: Katalog domowy dla użytkownika \"{user}\" już istnieje" @@ -287,14 +287,14 @@ msgstr "Brak modułu PHP „fileinfo”. Zalecamy włączenie tego modułu, aby #: templates/admin.php:79 msgid "Your PHP version is outdated" -msgstr "" +msgstr "Twoja wersja PHP jest za stara" #: templates/admin.php:82 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." -msgstr "" +msgstr "Twoja wersja PHP jest za stara. Rekomendujemy przynajmniej wersje 5.3.8. Jeśli masz starsza wersję ownCloud może nie działać poprawnie." #: templates/admin.php:93 msgid "Locale not working" @@ -302,7 +302,7 @@ msgstr "Lokalizacja nie działa" #: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." -msgstr "" +msgstr "Ustawienia regionalne systemu nie można ustawić na jeden, który obsługuje UTF-8." #: templates/admin.php:102 msgid "" diff --git a/l10n/pl/user_ldap.po b/l10n/pl/user_ldap.po index d40973d81a5..f625cf545fc 100644 --- a/l10n/pl/user_ldap.po +++ b/l10n/pl/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -27,17 +27,17 @@ msgstr "Nie udało się wyczyścić mapowania." msgid "Failed to delete the server configuration" msgstr "Nie można usunąć konfiguracji serwera" -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "Konfiguracja jest prawidłowa i można ustanowić połączenie!" -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "Konfiguracja jest prawidłowa, ale Bind nie. Sprawdź ustawienia serwera i poświadczenia." -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." @@ -88,43 +88,43 @@ msgstr "Sukces" msgid "Error" msgstr "Błąd" -#: js/settings.js:777 +#: js/settings.js:837 msgid "Configuration OK" msgstr "" -#: js/settings.js:786 +#: js/settings.js:846 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:795 +#: js/settings.js:855 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:872 js/settings.js:881 msgid "Select groups" msgstr "Wybierz grupy" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:875 js/settings.js:884 msgid "Select object classes" msgstr "" -#: js/settings.js:818 +#: js/settings.js:878 msgid "Select attributes" msgstr "" -#: js/settings.js:845 +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "Test połączenia udany" -#: js/settings.js:852 +#: js/settings.js:912 msgid "Connection test failed" msgstr "Test połączenia nie udany" -#: js/settings.js:861 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "Czy chcesz usunąć bieżącą konfigurację serwera?" -#: js/settings.js:862 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "Potwierdź usunięcie" @@ -144,11 +144,11 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:778 lib/wizard.php:790 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:952 +#: lib/wizard.php:951 msgid "Could not find the desired feature" msgstr "" diff --git a/l10n/pt_BR/core.po b/l10n/pt_BR/core.po index 8905788359e..368acc1e41e 100644 --- a/l10n/pt_BR/core.po +++ b/l10n/pt_BR/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-09 06:39-0500\n" -"PO-Revision-Date: 2013-12-08 21:30+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: Flávio Veras <flaviove@gmail.com>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -150,59 +150,59 @@ msgstr "novembro" msgid "December" msgstr "dezembro" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Ajustes" -#: js/js.js:858 +#: js/js.js:869 msgid "seconds ago" msgstr "segundos atrás" -#: js/js.js:859 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] " ha %n minuto" msgstr[1] "ha %n minutos" -#: js/js.js:860 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "ha %n hora" msgstr[1] "ha %n horas" -#: js/js.js:861 +#: js/js.js:872 msgid "today" msgstr "hoje" -#: js/js.js:862 +#: js/js.js:873 msgid "yesterday" msgstr "ontem" -#: js/js.js:863 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "ha %n dia" msgstr[1] "ha %n dias" -#: js/js.js:864 +#: js/js.js:875 msgid "last month" msgstr "último mês" -#: js/js.js:865 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "ha %n mês" msgstr[1] "ha %n meses" -#: js/js.js:866 +#: js/js.js:877 msgid "months ago" msgstr "meses atrás" -#: js/js.js:867 +#: js/js.js:878 msgid "last year" msgstr "último ano" -#: js/js.js:868 +#: js/js.js:879 msgid "years ago" msgstr "anos atrás" diff --git a/l10n/pt_BR/files.po b/l10n/pt_BR/files.po index 3fdeffefe72..ede91a81e91 100644 --- a/l10n/pt_BR/files.po +++ b/l10n/pt_BR/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-11 13:31-0500\n" -"PO-Revision-Date: 2013-12-09 12:00+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" +"Last-Translator: Flávio Veras <flaviove@gmail.com>\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" @@ -49,12 +49,17 @@ msgstr "O nome %s já é usado na pasta %s. Por favor, escolha um nome diferente msgid "Not a valid source" msgstr "Não é uma fonte válida" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "Não é permitido ao servidor abrir URLs, por favor verificar a configuração do servidor." + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" msgstr "Erro ao baixar %s para %s" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "Erro ao criar o arquivo" @@ -174,6 +179,10 @@ msgstr "Não foi possível criar o arquivo" msgid "Could not create folder" msgstr "Não foi possível criar a pasta" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "Erro ao buscar URL" + #: js/fileactions.js:125 msgid "Share" msgstr "Compartilhar" diff --git a/l10n/pt_BR/lib.po b/l10n/pt_BR/lib.po index 5d99ecda188..b6aa06fddba 100644 --- a/l10n/pt_BR/lib.po +++ b/l10n/pt_BR/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 21:06-0500\n" -"PO-Revision-Date: 2013-11-21 15:40+0000\n" -"Last-Translator: Flávio Veras <flaviove@gmail.com>\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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" @@ -54,15 +54,15 @@ msgstr "Admin" msgid "Failed to upgrade \"%s\"." msgstr "Falha na atualização de \"%s\"." -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "Tipo de arquivo desconhecido" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "Imagem inválida" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "serviços web sob seu controle" @@ -71,23 +71,23 @@ msgstr "serviços web sob seu controle" msgid "cannot open \"%s\"" msgstr "não pode abrir \"%s\"" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "Download ZIP está desligado." -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Arquivos precisam ser baixados um de cada vez." -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Voltar para Arquivos" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Arquivos selecionados são muito grandes para gerar arquivo zip." -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -173,17 +173,17 @@ msgstr "Texto" msgid "Images" msgstr "Imagens" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s insira o nome de usuário do banco de dados." -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s insira o nome do banco de dados." -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s você não pode usar pontos no nome do banco de dados" @@ -204,11 +204,11 @@ msgid "MySQL username and/or password not valid" msgstr "Nome de usuário e/ou senha MySQL inválido(s)" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -216,10 +216,10 @@ msgid "DB Error: \"%s\"" msgstr "Erro no BD: \"%s\"" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -252,7 +252,7 @@ msgstr "Conexão Oracle não pode ser estabelecida" msgid "Oracle username and/or password not valid" msgstr "Nome de usuário e/ou senha Oracle inválido(s)" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Comando ofensivo era: \"%s\", nome: %s, senha: %s" @@ -332,7 +332,3 @@ msgstr "último ano" #: private/template/functions.php:142 msgid "years ago" msgstr "anos atrás" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "Causados por:" diff --git a/l10n/pt_BR/user_ldap.po b/l10n/pt_BR/user_ldap.po index 2ba99404f02..6fd04f07493 100644 --- a/l10n/pt_BR/user_ldap.po +++ b/l10n/pt_BR/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -27,17 +27,17 @@ msgstr "Falha ao limpar os mapeamentos." msgid "Failed to delete the server configuration" msgstr "Falha ao deletar a configuração do servidor" -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "A configuração é válida e a conexão foi estabelecida!" -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "A configuração é válida, mas o Bind falhou. Confira as configurações do servidor e as credenciais." -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." @@ -88,43 +88,43 @@ msgstr "Sucesso" msgid "Error" msgstr "Erro" -#: js/settings.js:777 +#: js/settings.js:837 msgid "Configuration OK" msgstr "Configuração OK" -#: js/settings.js:786 +#: js/settings.js:846 msgid "Configuration incorrect" msgstr "Configuração incorreta" -#: js/settings.js:795 +#: js/settings.js:855 msgid "Configuration incomplete" msgstr "Configuração incompleta" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:872 js/settings.js:881 msgid "Select groups" msgstr "Selecionar grupos" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:875 js/settings.js:884 msgid "Select object classes" msgstr "Selecione classes de objetos" -#: js/settings.js:818 +#: js/settings.js:878 msgid "Select attributes" msgstr "Selecione os atributos" -#: js/settings.js:845 +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "Teste de conexão bem sucedida" -#: js/settings.js:852 +#: js/settings.js:912 msgid "Connection test failed" msgstr "Teste de conexão falhou" -#: js/settings.js:861 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "Você quer realmente deletar as atuais Configurações de Servidor?" -#: js/settings.js:862 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "Confirmar Exclusão" @@ -142,11 +142,11 @@ msgid_plural "%s users found" msgstr[0] "usuário %s encontrado" msgstr[1] "usuários %s encontrados" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:778 lib/wizard.php:790 msgid "Invalid Host" msgstr "Host inválido" -#: lib/wizard.php:952 +#: lib/wizard.php:951 msgid "Could not find the desired feature" msgstr "Não foi possível encontrar a função desejada" diff --git a/l10n/pt_PT/core.po b/l10n/pt_PT/core.po index 435a5646c3e..cc4b1340ad3 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/core.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-13 14:43-0500\n" -"PO-Revision-Date: 2013-12-12 15:20+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: Helder Meneses <helder.meneses@gmail.com>\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -154,59 +154,59 @@ msgstr "Novembro" msgid "December" msgstr "Dezembro" -#: js/js.js:394 +#: js/js.js:398 msgid "Settings" msgstr "Configurações" -#: js/js.js:865 +#: js/js.js:869 msgid "seconds ago" msgstr "Minutos atrás" -#: js/js.js:866 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minuto atrás" msgstr[1] "%n minutos atrás" -#: js/js.js:867 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n hora atrás" msgstr[1] "%n horas atrás" -#: js/js.js:868 +#: js/js.js:872 msgid "today" msgstr "hoje" -#: js/js.js:869 +#: js/js.js:873 msgid "yesterday" msgstr "ontem" -#: js/js.js:870 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n dia atrás" msgstr[1] "%n dias atrás" -#: js/js.js:871 +#: js/js.js:875 msgid "last month" msgstr "ultímo mês" -#: js/js.js:872 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n mês atrás" msgstr[1] "%n meses atrás" -#: js/js.js:873 +#: js/js.js:877 msgid "months ago" msgstr "meses atrás" -#: js/js.js:874 +#: js/js.js:878 msgid "last year" msgstr "ano passado" -#: js/js.js:875 +#: js/js.js:879 msgid "years ago" msgstr "anos atrás" diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index 5473adbf2d8..97c3bb28e4c 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-11 13:31-0500\n" -"PO-Revision-Date: 2013-12-09 12:00+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -49,12 +49,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -174,6 +179,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "Partilhar" diff --git a/l10n/pt_PT/lib.po b/l10n/pt_PT/lib.po index 352060b193d..aa1267bce67 100644 --- a/l10n/pt_PT/lib.po +++ b/l10n/pt_PT/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-03 12:00+0000\n" -"Last-Translator: PapiMigas Migas <papimigas@gmail.com>\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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" @@ -72,23 +72,23 @@ msgstr "serviços web sob o seu controlo" msgid "cannot open \"%s\"" msgstr "Não foi possível abrir \"%s\"" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "Descarregamento em ZIP está desligado." -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Os ficheiros precisam de ser descarregados um por um." -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Voltar a Ficheiros" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Os ficheiros seleccionados são grandes demais para gerar um ficheiro zip." -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -333,7 +333,3 @@ msgstr "ano passado" #: private/template/functions.php:142 msgid "years ago" msgstr "anos atrás" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "Causado por:" diff --git a/l10n/pt_PT/user_ldap.po b/l10n/pt_PT/user_ldap.po index e8e618f1253..048fb549485 100644 --- a/l10n/pt_PT/user_ldap.po +++ b/l10n/pt_PT/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -28,17 +28,17 @@ msgstr "Falhou a limpar os mapas" msgid "Failed to delete the server configuration" msgstr "Erro ao eliminar as configurações do servidor" -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "A configuração está correcta e foi possível estabelecer a ligação!" -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "A configuração está correcta, mas não foi possível estabelecer o \"laço\", por favor, verifique as configurações do servidor e as credenciais." -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." @@ -89,43 +89,43 @@ msgstr "Sucesso" msgid "Error" msgstr "Erro" -#: js/settings.js:777 +#: js/settings.js:837 msgid "Configuration OK" msgstr "" -#: js/settings.js:786 +#: js/settings.js:846 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:795 +#: js/settings.js:855 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:872 js/settings.js:881 msgid "Select groups" msgstr "Seleccionar grupos" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:875 js/settings.js:884 msgid "Select object classes" msgstr "" -#: js/settings.js:818 +#: js/settings.js:878 msgid "Select attributes" msgstr "" -#: js/settings.js:845 +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "Teste de conecção passado com sucesso." -#: js/settings.js:852 +#: js/settings.js:912 msgid "Connection test failed" msgstr "Erro no teste de conecção." -#: js/settings.js:861 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "Deseja realmente apagar as configurações de servidor actuais?" -#: js/settings.js:862 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "Confirmar a operação de apagar" @@ -143,11 +143,11 @@ msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:778 lib/wizard.php:790 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:952 +#: lib/wizard.php:951 msgid "Could not find the desired feature" msgstr "" diff --git a/l10n/ro/core.po b/l10n/ro/core.po index 0ccfe00fd9b..f2ee984065b 100644 --- a/l10n/ro/core.po +++ b/l10n/ro/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -152,63 +152,63 @@ msgstr "Noiembrie" msgid "December" msgstr "Decembrie" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Setări" -#: js/js.js:858 +#: js/js.js:869 msgid "seconds ago" msgstr "secunde în urmă" -#: js/js.js:859 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "acum %n minut" msgstr[1] "acum %n minute" msgstr[2] "acum %n minute" -#: js/js.js:860 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "acum %n oră" msgstr[1] "acum %n ore" msgstr[2] "acum %n ore" -#: js/js.js:861 +#: js/js.js:872 msgid "today" msgstr "astăzi" -#: js/js.js:862 +#: js/js.js:873 msgid "yesterday" msgstr "ieri" -#: js/js.js:863 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "acum %n zi" msgstr[1] "acum %n zile" msgstr[2] "acum %n zile" -#: js/js.js:864 +#: js/js.js:875 msgid "last month" msgstr "ultima lună" -#: js/js.js:865 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:866 +#: js/js.js:877 msgid "months ago" msgstr "luni în urmă" -#: js/js.js:867 +#: js/js.js:878 msgid "last year" msgstr "ultimul an" -#: js/js.js:868 +#: js/js.js:879 msgid "years ago" msgstr "ani în urmă" diff --git a/l10n/ro/files.po b/l10n/ro/files.po index 1a8c5029074..7d9acd7661b 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-11 13:31-0500\n" -"PO-Revision-Date: 2013-12-09 12:00+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -51,12 +51,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -176,6 +181,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "a imparti" diff --git a/l10n/ro/lib.po b/l10n/ro/lib.po index e0141290424..38e5a853139 100644 --- a/l10n/ro/lib.po +++ b/l10n/ro/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -54,15 +54,15 @@ msgstr "Admin" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "Tip fișier necunoscut" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "Imagine invalidă" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "servicii web controlate de tine" @@ -71,23 +71,23 @@ msgstr "servicii web controlate de tine" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "Descărcarea ZIP este dezactivată." -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Fișierele trebuie descărcate unul câte unul." -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Înapoi la fișiere" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Fișierele selectate sunt prea mari pentru a genera un fișier zip." -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -173,17 +173,17 @@ msgstr "Text" msgid "Images" msgstr "Imagini" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -204,11 +204,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -216,10 +216,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -252,7 +252,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -336,7 +336,3 @@ msgstr "ultimul an" #: private/template/functions.php:142 msgid "years ago" msgstr "ani în urmă" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/ro/user_ldap.po b/l10n/ro/user_ldap.po index d69034aaf10..9edb1afcd33 100644 --- a/l10n/ro/user_ldap.po +++ b/l10n/ro/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." @@ -86,43 +86,43 @@ msgstr "Succes" msgid "Error" msgstr "Eroare" -#: js/settings.js:777 +#: js/settings.js:837 msgid "Configuration OK" msgstr "" -#: js/settings.js:786 +#: js/settings.js:846 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:795 +#: js/settings.js:855 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:872 js/settings.js:881 msgid "Select groups" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:875 js/settings.js:884 msgid "Select object classes" msgstr "" -#: js/settings.js:818 +#: js/settings.js:878 msgid "Select attributes" msgstr "" -#: js/settings.js:845 +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:852 +#: js/settings.js:912 msgid "Connection test failed" msgstr "" -#: js/settings.js:861 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:862 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "" @@ -142,11 +142,11 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:778 lib/wizard.php:790 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:952 +#: lib/wizard.php:951 msgid "Could not find the desired feature" msgstr "" diff --git a/l10n/ru/core.po b/l10n/ru/core.po index dd79ac7ff2a..e1f8d178420 100644 --- a/l10n/ru/core.po +++ b/l10n/ru/core.po @@ -7,6 +7,7 @@ # alfsoft <alfsoft@gmail.com>, 2013 # lord93 <lordakryl@gmail.com>, 2013 # foool <andrglad@mail.ru>, 2013 +# Evgeniy Spitsyn <evgeniy@spitsyn.net>, 2013 # jekader <jekader@gmail.com>, 2013 # Mescalinich <insider.junk@gmail.com>, 2013 # stushev <s-tushev@ya.ru>, 2013 @@ -22,9 +23,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-12-24 01:55-0500\n" +"PO-Revision-Date: 2013-12-22 17:10+0000\n" +"Last-Translator: Evgeniy Spitsyn <evgeniy@spitsyn.net>\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" @@ -163,63 +164,63 @@ msgstr "Ноябрь" msgid "December" msgstr "Декабрь" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Конфигурация" -#: js/js.js:858 +#: js/js.js:869 msgid "seconds ago" msgstr "несколько секунд назад" -#: js/js.js:859 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n минуту назад" msgstr[1] "%n минуты назад" msgstr[2] "%n минут назад" -#: js/js.js:860 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n час назад" msgstr[1] "%n часа назад" msgstr[2] "%n часов назад" -#: js/js.js:861 +#: js/js.js:872 msgid "today" msgstr "сегодня" -#: js/js.js:862 +#: js/js.js:873 msgid "yesterday" msgstr "вчера" -#: js/js.js:863 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n день назад" msgstr[1] "%n дня назад" msgstr[2] "%n дней назад" -#: js/js.js:864 +#: js/js.js:875 msgid "last month" msgstr "в прошлом месяце" -#: js/js.js:865 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n месяц назад" msgstr[1] "%n месяца назад" msgstr[2] "%n месяцев назад" -#: js/js.js:866 +#: js/js.js:877 msgid "months ago" msgstr "несколько месяцев назад" -#: js/js.js:867 +#: js/js.js:878 msgid "last year" msgstr "в прошлом году" -#: js/js.js:868 +#: js/js.js:879 msgid "years ago" msgstr "несколько лет назад" @@ -706,7 +707,7 @@ msgid "" "This application requires JavaScript to be enabled for correct operation. " "Please <a href=\"http://enable-javascript.com/\" target=\"_blank\">enable " "JavaScript</a> and re-load this interface." -msgstr "" +msgstr "Это приложение требует включённый JavaScript для корректной работы. Пожалуйста, <a href=\"http://enable-javascript.com/\" target=\"_blank\">включите JavaScript</a> и перезагрузите интерфейс." #: templates/layout.user.php:44 #, php-format diff --git a/l10n/ru/files.po b/l10n/ru/files.po index 0d63b564795..71eb028f582 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -4,6 +4,7 @@ # # Translators: # lord93 <lordakryl@gmail.com>, 2013 +# Evgeniy Spitsyn <evgeniy@spitsyn.net>, 2013 # jekader <jekader@gmail.com>, 2013 # eurekafag <rkfg@rkfg.me>, 2013 # Victor Bravo <>, 2013 @@ -16,9 +17,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-11 13:31-0500\n" -"PO-Revision-Date: 2013-12-09 12:00+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-12-24 01:55-0500\n" +"PO-Revision-Date: 2013-12-22 17:50+0000\n" +"Last-Translator: Evgeniy Spitsyn <evgeniy@spitsyn.net>\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" @@ -55,12 +56,17 @@ msgstr "Имя %s уже используется в папке %s. Пожалу msgid "Not a valid source" msgstr "Неправильный источник" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "Сервер не позволяет открывать URL-адреса, пожалуйста, проверьте настройки сервера" + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" msgstr "Ошибка при загрузке %s в %s" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "Ошибка при создании файла" @@ -180,6 +186,10 @@ msgstr "Не удалось создать файл" msgid "Could not create folder" msgstr "Не удалось создать папку" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "Ошибка получения URL" + #: js/fileactions.js:125 msgid "Share" msgstr "Открыть доступ" diff --git a/l10n/ru/files_external.po b/l10n/ru/files_external.po index 438e60725e0..24a62cae43d 100644 --- a/l10n/ru/files_external.po +++ b/l10n/ru/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" +"POT-Creation-Date: 2013-12-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-18 11:40+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -37,20 +37,20 @@ msgstr "Пожалуйста, предоставьте действующий к msgid "Error configuring Google Drive storage" msgstr "Ошибка при настройке хранилища Google Drive" -#: lib/config.php:461 +#: lib/config.php:467 msgid "" "<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "<b>Внимание:</b> \"smbclient\" не установлен. Подключение по CIFS/SMB невозможно. Пожалуйста, обратитесь к системному администратору, чтобы установить его." -#: lib/config.php:465 +#: lib/config.php:471 msgid "" "<b>Warning:</b> 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 "<b>Внимание:</b> Поддержка FTP не включена в PHP. Подключение по FTP невозможно. Пожалуйста, обратитесь к системному администратору, чтобы включить." -#: lib/config.php:468 +#: lib/config.php:474 msgid "" "<b>Warning:</b> The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/ru/files_trashbin.po b/l10n/ru/files_trashbin.po index 2bcfd5dc243..4e30a52f763 100644 --- a/l10n/ru/files_trashbin.po +++ b/l10n/ru/files_trashbin.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# baden <badaevd@mail.ru>, 2013 # Den4md <denstarr@mail.md>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-02 17:27-0500\n" -"PO-Revision-Date: 2013-12-01 10:56+0000\n" -"Last-Translator: Валерий Шалимов <valerij.shalimov@gmail.com>\n" +"POT-Creation-Date: 2013-12-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-18 11:40+0000\n" +"Last-Translator: baden <badaevd@mail.ru>\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" @@ -32,7 +33,7 @@ msgstr "%s не может быть восстановлен" msgid "Error" msgstr "Ошибка" -#: lib/trashbin.php:900 lib/trashbin.php:902 +#: lib/trashbin.php:905 lib/trashbin.php:907 msgid "restored" msgstr "восстановлен" @@ -54,8 +55,8 @@ msgstr "Удалён" #: templates/index.php:34 templates/index.php:35 msgid "Delete" -msgstr "" +msgstr "Удалить" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "Удаленные файлы" diff --git a/l10n/ru/lib.po b/l10n/ru/lib.po index f545dcd33c9..cb1007c9a5f 100644 --- a/l10n/ru/lib.po +++ b/l10n/ru/lib.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 21:06-0500\n" -"PO-Revision-Date: 2013-11-21 18:10+0000\n" -"Last-Translator: unixoid <victor.ashirov@gmail.com>\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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" @@ -60,15 +60,15 @@ msgstr "Admin" msgid "Failed to upgrade \"%s\"." msgstr "Не смог обновить \"%s\"." -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "Неизвестный тип файла" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "Изображение повреждено" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "веб-сервисы под вашим управлением" @@ -77,23 +77,23 @@ msgstr "веб-сервисы под вашим управлением" msgid "cannot open \"%s\"" msgstr "не могу открыть \"%s\"" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "ZIP-скачивание отключено." -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Файлы должны быть загружены по одному." -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Назад к файлам" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Выбранные файлы слишком велики, чтобы создать zip файл." -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -179,17 +179,17 @@ msgstr "Текст" msgid "Images" msgstr "Изображения" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s введите имя пользователя базы данных." -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s введите имя базы данных." -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s Вы не можете использовать точки в имени базы данных" @@ -210,11 +210,11 @@ msgid "MySQL username and/or password not valid" msgstr "Неверное имя пользователя и/или пароль MySQL" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -222,10 +222,10 @@ msgid "DB Error: \"%s\"" msgstr "Ошибка БД: \"%s\"" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -258,7 +258,7 @@ msgstr "соединение с Oracle не может быть установл msgid "Oracle username and/or password not valid" msgstr "Неверное имя пользователя и/или пароль Oracle" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Вызываемая команда была: \"%s\", имя: %s, пароль: %s" @@ -342,7 +342,3 @@ msgstr "в прошлом году" #: private/template/functions.php:142 msgid "years ago" msgstr "несколько лет назад" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "Вызвано:" diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index 3b1d5df4f80..86cfda2cae8 100644 --- a/l10n/ru/settings.po +++ b/l10n/ru/settings.po @@ -7,6 +7,7 @@ # Alexander Shashkevych <alex@stunpix.com>, 2013 # alfsoft <alfsoft@gmail.com>, 2013 # lord93 <lordakryl@gmail.com>, 2013 +# Evgeniy Spitsyn <evgeniy@spitsyn.net>, 2013 # jekader <jekader@gmail.com>, 2013 # eurekafag <rkfg@rkfg.me>, 2013 # unixoid <victor.ashirov@gmail.com>, 2013 @@ -20,9 +21,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-04 23:13+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-12-24 01:55-0500\n" +"PO-Revision-Date: 2013-12-22 19:50+0000\n" +"Last-Translator: Evgeniy Spitsyn <evgeniy@spitsyn.net>\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" @@ -211,19 +212,19 @@ msgstr "Удалить" msgid "add group" msgstr "добавить группу" -#: js/users.js:451 +#: js/users.js:454 msgid "A valid username must be provided" msgstr "Укажите правильное имя пользователя" -#: js/users.js:452 js/users.js:458 js/users.js:473 +#: js/users.js:455 js/users.js:461 js/users.js:476 msgid "Error creating user" msgstr "Ошибка создания пользователя" -#: js/users.js:457 +#: js/users.js:460 msgid "A valid password must be provided" msgstr "Укажите валидный пароль" -#: js/users.js:481 +#: js/users.js:484 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Предупреждение: домашняя папка пользователя \"{user}\" уже существует" @@ -260,7 +261,7 @@ msgstr "Предупреждение безопасности" msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." -msgstr "" +msgstr "Вы обращаетесь к %s используя HTTP. Мы настоятельно рекомендуем вам настроить сервер на использование HTTPS." #: templates/admin.php:39 msgid "" @@ -298,14 +299,14 @@ msgstr "PHP-модуль 'fileinfo' отсутствует. Мы настоят #: templates/admin.php:79 msgid "Your PHP version is outdated" -msgstr "" +msgstr "Ваша версия PHP устарела" #: templates/admin.php:82 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." -msgstr "" +msgstr "Ваша версия PHP устарела. Мы настоятельно рекомендуем обновиться до 5.3.8 или новее, так как старые версии работают не корректно. Вполне возможно, что эта установка не работает должным образом." #: templates/admin.php:93 msgid "Locale not working" @@ -319,14 +320,14 @@ msgstr "" msgid "" "This means that there might be problems with certain characters in file " "names." -msgstr "" +msgstr "Это значит, что могут быть проблемы с некоторыми символами в именах файлов." #: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." -msgstr "" +msgstr "Мы настоятельно рекомендуем установить требуемые пакеты в систему, для поддержки одной из следующих локалей: %s." #: templates/admin.php:118 msgid "Internet connection not working" @@ -616,7 +617,7 @@ msgstr "Шифрование" #: templates/personal.php:152 msgid "The encryption app is no longer enabled, please decrypt all your files" -msgstr "" +msgstr "Приложение для шифрования выключено, пожалуйста, расшифруйте ваши файлы" #: templates/personal.php:158 msgid "Log-in password" diff --git a/l10n/ru/user_ldap.po b/l10n/ru/user_ldap.po index 2a218ac2007..686aeb1269d 100644 --- a/l10n/ru/user_ldap.po +++ b/l10n/ru/user_ldap.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -34,17 +34,17 @@ msgstr "Не удалось очистить соответствия." msgid "Failed to delete the server configuration" msgstr "Не удалось удалить конфигурацию сервера" -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "Конфигурация правильная и подключение может быть установлено!" -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "Конфигурация верна, но операция подключения завершилась неудачно. Пожалуйста, проверьте настройки сервера и учетные данные." -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." @@ -95,43 +95,43 @@ msgstr "Успешно" msgid "Error" msgstr "Ошибка" -#: js/settings.js:777 +#: js/settings.js:837 msgid "Configuration OK" msgstr "Конфигурация в порядке" -#: js/settings.js:786 +#: js/settings.js:846 msgid "Configuration incorrect" msgstr "Конфигурация неправильна" -#: js/settings.js:795 +#: js/settings.js:855 msgid "Configuration incomplete" msgstr "Конфигурация не завершена" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:872 js/settings.js:881 msgid "Select groups" msgstr "Выберите группы" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:875 js/settings.js:884 msgid "Select object classes" msgstr "Выберите объектные классы" -#: js/settings.js:818 +#: js/settings.js:878 msgid "Select attributes" msgstr "Выберите атрибуты" -#: js/settings.js:845 +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "Проверка соединения удалась" -#: js/settings.js:852 +#: js/settings.js:912 msgid "Connection test failed" msgstr "Проверка соединения не удалась" -#: js/settings.js:861 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "Вы действительно хотите удалить существующую конфигурацию сервера?" -#: js/settings.js:862 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "Подтверждение удаления" @@ -151,11 +151,11 @@ msgstr[0] "%s пользователь найден" msgstr[1] "%s пользователя найдено" msgstr[2] "%s пользователей найдено" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:778 lib/wizard.php:790 msgid "Invalid Host" msgstr "Неверный сервер" -#: lib/wizard.php:952 +#: lib/wizard.php:951 msgid "Could not find the desired feature" msgstr "Не могу найти требуемой функциональности" diff --git a/l10n/ru_RU/core.po b/l10n/ru_RU/core.po index ffe1ab5403a..2f4f69fd711 100644 --- a/l10n/ru_RU/core.po +++ b/l10n/ru_RU/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" @@ -148,63 +148,63 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Настройки" -#: js/js.js:858 +#: js/js.js:869 msgid "seconds ago" msgstr "" -#: js/js.js:859 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:860 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:861 +#: js/js.js:872 msgid "today" msgstr "" -#: js/js.js:862 +#: js/js.js:873 msgid "yesterday" msgstr "" -#: js/js.js:863 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:864 +#: js/js.js:875 msgid "last month" msgstr "" -#: js/js.js:865 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:866 +#: js/js.js:877 msgid "months ago" msgstr "" -#: js/js.js:867 +#: js/js.js:878 msgid "last year" msgstr "" -#: js/js.js:868 +#: js/js.js:879 msgid "years ago" msgstr "" diff --git a/l10n/ru_RU/files.po b/l10n/ru_RU/files.po index 0aee9f1c39d..72e986aadc4 100644 --- a/l10n/ru_RU/files.po +++ b/l10n/ru_RU/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-11 13:31-0500\n" -"PO-Revision-Date: 2013-12-09 12:10+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "Сделать общим" diff --git a/l10n/ru_RU/lib.po b/l10n/ru_RU/lib.po index 14eecdabd8d..1ac6c0d0d62 100644 --- a/l10n/ru_RU/lib.po +++ b/l10n/ru_RU/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" @@ -53,15 +53,15 @@ msgstr "" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "" @@ -70,23 +70,23 @@ msgstr "" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "Текст" msgid "Images" msgstr "" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -335,7 +335,3 @@ msgstr "" #: private/template/functions.php:142 msgid "years ago" msgstr "" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/ru_RU/user_ldap.po b/l10n/ru_RU/user_ldap.po index c247f96fcea..2bf8b2157e1 100644 --- a/l10n/ru_RU/user_ldap.po +++ b/l10n/ru_RU/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." @@ -86,43 +86,43 @@ msgstr "" msgid "Error" msgstr "Ошибка" -#: js/settings.js:777 +#: js/settings.js:837 msgid "Configuration OK" msgstr "" -#: js/settings.js:786 +#: js/settings.js:846 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:795 +#: js/settings.js:855 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:872 js/settings.js:881 msgid "Select groups" msgstr "Выбрать группы" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:875 js/settings.js:884 msgid "Select object classes" msgstr "" -#: js/settings.js:818 +#: js/settings.js:878 msgid "Select attributes" msgstr "" -#: js/settings.js:845 +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:852 +#: js/settings.js:912 msgid "Connection test failed" msgstr "" -#: js/settings.js:861 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:862 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "" @@ -142,11 +142,11 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:778 lib/wizard.php:790 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:952 +#: lib/wizard.php:951 msgid "Could not find the desired feature" msgstr "" diff --git a/l10n/si_LK/core.po b/l10n/si_LK/core.po index ca855ace10a..ff4597f8a1d 100644 --- a/l10n/si_LK/core.po +++ b/l10n/si_LK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:22+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -148,59 +148,59 @@ msgstr "නොවැම්බර්" msgid "December" msgstr "දෙසැම්බර්" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "සිටුවම්" -#: js/js.js:858 +#: js/js.js:869 msgid "seconds ago" msgstr "තත්පරයන්ට පෙර" -#: js/js.js:859 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:860 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:861 +#: js/js.js:872 msgid "today" msgstr "අද" -#: js/js.js:862 +#: js/js.js:873 msgid "yesterday" msgstr "ඊයේ" -#: js/js.js:863 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:864 +#: js/js.js:875 msgid "last month" msgstr "පෙර මාසයේ" -#: js/js.js:865 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:866 +#: js/js.js:877 msgid "months ago" msgstr "මාස කීපයකට පෙර" -#: js/js.js:867 +#: js/js.js:878 msgid "last year" msgstr "පෙර අවුරුද්දේ" -#: js/js.js:868 +#: js/js.js:879 msgid "years ago" msgstr "අවුරුදු කීපයකට පෙර" diff --git a/l10n/si_LK/files.po b/l10n/si_LK/files.po index a1095444642..9df11d77108 100644 --- a/l10n/si_LK/files.po +++ b/l10n/si_LK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-11 13:31-0500\n" -"PO-Revision-Date: 2013-12-09 12:00+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "බෙදා හදා ගන්න" diff --git a/l10n/si_LK/lib.po b/l10n/si_LK/lib.po index d8488e0c1e5..584bebcb4d7 100644 --- a/l10n/si_LK/lib.po +++ b/l10n/si_LK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -53,15 +53,15 @@ msgstr "පරිපාලක" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "ඔබට පාලනය කළ හැකි වෙබ් සේවාවන්" @@ -70,23 +70,23 @@ msgstr "ඔබට පාලනය කළ හැකි වෙබ් සේවා msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "ZIP භාගත කිරීම් අක්රියයි" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "ගොනු එකින් එක භාගත යුතුයි" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "ගොනු වෙතට නැවත යන්න" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "තෝරාගත් ගොනු ZIP ගොනුවක් තැනීමට විශාල වැඩිය." -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "පෙළ" msgid "Images" msgstr "අනු රූ" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -331,7 +331,3 @@ msgstr "පෙර අවුරුද්දේ" #: private/template/functions.php:142 msgid "years ago" msgstr "අවුරුදු කීපයකට පෙර" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/si_LK/user_ldap.po b/l10n/si_LK/user_ldap.po index ee9684996a2..f7bb2e04b61 100644 --- a/l10n/si_LK/user_ldap.po +++ b/l10n/si_LK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." @@ -86,43 +86,43 @@ msgstr "සාර්ථකයි" msgid "Error" msgstr "දෝෂයක්" -#: js/settings.js:777 +#: js/settings.js:837 msgid "Configuration OK" msgstr "" -#: js/settings.js:786 +#: js/settings.js:846 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:795 +#: js/settings.js:855 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:872 js/settings.js:881 msgid "Select groups" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:875 js/settings.js:884 msgid "Select object classes" msgstr "" -#: js/settings.js:818 +#: js/settings.js:878 msgid "Select attributes" msgstr "" -#: js/settings.js:845 +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:852 +#: js/settings.js:912 msgid "Connection test failed" msgstr "" -#: js/settings.js:861 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:862 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "" @@ -140,11 +140,11 @@ msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:778 lib/wizard.php:790 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:952 +#: lib/wizard.php:951 msgid "Could not find the desired feature" msgstr "" diff --git a/l10n/sk/files.po b/l10n/sk/files.po index 57d247be3e9..07a816b9346 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" +"POT-Creation-Date: 2013-12-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06:55+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "" diff --git a/l10n/sk/lib.po b/l10n/sk/lib.po index 73526564da1..60770f82b2c 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" @@ -53,15 +53,15 @@ msgstr "" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "" @@ -70,23 +70,23 @@ msgstr "" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "" msgid "Images" msgstr "" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -335,7 +335,3 @@ msgstr "" #: private/template/functions.php:142 msgid "years ago" msgstr "" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/sk_SK/core.po b/l10n/sk_SK/core.po index 471a077ac18..18d65c58b7b 100644 --- a/l10n/sk_SK/core.po +++ b/l10n/sk_SK/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-11 13:31-0500\n" -"PO-Revision-Date: 2013-12-09 16:00+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: mhh <marian.hvolka@stuba.sk>\n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -150,63 +150,63 @@ msgstr "November" msgid "December" msgstr "December" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Nastavenia" -#: js/js.js:858 +#: js/js.js:869 msgid "seconds ago" msgstr "pred sekundami" -#: js/js.js:859 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "pred %n minútou" msgstr[1] "pred %n minútami" msgstr[2] "pred %n minútami" -#: js/js.js:860 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "pred %n hodinou" msgstr[1] "pred %n hodinami" msgstr[2] "pred %n hodinami" -#: js/js.js:861 +#: js/js.js:872 msgid "today" msgstr "dnes" -#: js/js.js:862 +#: js/js.js:873 msgid "yesterday" msgstr "včera" -#: js/js.js:863 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "pred %n dňom" msgstr[1] "pred %n dňami" msgstr[2] "pred %n dňami" -#: js/js.js:864 +#: js/js.js:875 msgid "last month" msgstr "minulý mesiac" -#: js/js.js:865 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "pred %n mesiacom" msgstr[1] "pred %n mesiacmi" msgstr[2] "pred %n mesiacmi" -#: js/js.js:866 +#: js/js.js:877 msgid "months ago" msgstr "pred mesiacmi" -#: js/js.js:867 +#: js/js.js:878 msgid "last year" msgstr "minulý rok" -#: js/js.js:868 +#: js/js.js:879 msgid "years ago" msgstr "pred rokmi" diff --git a/l10n/sk_SK/files.po b/l10n/sk_SK/files.po index e1bffbb6a3b..3ac04ae10b6 100644 --- a/l10n/sk_SK/files.po +++ b/l10n/sk_SK/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-11 13:31-0500\n" -"PO-Revision-Date: 2013-12-09 12:00+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -47,12 +47,17 @@ msgstr "Názov %s už používa priečinok s%. Prosím zvoľte iný názov." msgid "Not a valid source" msgstr "Neplatný zdroj" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" msgstr "Chyba pri sťahovaní súboru %s do %s" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "Chyba pri vytváraní súboru" @@ -172,6 +177,10 @@ msgstr "Nemožno vytvoriť súbor" msgid "Could not create folder" msgstr "Nemožno vytvoriť priečinok" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "Zdieľať" diff --git a/l10n/sk_SK/lib.po b/l10n/sk_SK/lib.po index 8daaac01c17..b33bb89f204 100644 --- a/l10n/sk_SK/lib.po +++ b/l10n/sk_SK/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-02 17:27-0500\n" -"PO-Revision-Date: 2013-12-02 13:50+0000\n" -"Last-Translator: mhh <marian.hvolka@stuba.sk>\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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" @@ -72,23 +72,23 @@ msgstr "webové služby pod Vašou kontrolou" msgid "cannot open \"%s\"" msgstr "nemožno otvoriť \"%s\"" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "Sťahovanie súborov ZIP je vypnuté." -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Súbory musia byť nahrávané jeden za druhým." -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Späť na súbory" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Zvolené súbory sú príliš veľké na vygenerovanie zip súboru." -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -174,17 +174,17 @@ msgstr "Text" msgid "Images" msgstr "Obrázky" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "Zadajte používateľské meno %s databázy." -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "Zadajte názov databázy pre %s databázy." -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "V názve databázy %s nemôžete používať bodky" @@ -205,11 +205,11 @@ msgid "MySQL username and/or password not valid" msgstr "Používateľské meno a/alebo heslo pre MySQL databázu je neplatné" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -217,10 +217,10 @@ msgid "DB Error: \"%s\"" msgstr "Chyba DB: \"%s\"" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -253,7 +253,7 @@ msgstr "Nie je možné pripojiť sa k Oracle" msgid "Oracle username and/or password not valid" msgstr "Používateľské meno a/alebo heslo pre Oracle databázu je neplatné" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Podozrivý príkaz bol: \"%s\", meno: %s, heslo: %s" @@ -337,7 +337,3 @@ msgstr "minulý rok" #: private/template/functions.php:142 msgid "years ago" msgstr "pred rokmi" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "Príčina:" diff --git a/l10n/sk_SK/settings.po b/l10n/sk_SK/settings.po index c114e3923c6..226ab6392cb 100644 --- a/l10n/sk_SK/settings.po +++ b/l10n/sk_SK/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-11 13:31-0500\n" -"PO-Revision-Date: 2013-12-09 16:00+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-16 13:50+0000\n" "Last-Translator: mhh <marian.hvolka@stuba.sk>\n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -294,7 +294,7 @@ msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." -msgstr "" +msgstr "Táto verzia PHP je zastaraná. Dôrazne vám odporúčame aktualizovať na verziu 5.3.8 alebo novšiu, lebo staršie verzie sú chybné. Je možné, že táto instalácia nebude fungovat správne." #: templates/admin.php:93 msgid "Locale not working" diff --git a/l10n/sk_SK/user_ldap.po b/l10n/sk_SK/user_ldap.po index 519de61f87b..314d24e8261 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-11 13:31-0500\n" -"PO-Revision-Date: 2013-12-09 16:00+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: mhh <marian.hvolka@stuba.sk>\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 c88839457ba..4d04d189759 100644 --- a/l10n/sl/core.po +++ b/l10n/sl/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" +"Last-Translator: mateju <>\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" @@ -150,15 +150,15 @@ msgstr "november" msgid "December" msgstr "december" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Nastavitve" -#: js/js.js:858 +#: js/js.js:869 msgid "seconds ago" msgstr "pred nekaj sekundami" -#: js/js.js:859 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "pred %n minuto" @@ -166,7 +166,7 @@ msgstr[1] "pred %n minutama" msgstr[2] "pred %n minutami" msgstr[3] "pred %n minutami" -#: js/js.js:860 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "pred %n uro" @@ -174,15 +174,15 @@ msgstr[1] "pred %n urama" msgstr[2] "pred %n urami" msgstr[3] "pred %n urami" -#: js/js.js:861 +#: js/js.js:872 msgid "today" msgstr "danes" -#: js/js.js:862 +#: js/js.js:873 msgid "yesterday" msgstr "včeraj" -#: js/js.js:863 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "pred %n dnevom" @@ -190,11 +190,11 @@ msgstr[1] "pred %n dnevoma" msgstr[2] "pred %n dnevi" msgstr[3] "pred %n dnevi" -#: js/js.js:864 +#: js/js.js:875 msgid "last month" msgstr "zadnji mesec" -#: js/js.js:865 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "pred %n mesecem" @@ -202,15 +202,15 @@ msgstr[1] "pred %n mesecema" msgstr[2] "pred %n meseci" msgstr[3] "pred %n meseci" -#: js/js.js:866 +#: js/js.js:877 msgid "months ago" msgstr "mesecev nazaj" -#: js/js.js:867 +#: js/js.js:878 msgid "last year" msgstr "lansko leto" -#: js/js.js:868 +#: js/js.js:879 msgid "years ago" msgstr "let nazaj" @@ -698,7 +698,7 @@ msgid "" "This application requires JavaScript to be enabled for correct operation. " "Please <a href=\"http://enable-javascript.com/\" target=\"_blank\">enable " "JavaScript</a> and re-load this interface." -msgstr "" +msgstr "Program zahteva omogočeno skriptno podporo. Za pravilno delovanje je treba omogočiti <a href=\"http://enable-javascript.com/\" target=\"_blank\">JavaScript</a> in nato ponovno osvežiti vmesnik." #: templates/layout.user.php:44 #, php-format diff --git a/l10n/sl/files.po b/l10n/sl/files.po index 86d93f09355..83b375f340e 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-11 13:31-0500\n" -"PO-Revision-Date: 2013-12-09 12:00+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-12-22 01:55-0500\n" +"PO-Revision-Date: 2013-12-21 21:20+0000\n" +"Last-Translator: mateju <>\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" @@ -48,12 +48,17 @@ msgstr "Ime %s je že v mapi %s že v uporabi. Izbrati je treba drugo ime." msgid "Not a valid source" msgstr "Vir ni veljaven" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "Odpiranje naslovov URL preko strežnika ni dovoljeno. Preverite nastavitve strežnika." + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" msgstr "Napaka med prejemanjem %s v mapo %s" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "Napaka med ustvarjanjem datoteke" @@ -173,6 +178,10 @@ msgstr "Ni mogoče ustvariti datoteke" msgid "Could not create folder" msgstr "Ni mogoče ustvariti mape" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "Napaka pridobivanja naslova URL" + #: js/fileactions.js:125 msgid "Share" msgstr "Souporaba" diff --git a/l10n/sl/lib.po b/l10n/sl/lib.po index 9d72aa95cb9..1a6921a7028 100644 --- a/l10n/sl/lib.po +++ b/l10n/sl/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-02 17:27-0500\n" -"PO-Revision-Date: 2013-11-29 23:40+0000\n" -"Last-Translator: mateju <>\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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" @@ -72,23 +72,23 @@ msgstr "spletne storitve pod vašim nadzorom" msgid "cannot open \"%s\"" msgstr "ni mogoče odpreti \"%s\"" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "Prejemanje datotek v paketu ZIP je onemogočeno." -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Datoteke je mogoče prejeti le posamično." -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Nazaj na datoteke" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Izbrane datoteke so prevelike za ustvarjanje datoteke arhiva zip." -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -174,17 +174,17 @@ msgstr "Besedilo" msgid "Images" msgstr "Slike" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s - vnos uporabniškega imena podatkovne zbirke." -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s - vnos imena podatkovne zbirke." -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s - v imenu podatkovne zbirke ni dovoljeno uporabljati pik." @@ -205,11 +205,11 @@ msgid "MySQL username and/or password not valid" msgstr "Uporabniško ime ali geslo MySQL ni veljavno" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -217,10 +217,10 @@ msgid "DB Error: \"%s\"" msgstr "Napaka podatkovne zbirke: \"%s\"" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -253,7 +253,7 @@ msgstr "Povezave s sistemom Oracle ni mogoče vzpostaviti." msgid "Oracle username and/or password not valid" msgstr "Uporabniško ime ali geslo Oracle ni veljavno" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Napačni ukaz je: \"%s\", ime: %s, geslo: %s" @@ -341,7 +341,3 @@ msgstr "lansko leto" #: private/template/functions.php:142 msgid "years ago" msgstr "let nazaj" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "Vzrok:" diff --git a/l10n/sl/user_ldap.po b/l10n/sl/user_ldap.po index c900c97cb63..276ce0e77e2 100644 --- a/l10n/sl/user_ldap.po +++ b/l10n/sl/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-02 17:27-0500\n" -"PO-Revision-Date: 2013-12-02 19:40+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: mateju <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -27,17 +27,17 @@ msgstr "Čiščenje preslikav je spodletelo." msgid "Failed to delete the server configuration" msgstr "Brisanje nastavitev strežnika je spodletelo." -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "Nastavitev je veljavna, zato je povezavo mogoče vzpostaviti!" -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "Nastavitev je veljavna, vendar pa je vez spodletela. Preveriti je treba nastavitve strežnika in ustreznost poveril." -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." @@ -88,43 +88,43 @@ msgstr "Uspešno končano." msgid "Error" msgstr "Napaka" -#: js/settings.js:777 +#: js/settings.js:837 msgid "Configuration OK" msgstr "Nastavitev je ustrezna" -#: js/settings.js:786 +#: js/settings.js:846 msgid "Configuration incorrect" msgstr "Nastavitev ni ustrezna" -#: js/settings.js:795 +#: js/settings.js:855 msgid "Configuration incomplete" msgstr "Nastavitev je nepopolna" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:872 js/settings.js:881 msgid "Select groups" msgstr "Izberi skupine" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:875 js/settings.js:884 msgid "Select object classes" msgstr "Izbor razredov predmeta" -#: js/settings.js:818 +#: js/settings.js:878 msgid "Select attributes" msgstr "Izbor atributov" -#: js/settings.js:845 +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "Preizkus povezave je uspešno končan." -#: js/settings.js:852 +#: js/settings.js:912 msgid "Connection test failed" msgstr "Preizkus povezave je spodletel." -#: js/settings.js:861 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "Ali res želite izbrisati trenutne nastavitve strežnika?" -#: js/settings.js:862 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "Potrdi brisanje" @@ -146,11 +146,11 @@ msgstr[1] "%s najdena uporabnika" msgstr[2] "%s najdeni uporabniki" msgstr[3] "%s najdenih uporabnikov" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:778 lib/wizard.php:790 msgid "Invalid Host" msgstr "Neveljaven gostitelj" -#: lib/wizard.php:952 +#: lib/wizard.php:951 msgid "Could not find the desired feature" msgstr "Želene zmožnosti ni mogoče najti" diff --git a/l10n/sl/user_webdavauth.po b/l10n/sl/user_webdavauth.po index a14dd862368..51a7527747f 100644 --- a/l10n/sl/user_webdavauth.po +++ b/l10n/sl/user_webdavauth.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-12 18:10+0000\n" +"POT-Creation-Date: 2013-12-25 01:55-0500\n" +"PO-Revision-Date: 2013-12-24 22:37+0000\n" "Last-Translator: mateju <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -33,4 +33,4 @@ msgid "" "The user credentials will be sent to this address. 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 "Uporabniška poverila bodo poslana na ta naslov. Vstavek preveri odziv in kodi stanja 401 in 403 kot neveljavna poverila, vse ostale odzive pa kot veljavna." +msgstr "Uporabniška poverila bodo poslana na naveden naslov. Vstavek preveri odziv in kodi stanja 401 in 403 obravnava kot neveljavna poverila, vse ostale odzive pa kot veljavna." diff --git a/l10n/sq/core.po b/l10n/sq/core.po index c5414524d65..428cc6415b7 100644 --- a/l10n/sq/core.po +++ b/l10n/sq/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -150,59 +150,59 @@ msgstr "Nëntor" msgid "December" msgstr "Dhjetor" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Parametra" -#: js/js.js:858 +#: js/js.js:869 msgid "seconds ago" msgstr "sekonda më parë" -#: js/js.js:859 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minut më parë" msgstr[1] "%n minuta më parë" -#: js/js.js:860 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n orë më parë" msgstr[1] "%n orë më parë" -#: js/js.js:861 +#: js/js.js:872 msgid "today" msgstr "sot" -#: js/js.js:862 +#: js/js.js:873 msgid "yesterday" msgstr "dje" -#: js/js.js:863 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n ditë më parë" msgstr[1] "%n ditë më parë" -#: js/js.js:864 +#: js/js.js:875 msgid "last month" msgstr "muajin e shkuar" -#: js/js.js:865 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n muaj më parë" msgstr[1] "%n muaj më parë" -#: js/js.js:866 +#: js/js.js:877 msgid "months ago" msgstr "muaj më parë" -#: js/js.js:867 +#: js/js.js:878 msgid "last year" msgstr "vitin e shkuar" -#: js/js.js:868 +#: js/js.js:879 msgid "years ago" msgstr "vite më parë" diff --git a/l10n/sq/files.po b/l10n/sq/files.po index bc7367988cc..782e93a6b97 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-11 13:31-0500\n" -"PO-Revision-Date: 2013-12-09 12:00+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -47,12 +47,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -172,6 +177,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "Ndaj" diff --git a/l10n/sq/lib.po b/l10n/sq/lib.po index 5bdd4df17f0..70e30925520 100644 --- a/l10n/sq/lib.po +++ b/l10n/sq/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -53,15 +53,15 @@ msgstr "Admin" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "shërbime web nën kontrollin tënd" @@ -70,23 +70,23 @@ msgstr "shërbime web nën kontrollin tënd" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "Shkarimi i skedarëve ZIP është i çaktivizuar." -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Skedarët duhet të shkarkohen një nga një." -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Kthehu tek skedarët" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Skedarët e selektuar janë shumë të mëdhenj për të krijuar një skedar ZIP." -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "Tekst" msgid "Images" msgstr "Foto" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "% shkruani përdoruesin e database-it." -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s shkruani emrin e database-it." -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s nuk mund të përdorni pikat tek emri i database-it" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "Përdoruesi dhe/apo kodi i MySQL-it i pavlefshëm." #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "Veprim i gabuar i DB-it: \"%s\"" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "Përdoruesi dhe/apo kodi i Oracle-it i pavlefshëm" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Komanda e gabuar ishte: \"%s\", përdoruesi: %s, kodi: %s" @@ -331,7 +331,3 @@ msgstr "vitin e shkuar" #: private/template/functions.php:142 msgid "years ago" msgstr "vite më parë" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/sq/user_ldap.po b/l10n/sq/user_ldap.po index d1d42bedcae..89b59666e19 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -25,17 +25,17 @@ msgstr "dështoi së pastruari planifikimet" msgid "Failed to delete the server configuration" msgstr "dështoi fshirjen e konfigurimit të serverit" -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "Konfigurimi është i vlefshem dhe lidhja mund të kryhet" -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "Konfigurimi është i saktë por lidhja dështoi. Kontrolloni konfigurimete serverit dhe kredencialet." -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." @@ -86,43 +86,43 @@ msgstr "Sukses" msgid "Error" msgstr "Gabim" -#: js/settings.js:777 +#: js/settings.js:837 msgid "Configuration OK" msgstr "" -#: js/settings.js:786 +#: js/settings.js:846 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:795 +#: js/settings.js:855 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:872 js/settings.js:881 msgid "Select groups" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:875 js/settings.js:884 msgid "Select object classes" msgstr "" -#: js/settings.js:818 +#: js/settings.js:878 msgid "Select attributes" msgstr "" -#: js/settings.js:845 +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "Prova e lidhjes përfundoi me sukses" -#: js/settings.js:852 +#: js/settings.js:912 msgid "Connection test failed" msgstr "Prova e lidhjes dështoi" -#: js/settings.js:861 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "Jeni vërtetë të sigurt të fshini konfigurimet aktuale të serverit?" -#: js/settings.js:862 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "Konfirmoni Fshirjen" @@ -140,11 +140,11 @@ msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:778 lib/wizard.php:790 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:952 +#: lib/wizard.php:951 msgid "Could not find the desired feature" msgstr "" diff --git a/l10n/sr/core.po b/l10n/sr/core.po index 6c0c117aa79..a30a77a7c9f 100644 --- a/l10n/sr/core.po +++ b/l10n/sr/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -148,63 +148,63 @@ msgstr "Новембар" msgid "December" msgstr "Децембар" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Поставке" -#: js/js.js:858 +#: js/js.js:869 msgid "seconds ago" msgstr "пре неколико секунди" -#: js/js.js:859 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:860 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:861 +#: js/js.js:872 msgid "today" msgstr "данас" -#: js/js.js:862 +#: js/js.js:873 msgid "yesterday" msgstr "јуче" -#: js/js.js:863 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:864 +#: js/js.js:875 msgid "last month" msgstr "прошлог месеца" -#: js/js.js:865 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:866 +#: js/js.js:877 msgid "months ago" msgstr "месеци раније" -#: js/js.js:867 +#: js/js.js:878 msgid "last year" msgstr "прошле године" -#: js/js.js:868 +#: js/js.js:879 msgid "years ago" msgstr "година раније" diff --git a/l10n/sr/files.po b/l10n/sr/files.po index 099a8743bad..5aee2a258b5 100644 --- a/l10n/sr/files.po +++ b/l10n/sr/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-11 13:31-0500\n" -"PO-Revision-Date: 2013-12-09 12:00+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "Дели" diff --git a/l10n/sr/lib.po b/l10n/sr/lib.po index 059422918a1..1e2a625e31e 100644 --- a/l10n/sr/lib.po +++ b/l10n/sr/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -53,15 +53,15 @@ msgstr "Администратор" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "веб сервиси под контролом" @@ -70,23 +70,23 @@ msgstr "веб сервиси под контролом" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "Преузимање ZIP-а је искључено." -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Датотеке морате преузимати једну по једну." -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Назад на датотеке" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Изабране датотеке су превелике да бисте направили ZIP датотеку." -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "Текст" msgid "Images" msgstr "Слике" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -335,7 +335,3 @@ msgstr "прошле године" #: private/template/functions.php:142 msgid "years ago" msgstr "година раније" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/sr/user_ldap.po b/l10n/sr/user_ldap.po index ead4cdd6e74..e4b50474c19 100644 --- a/l10n/sr/user_ldap.po +++ b/l10n/sr/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." @@ -86,43 +86,43 @@ msgstr "" msgid "Error" msgstr "Грешка" -#: js/settings.js:777 +#: js/settings.js:837 msgid "Configuration OK" msgstr "" -#: js/settings.js:786 +#: js/settings.js:846 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:795 +#: js/settings.js:855 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:872 js/settings.js:881 msgid "Select groups" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:875 js/settings.js:884 msgid "Select object classes" msgstr "" -#: js/settings.js:818 +#: js/settings.js:878 msgid "Select attributes" msgstr "" -#: js/settings.js:845 +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:852 +#: js/settings.js:912 msgid "Connection test failed" msgstr "" -#: js/settings.js:861 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:862 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "" @@ -142,11 +142,11 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:778 lib/wizard.php:790 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:952 +#: lib/wizard.php:951 msgid "Could not find the desired feature" msgstr "" diff --git a/l10n/sr@latin/core.po b/l10n/sr@latin/core.po index 3329cd5c207..14e62f885d1 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:22+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -149,63 +149,63 @@ msgstr "Novembar" msgid "December" msgstr "Decembar" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Podešavanja" -#: js/js.js:858 +#: js/js.js:869 msgid "seconds ago" msgstr "Pre par sekundi" -#: js/js.js:859 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:860 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:861 +#: js/js.js:872 msgid "today" msgstr "Danas" -#: js/js.js:862 +#: js/js.js:873 msgid "yesterday" msgstr "juče" -#: js/js.js:863 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:864 +#: js/js.js:875 msgid "last month" msgstr "prošlog meseca" -#: js/js.js:865 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:866 +#: js/js.js:877 msgid "months ago" msgstr "pre nekoliko meseci" -#: js/js.js:867 +#: js/js.js:878 msgid "last year" msgstr "prošle godine" -#: js/js.js:868 +#: js/js.js:879 msgid "years ago" msgstr "pre nekoliko godina" diff --git a/l10n/sr@latin/files.po b/l10n/sr@latin/files.po index ffb89b7d57f..04a77944ebc 100644 --- a/l10n/sr@latin/files.po +++ b/l10n/sr@latin/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "Podeli" diff --git a/l10n/sr@latin/lib.po b/l10n/sr@latin/lib.po index bd338293316..2a2686d0fb9 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -53,15 +53,15 @@ msgstr "Adninistracija" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "" @@ -70,23 +70,23 @@ msgstr "" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "Tekst" msgid "Images" msgstr "" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -335,7 +335,3 @@ msgstr "prošle godine" #: private/template/functions.php:142 msgid "years ago" msgstr "pre nekoliko godina" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/sr@latin/user_ldap.po b/l10n/sr@latin/user_ldap.po index 0508cd2b8d0..425b935c3c1 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." @@ -86,43 +86,43 @@ msgstr "" msgid "Error" msgstr "Greška" -#: js/settings.js:777 +#: js/settings.js:837 msgid "Configuration OK" msgstr "" -#: js/settings.js:786 +#: js/settings.js:846 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:795 +#: js/settings.js:855 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:872 js/settings.js:881 msgid "Select groups" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:875 js/settings.js:884 msgid "Select object classes" msgstr "" -#: js/settings.js:818 +#: js/settings.js:878 msgid "Select attributes" msgstr "" -#: js/settings.js:845 +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:852 +#: js/settings.js:912 msgid "Connection test failed" msgstr "" -#: js/settings.js:861 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:862 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "" @@ -142,11 +142,11 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:778 lib/wizard.php:790 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:952 +#: lib/wizard.php:951 msgid "Could not find the desired feature" msgstr "" diff --git a/l10n/sv/core.po b/l10n/sv/core.po index dd2ca030441..8d95db75520 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -155,59 +155,59 @@ msgstr "November" msgid "December" msgstr "December" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Inställningar" -#: js/js.js:858 +#: js/js.js:869 msgid "seconds ago" msgstr "sekunder sedan" -#: js/js.js:859 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minut sedan" msgstr[1] "%n minuter sedan" -#: js/js.js:860 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n timme sedan" msgstr[1] "%n timmar sedan" -#: js/js.js:861 +#: js/js.js:872 msgid "today" msgstr "i dag" -#: js/js.js:862 +#: js/js.js:873 msgid "yesterday" msgstr "i går" -#: js/js.js:863 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n dag sedan" msgstr[1] "%n dagar sedan" -#: js/js.js:864 +#: js/js.js:875 msgid "last month" msgstr "förra månaden" -#: js/js.js:865 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n månad sedan" msgstr[1] "%n månader sedan" -#: js/js.js:866 +#: js/js.js:877 msgid "months ago" msgstr "månader sedan" -#: js/js.js:867 +#: js/js.js:878 msgid "last year" msgstr "förra året" -#: js/js.js:868 +#: js/js.js:879 msgid "years ago" msgstr "år sedan" diff --git a/l10n/sv/files.po b/l10n/sv/files.po index b04ea41fb8d..19f5324e9c5 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/files.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-11 13:31-0500\n" -"PO-Revision-Date: 2013-12-09 12:00+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -54,12 +54,17 @@ msgstr "Namnet %s används redan i katalogen %s. Välj ett annat namn." msgid "Not a valid source" msgstr "Inte en giltig källa" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" msgstr "Fel under nerladdning från %s till %s" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "Fel under skapande utav filen" @@ -179,6 +184,10 @@ msgstr "Kunde ej skapa fil" msgid "Could not create folder" msgstr "Kunde ej skapa katalog" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "Dela" diff --git a/l10n/sv/lib.po b/l10n/sv/lib.po index e9c3f0c8834..54927d685c2 100644 --- a/l10n/sv/lib.po +++ b/l10n/sv/lib.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-26 04:02-0500\n" -"PO-Revision-Date: 2013-11-24 19:20+0000\n" -"Last-Translator: kallemooo <karl.h.thoren@gmail.com>\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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" @@ -58,11 +58,11 @@ msgstr "Admin" msgid "Failed to upgrade \"%s\"." msgstr "Misslyckades med att uppgradera \"%s\"." -#: private/avatar.php:62 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "Okänd filtyp" -#: private/avatar.php:67 +#: private/avatar.php:71 msgid "Invalid image" msgstr "Ogiltig bild" @@ -75,23 +75,23 @@ msgstr "webbtjänster under din kontroll" msgid "cannot open \"%s\"" msgstr "Kan inte öppna \"%s\"" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "Nerladdning av ZIP är avstängd." -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Filer laddas ner en åt gången." -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Tillbaka till Filer" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Valda filer är för stora för att skapa zip-fil." -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -177,17 +177,17 @@ msgstr "Text" msgid "Images" msgstr "Bilder" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s ange databasanvändare." -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s ange databasnamn" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s du får inte använda punkter i databasnamnet" @@ -208,11 +208,11 @@ msgid "MySQL username and/or password not valid" msgstr "MySQL-användarnamnet och/eller lösenordet är felaktigt" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -220,10 +220,10 @@ msgid "DB Error: \"%s\"" msgstr "DB error: \"%s\"" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -256,7 +256,7 @@ msgstr "Oracle-anslutning kunde inte etableras" msgid "Oracle username and/or password not valid" msgstr "Oracle-användarnamnet och/eller lösenordet är felaktigt" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Det felande kommandot var: \"%s\", name: %s, password: %s" @@ -336,7 +336,3 @@ msgstr "förra året" #: private/template/functions.php:142 msgid "years ago" msgstr "år sedan" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "Orsakad av:" diff --git a/l10n/sv/user_ldap.po b/l10n/sv/user_ldap.po index af1aa4ca08e..9ccf06aa4ba 100644 --- a/l10n/sv/user_ldap.po +++ b/l10n/sv/user_ldap.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -32,17 +32,17 @@ msgstr "Fel vid rensning av mappningar" msgid "Failed to delete the server configuration" msgstr "Misslyckades med att radera serverinställningen" -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "Inställningen är giltig och anslutningen kunde upprättas!" -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "Konfigurationen är riktig, men Bind felade. Var vänlig och kontrollera serverinställningar och logininformation." -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." @@ -93,43 +93,43 @@ msgstr "Lyckat" msgid "Error" msgstr "Fel" -#: js/settings.js:777 +#: js/settings.js:837 msgid "Configuration OK" msgstr "Konfigurationen är OK" -#: js/settings.js:786 +#: js/settings.js:846 msgid "Configuration incorrect" msgstr "Felaktig konfiguration" -#: js/settings.js:795 +#: js/settings.js:855 msgid "Configuration incomplete" msgstr "Konfigurationen är ej komplett" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:872 js/settings.js:881 msgid "Select groups" msgstr "Välj grupper" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:875 js/settings.js:884 msgid "Select object classes" msgstr "Välj Objekt-klasser" -#: js/settings.js:818 +#: js/settings.js:878 msgid "Select attributes" msgstr "Välj attribut" -#: js/settings.js:845 +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "Anslutningstestet lyckades" -#: js/settings.js:852 +#: js/settings.js:912 msgid "Connection test failed" msgstr "Anslutningstestet misslyckades" -#: js/settings.js:861 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "Vill du verkligen radera den nuvarande serverinställningen?" -#: js/settings.js:862 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "Bekräfta radering" @@ -147,11 +147,11 @@ msgid_plural "%s users found" msgstr[0] "%s användare hittad" msgstr[1] "%s användare hittade" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:778 lib/wizard.php:790 msgid "Invalid Host" msgstr "Felaktig Host" -#: lib/wizard.php:952 +#: lib/wizard.php:951 msgid "Could not find the desired feature" msgstr "Det gick inte hitta den önskade funktionen" diff --git a/l10n/sw_KE/files.po b/l10n/sw_KE/files.po index d6c0838eab8..c62ef362900 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" +"POT-Creation-Date: 2013-12-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06:55+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "" diff --git a/l10n/sw_KE/lib.po b/l10n/sw_KE/lib.po index 213951f61b8..ea6aa2ed1c0 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" @@ -53,15 +53,15 @@ msgstr "" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "" @@ -70,23 +70,23 @@ msgstr "" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "" msgid "Images" msgstr "" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -331,7 +331,3 @@ msgstr "" #: private/template/functions.php:142 msgid "years ago" msgstr "" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/ta_LK/core.po b/l10n/ta_LK/core.po index f11908a17a4..925e3c1f42a 100644 --- a/l10n/ta_LK/core.po +++ b/l10n/ta_LK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -148,59 +148,59 @@ msgstr "கார்த்திகை" msgid "December" msgstr "மார்கழி" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "அமைப்புகள்" -#: js/js.js:858 +#: js/js.js:869 msgid "seconds ago" msgstr "செக்கன்களுக்கு முன்" -#: js/js.js:859 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:860 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:861 +#: js/js.js:872 msgid "today" msgstr "இன்று" -#: js/js.js:862 +#: js/js.js:873 msgid "yesterday" msgstr "நேற்று" -#: js/js.js:863 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:864 +#: js/js.js:875 msgid "last month" msgstr "கடந்த மாதம்" -#: js/js.js:865 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:866 +#: js/js.js:877 msgid "months ago" msgstr "மாதங்களுக்கு முன்" -#: js/js.js:867 +#: js/js.js:878 msgid "last year" msgstr "கடந்த வருடம்" -#: js/js.js:868 +#: js/js.js:879 msgid "years ago" msgstr "வருடங்களுக்கு முன்" diff --git a/l10n/ta_LK/files.po b/l10n/ta_LK/files.po index 4805f314f21..2677f36e594 100644 --- a/l10n/ta_LK/files.po +++ b/l10n/ta_LK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-11 13:31-0500\n" -"PO-Revision-Date: 2013-12-09 12:00+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "பகிர்வு" diff --git a/l10n/ta_LK/lib.po b/l10n/ta_LK/lib.po index 89caac8deb5..0a623df524a 100644 --- a/l10n/ta_LK/lib.po +++ b/l10n/ta_LK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -53,15 +53,15 @@ msgstr "நிர்வாகம்" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "வலைய சேவைகள் உங்களுடைய கட்டுப்பாட்டின் கீழ் உள்ளது" @@ -70,23 +70,23 @@ msgstr "வலைய சேவைகள் உங்களுடைய கட் msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "வீசொலிப் பூட்டு பதிவிறக்கம் நிறுத்தப்பட்டுள்ளது." -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "கோப்புகள்ஒன்றன் பின் ஒன்றாக பதிவிறக்கப்படவேண்டும்." -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "கோப்புகளுக்கு செல்க" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "வீ சொலிக் கோப்புகளை உருவாக்குவதற்கு தெரிவுசெய்யப்பட்ட கோப்புகள் மிகப்பெரியவை" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "உரை" msgid "Images" msgstr "படங்கள்" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -331,7 +331,3 @@ msgstr "கடந்த வருடம்" #: private/template/functions.php:142 msgid "years ago" msgstr "வருடங்களுக்கு முன்" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/ta_LK/user_ldap.po b/l10n/ta_LK/user_ldap.po index 85d0458d525..d30912db7e6 100644 --- a/l10n/ta_LK/user_ldap.po +++ b/l10n/ta_LK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." @@ -86,43 +86,43 @@ msgstr "" msgid "Error" msgstr "வழு" -#: js/settings.js:777 +#: js/settings.js:837 msgid "Configuration OK" msgstr "" -#: js/settings.js:786 +#: js/settings.js:846 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:795 +#: js/settings.js:855 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:872 js/settings.js:881 msgid "Select groups" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:875 js/settings.js:884 msgid "Select object classes" msgstr "" -#: js/settings.js:818 +#: js/settings.js:878 msgid "Select attributes" msgstr "" -#: js/settings.js:845 +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:852 +#: js/settings.js:912 msgid "Connection test failed" msgstr "" -#: js/settings.js:861 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:862 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "" @@ -140,11 +140,11 @@ msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:778 lib/wizard.php:790 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:952 +#: lib/wizard.php:951 msgid "Could not find the desired feature" msgstr "" diff --git a/l10n/te/core.po b/l10n/te/core.po index cd68de4d8d2..4ba4480ce1c 100644 --- a/l10n/te/core.po +++ b/l10n/te/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -148,59 +148,59 @@ msgstr "నవంబర్" msgid "December" msgstr "డిసెంబర్" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "అమరికలు" -#: js/js.js:858 +#: js/js.js:869 msgid "seconds ago" msgstr "క్షణాల క్రితం" -#: js/js.js:859 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:860 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:861 +#: js/js.js:872 msgid "today" msgstr "ఈరోజు" -#: js/js.js:862 +#: js/js.js:873 msgid "yesterday" msgstr "నిన్న" -#: js/js.js:863 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:864 +#: js/js.js:875 msgid "last month" msgstr "పోయిన నెల" -#: js/js.js:865 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:866 +#: js/js.js:877 msgid "months ago" msgstr "నెలల క్రితం" -#: js/js.js:867 +#: js/js.js:878 msgid "last year" msgstr "పోయిన సంవత్సరం" -#: js/js.js:868 +#: js/js.js:879 msgid "years ago" msgstr "సంవత్సరాల క్రితం" diff --git a/l10n/te/files.po b/l10n/te/files.po index 15e92bbce15..f1746363e68 100644 --- a/l10n/te/files.po +++ b/l10n/te/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "" diff --git a/l10n/te/lib.po b/l10n/te/lib.po index 48589c9c611..3490c68acb2 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -53,15 +53,15 @@ msgstr "" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "" @@ -70,23 +70,23 @@ msgstr "" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "" msgid "Images" msgstr "" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -331,7 +331,3 @@ msgstr "పోయిన సంవత్సరం" #: private/template/functions.php:142 msgid "years ago" msgstr "సంవత్సరాల క్రితం" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/te/user_ldap.po b/l10n/te/user_ldap.po index 61d64edef70..8aa5f5df8bd 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." @@ -86,43 +86,43 @@ msgstr "" msgid "Error" msgstr "పొరపాటు" -#: js/settings.js:777 +#: js/settings.js:837 msgid "Configuration OK" msgstr "" -#: js/settings.js:786 +#: js/settings.js:846 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:795 +#: js/settings.js:855 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:872 js/settings.js:881 msgid "Select groups" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:875 js/settings.js:884 msgid "Select object classes" msgstr "" -#: js/settings.js:818 +#: js/settings.js:878 msgid "Select attributes" msgstr "" -#: js/settings.js:845 +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:852 +#: js/settings.js:912 msgid "Connection test failed" msgstr "" -#: js/settings.js:861 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:862 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "" @@ -140,11 +140,11 @@ msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:778 lib/wizard.php:790 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:952 +#: lib/wizard.php:951 msgid "Could not find the desired feature" msgstr "" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index d951932bfe9..e1e89d47f60 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-13 14:43-0500\n" +"POT-Creation-Date: 2014-01-04 01:55-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -149,59 +149,59 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:394 +#: js/js.js:398 msgid "Settings" msgstr "" -#: js/js.js:865 +#: js/js.js:869 msgid "seconds ago" msgstr "" -#: js/js.js:866 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:867 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:868 +#: js/js.js:872 msgid "today" msgstr "" -#: js/js.js:869 +#: js/js.js:873 msgid "yesterday" msgstr "" -#: js/js.js:870 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:871 +#: js/js.js:875 msgid "last month" msgstr "" -#: js/js.js:872 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:873 +#: js/js.js:877 msgid "months ago" msgstr "" -#: js/js.js:874 +#: js/js.js:878 msgid "last year" msgstr "" -#: js/js.js:875 +#: js/js.js:879 msgid "years ago" msgstr "" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index ea63cca03d9..d080d1b8b41 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-13 14:43-0500\n" +"POT-Creation-Date: 2014-01-04 01:55-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 20c980928a7..ca22a696b3d 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-13 14:43-0500\n" +"POT-Creation-Date: 2014-01-04 01:55-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -78,18 +78,18 @@ msgid "" "Unknown error please check your system settings or contact your administrator" msgstr "" -#: hooks/hooks.php:59 +#: hooks/hooks.php:62 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:60 +#: hooks/hooks.php:63 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now, " "the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:278 +#: hooks/hooks.php:281 msgid "Following users are not set up for encryption:" msgstr "" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 5d210b83655..eb5ad7eb591 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-13 14:43-0500\n" +"POT-Creation-Date: 2014-01-04 01:55-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 17c8e04e0ab..2339525931b 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-13 14:43-0500\n" +"POT-Creation-Date: 2014-01-04 01:55-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index 88425c85c87..f04c0e1799a 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-13 14:43-0500\n" +"POT-Creation-Date: 2014-01-04 01:55-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -55,6 +55,6 @@ msgstr "" msgid "Delete" msgstr "" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 767a83f45b9..9f55f236842 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-13 14:43-0500\n" +"POT-Creation-Date: 2014-01-04 01:55-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 7c88cd9afad..8eeae863748 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-13 14:43-0500\n" +"POT-Creation-Date: 2014-01-04 01:55-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -18,38 +18,38 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" -#: private/app.php:243 +#: private/app.php:245 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version " "of ownCloud." msgstr "" -#: private/app.php:255 +#: private/app.php:257 msgid "No app name specified" msgstr "" -#: private/app.php:360 +#: private/app.php:362 msgid "Help" msgstr "" -#: private/app.php:373 +#: private/app.php:375 msgid "Personal" msgstr "" -#: private/app.php:384 +#: private/app.php:386 msgid "Settings" msgstr "" -#: private/app.php:396 +#: private/app.php:398 msgid "Users" msgstr "" -#: private/app.php:409 +#: private/app.php:411 msgid "Admin" msgstr "" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -332,7 +332,3 @@ msgstr "" #: private/template/functions.php:142 msgid "years ago" msgstr "" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/templates/private.pot b/l10n/templates/private.pot index 2b04e173cda..a09971691c9 100644 --- a/l10n/templates/private.pot +++ b/l10n/templates/private.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-13 14:43-0500\n" +"POT-Creation-Date: 2014-01-04 01:55-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -18,38 +18,38 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" -#: app.php:243 +#: app.php:245 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version " "of ownCloud." msgstr "" -#: app.php:255 +#: app.php:257 msgid "No app name specified" msgstr "" -#: app.php:360 +#: app.php:362 msgid "Help" msgstr "" -#: app.php:373 +#: app.php:375 msgid "Personal" msgstr "" -#: app.php:384 +#: app.php:386 msgid "Settings" msgstr "" -#: app.php:396 +#: app.php:398 msgid "Users" msgstr "" -#: app.php:409 +#: app.php:411 msgid "Admin" msgstr "" -#: app.php:873 +#: app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -325,7 +325,3 @@ msgstr "" #: template/functions.php:142 msgid "years ago" msgstr "" - -#: template.php:297 -msgid "Caused by:" -msgstr "" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 5c4dc2c86e8..96a4271f403 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-13 14:43-0500\n" +"POT-Creation-Date: 2014-01-04 01:55-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index db1cf7c6d7c..bbaed7c634a 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-13 14:43-0500\n" +"POT-Creation-Date: 2014-01-04 01:55-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index f1a6b5288bc..dbad212c026 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-13 14:43-0500\n" +"POT-Creation-Date: 2014-01-04 01:55-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/th_TH/core.po b/l10n/th_TH/core.po index 7576103d0cd..0539d2cd293 100644 --- a/l10n/th_TH/core.po +++ b/l10n/th_TH/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -148,55 +148,55 @@ msgstr "พฤศจิกายน" msgid "December" msgstr "ธันวาคม" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "ตั้งค่า" -#: js/js.js:858 +#: js/js.js:869 msgid "seconds ago" msgstr "วินาที ก่อนหน้านี้" -#: js/js.js:859 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:860 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:861 +#: js/js.js:872 msgid "today" msgstr "วันนี้" -#: js/js.js:862 +#: js/js.js:873 msgid "yesterday" msgstr "เมื่อวานนี้" -#: js/js.js:863 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:864 +#: js/js.js:875 msgid "last month" msgstr "เดือนที่แล้ว" -#: js/js.js:865 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:866 +#: js/js.js:877 msgid "months ago" msgstr "เดือน ที่ผ่านมา" -#: js/js.js:867 +#: js/js.js:878 msgid "last year" msgstr "ปีที่แล้ว" -#: js/js.js:868 +#: js/js.js:879 msgid "years ago" msgstr "ปี ที่ผ่านมา" diff --git a/l10n/th_TH/files.po b/l10n/th_TH/files.po index bc471067719..f0b7289c8d8 100644 --- a/l10n/th_TH/files.po +++ b/l10n/th_TH/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-11 13:31-0500\n" -"PO-Revision-Date: 2013-12-09 12:00+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "แชร์" diff --git a/l10n/th_TH/lib.po b/l10n/th_TH/lib.po index 7da12a80c01..62f6738438e 100644 --- a/l10n/th_TH/lib.po +++ b/l10n/th_TH/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -53,15 +53,15 @@ msgstr "ผู้ดูแล" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "เว็บเซอร์วิสที่คุณควบคุมการใช้งานได้" @@ -70,23 +70,23 @@ msgstr "เว็บเซอร์วิสที่คุณควบคุม msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "คุณสมบัติการดาวน์โหลด zip ถูกปิดการใช้งานไว้" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "ไฟล์สามารถดาวน์โหลดได้ทีละครั้งเท่านั้น" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "กลับไปที่ไฟล์" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "ไฟล์ที่เลือกมีขนาดใหญ่เกินกว่าที่จะสร้างเป็นไฟล์ zip" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "ข้อความ" msgid "Images" msgstr "รูปภาพ" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -327,7 +327,3 @@ msgstr "ปีที่แล้ว" #: private/template/functions.php:142 msgid "years ago" msgstr "ปี ที่ผ่านมา" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/th_TH/user_ldap.po b/l10n/th_TH/user_ldap.po index 173254108f7..084d3ca8bdc 100644 --- a/l10n/th_TH/user_ldap.po +++ b/l10n/th_TH/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "การลบการกำหนดค่าเซิร์ฟเวอร์ล้มเหลว" -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "การกำหนดค่าถูกต้องและการเชื่อมต่อสามารถเชื่อมต่อได้!" -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "การกำหนดค่าถูกต้อง, แต่การผูกข้อมูลล้มเหลว, กรุณาตรวจสอบการตั้งค่าเซิร์ฟเวอร์และข้อมูลการเข้าใช้งาน" -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." @@ -86,43 +86,43 @@ msgstr "เสร็จสิ้น" msgid "Error" msgstr "ข้อผิดพลาด" -#: js/settings.js:777 +#: js/settings.js:837 msgid "Configuration OK" msgstr "" -#: js/settings.js:786 +#: js/settings.js:846 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:795 +#: js/settings.js:855 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:872 js/settings.js:881 msgid "Select groups" msgstr "เลือกกลุ่ม" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:875 js/settings.js:884 msgid "Select object classes" msgstr "" -#: js/settings.js:818 +#: js/settings.js:878 msgid "Select attributes" msgstr "" -#: js/settings.js:845 +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "ทดสอบการเชื่อมต่อสำเร็จ" -#: js/settings.js:852 +#: js/settings.js:912 msgid "Connection test failed" msgstr "ทดสอบการเชื่อมต่อล้มเหลว" -#: js/settings.js:861 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "คุณแน่ใจแล้วหรือว่าต้องการลบการกำหนดค่าเซิร์ฟเวอร์ปัจจุบันทิ้งไป?" -#: js/settings.js:862 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "ยืนยันการลบทิ้ง" @@ -138,11 +138,11 @@ msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:778 lib/wizard.php:790 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:952 +#: lib/wizard.php:951 msgid "Could not find the desired feature" msgstr "" diff --git a/l10n/tr/core.po b/l10n/tr/core.po index 3ab23eb179a..50bf2d71013 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-11 13:31-0500\n" -"PO-Revision-Date: 2013-12-11 18:00+0000\n" +"POT-Creation-Date: 2014-01-02 01:55-0500\n" +"PO-Revision-Date: 2013-12-31 15:20+0000\n" "Last-Translator: volkangezer <volkangezer@gmail.com>\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -152,59 +152,59 @@ msgstr "Kasım" msgid "December" msgstr "Aralık" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Ayarlar" -#: js/js.js:858 +#: js/js.js:869 msgid "seconds ago" msgstr "saniye önce" -#: js/js.js:859 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n dakika önce" msgstr[1] "%n dakika önce" -#: js/js.js:860 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n saat önce" msgstr[1] "%n saat önce" -#: js/js.js:861 +#: js/js.js:872 msgid "today" msgstr "bugün" -#: js/js.js:862 +#: js/js.js:873 msgid "yesterday" msgstr "dün" -#: js/js.js:863 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n gün önce" msgstr[1] "%n gün önce" -#: js/js.js:864 +#: js/js.js:875 msgid "last month" msgstr "geçen ay" -#: js/js.js:865 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n ay önce" msgstr[1] "%n ay önce" -#: js/js.js:866 +#: js/js.js:877 msgid "months ago" msgstr "ay önce" -#: js/js.js:867 +#: js/js.js:878 msgid "last year" msgstr "geçen yıl" -#: js/js.js:868 +#: js/js.js:879 msgid "years ago" msgstr "yıl önce" @@ -467,7 +467,7 @@ msgstr "%s parola sıfırlama" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "Bu bağlantıyı kullanarak parolanızı sıfırlayın: {link}" +msgstr "Parolanızı sıfırlamak için bu bağlantıyı kullanın: {link}" #: lostpassword/templates/lostpassword.php:7 msgid "" diff --git a/l10n/tr/files.po b/l10n/tr/files.po index 692896f263a..89f82eb48b5 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-13 14:43-0500\n" -"PO-Revision-Date: 2013-12-13 19:00+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2014-01-02 01:55-0500\n" +"PO-Revision-Date: 2013-12-31 15:40+0000\n" +"Last-Translator: volkangezer <volkangezer@gmail.com>\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -50,12 +50,17 @@ msgstr "%s ismi zaten %s klasöründe kullanılıyor. Lütfen farklı bir isim s msgid "Not a valid source" msgstr "Geçerli bir kaynak değil" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "Sunucunun adresleri açma izi yok, lütfen sunucu yapılandırmasını denetleyin" + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" msgstr "%s, %s içine indirilirken hata" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "Dosya oluşturulurken hata" @@ -175,6 +180,10 @@ msgstr "Dosya oluşturulamadı" msgid "Could not create folder" msgstr "Klasör oluşturulamadı" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "Adres getirilirken hata" + #: js/fileactions.js:125 msgid "Share" msgstr "Paylaş" @@ -241,7 +250,7 @@ msgstr "Geçersiz isim, '\\', '/', '<', '>', ':', '\"', '|', '?' ve '*' karakter #: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" -msgstr "Depolama alanınız dolu, artık dosyalar güncellenmeyecek yada senkronizasyon edilmeyecek." +msgstr "Depolama alanınız dolu, artık dosyalar güncellenmeyecek veya eşitlenmeyecek." #: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" @@ -264,7 +273,7 @@ msgstr "Şifreleme Uygulaması için geçersiz özel anahtar. Lütfen şifreli d msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." -msgstr "Şifreleme işlemi durduruldu ancak dosyalarınız şifreli. Dosyalarınızın şifresini kaldırmak için lütfen kişisel ayarlar kısmına geçiniz." +msgstr "Şifreleme işlemi durduruldu ancak dosyalarınız şifreli. Dosyalarınızın şifresini kaldırmak için lütfen kişisel ayarlar kısmına geçin." #: js/files.js:349 msgid "" @@ -323,7 +332,7 @@ msgstr "Çoklu dosya ve dizin indirmesi için gerekli." #: templates/admin.php:17 msgid "Enable ZIP-download" -msgstr "ZIP indirmeyi aktif et" +msgstr "ZIP indirmeyi etkinleştir" #: templates/admin.php:20 msgid "0 is unlimited" @@ -331,7 +340,7 @@ msgstr "0 limitsiz demektir" #: templates/admin.php:22 msgid "Maximum input size for ZIP files" -msgstr "ZIP dosyaları için en fazla girdi sayısı" +msgstr "ZIP dosyaları için en fazla girdi boyutu" #: templates/admin.php:26 msgid "Save" diff --git a/l10n/tr/lib.po b/l10n/tr/lib.po index 015a245792b..8aef1c95bbc 100644 --- a/l10n/tr/lib.po +++ b/l10n/tr/lib.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-02 17:27-0500\n" -"PO-Revision-Date: 2013-11-30 01:40+0000\n" +"POT-Creation-Date: 2014-01-02 01:55-0500\n" +"PO-Revision-Date: 2013-12-31 15:40+0000\n" "Last-Translator: volkangezer <volkangezer@gmail.com>\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -21,38 +21,38 @@ msgstr "" "Language: tr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: private/app.php:243 +#: private/app.php:245 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "ownCloud yazılımının bu sürümü ile uyumlu olmadığı için \"%s\" uygulaması kurulamaz." -#: private/app.php:255 +#: private/app.php:257 msgid "No app name specified" msgstr "Uygulama adı belirtimedli" -#: private/app.php:360 +#: private/app.php:362 msgid "Help" msgstr "Yardım" -#: private/app.php:373 +#: private/app.php:375 msgid "Personal" msgstr "Kişisel" -#: private/app.php:384 +#: private/app.php:386 msgid "Settings" msgstr "Ayarlar" -#: private/app.php:396 +#: private/app.php:398 msgid "Users" msgstr "Kullanıcılar" -#: private/app.php:409 +#: private/app.php:411 msgid "Admin" msgstr "Yönetici" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "\"%s\" yükseltme başarısız oldu." @@ -74,23 +74,23 @@ msgstr "Bilgileriniz güvenli ve şifreli" msgid "cannot open \"%s\"" msgstr "\"%s\" açılamıyor" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." -msgstr "ZIP indirmeleri kapatılmıştır." +msgstr "ZIP indirmeleri kapatıldı." -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Dosyaların birer birer indirilmesi gerekmektedir." -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Dosyalara dön" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." -msgstr "Seçilen dosyalar bir zip dosyası oluşturmak için fazla büyüktür." +msgstr "Seçilen dosyalar bir zip dosyası oluşturmak için fazla büyük." -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -106,7 +106,7 @@ msgstr "Uygulama kuruluyorken http'de href belirtilmedi" #: private/installer.php:75 msgid "No path specified when installing app from local file" -msgstr "Uygulama yerel dosyadan kuruluyorken dosya yolu belirtilmedi" +msgstr "Uygulama yerel dosyadan kurulurken dosya yolu belirtilmedi" #: private/installer.php:89 #, php-format @@ -176,17 +176,17 @@ msgstr "Metin" msgid "Images" msgstr "Resimler" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s veritabanı kullanıcı adını girin." -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s veritabanı adını girin." -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s veritabanı adında nokta kullanamayabilirsiniz" @@ -207,11 +207,11 @@ msgid "MySQL username and/or password not valid" msgstr "MySQL kullanıcı adı ve/veya parolası geçerli değil" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -219,10 +219,10 @@ msgid "DB Error: \"%s\"" msgstr "DB Hata: ''%s''" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -255,7 +255,7 @@ msgstr "Oracle bağlantısı kurulamadı" msgid "Oracle username and/or password not valid" msgstr "Adi klullanici ve/veya parola Oracle mantikli değildir. " -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Hatalı komut: \"%s\", ad: %s, parola: %s" @@ -335,7 +335,3 @@ msgstr "geçen yıl" #: private/template/functions.php:142 msgid "years ago" msgstr "yıl önce" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "Neden olan:" diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index 18ac6b88557..32ed182dcfd 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -6,13 +6,13 @@ # DeeJaVu <ddejjavvu@gmail.com>, 2013 # ismail yenigül <ismail.yenigul@surgate.com>, 2013 # tridinebandim, 2013 -# volkangezer <volkangezer@gmail.com>, 2013 +# volkangezer <volkangezer@gmail.com>, 2013-2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-11 13:31-0500\n" -"PO-Revision-Date: 2013-12-11 18:00+0000\n" +"POT-Creation-Date: 2014-01-04 01:55-0500\n" +"PO-Revision-Date: 2014-01-03 14:10+0000\n" "Last-Translator: volkangezer <volkangezer@gmail.com>\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -244,7 +244,7 @@ msgstr "Sadece ölümcül konular" #: templates/admin.php:22 templates/admin.php:36 msgid "Security Warning" -msgstr "Güvenlik Uyarisi" +msgstr "Güvenlik Uyarısı" #: templates/admin.php:25 #, php-format @@ -389,7 +389,7 @@ msgstr "Kullanıcıların kendileri ile paylaşılan ögeleri yeniden paylaşmas #: templates/admin.php:203 msgid "Allow users to share with anyone" -msgstr "Kullanıcıların herşeyi paylaşmalarına izin ver" +msgstr "Kullanıcıların her şeyi paylaşmalarına izin ver" #: templates/admin.php:206 msgid "Allow users to only share with users in their groups" @@ -425,7 +425,7 @@ msgstr "SSL zorlamasını etkinleştirmek ya da devre dışı bırakmak için l #: templates/admin.php:254 msgid "Log" -msgstr "Kayıtlar" +msgstr "Günlük" #: templates/admin.php:255 msgid "Log level" @@ -508,7 +508,7 @@ msgstr "İlk Çalıştırma Sihirbazını yeniden göster" #: templates/personal.php:27 #, php-format msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>" -msgstr "Kullandığınız: <strong>%s</strong>. Seçilebilecekler: <strong>%s</strong>" +msgstr "Kullandığınız: <strong>%s</strong>. Kullanılabilir alan: <strong>%s</strong>" #: templates/personal.php:39 templates/users.php:23 templates/users.php:89 msgid "Password" @@ -540,7 +540,7 @@ msgstr "Tam Adı" #: templates/personal.php:73 msgid "Email" -msgstr "Eposta" +msgstr "E-posta" #: templates/personal.php:75 msgid "Your email address" @@ -548,7 +548,7 @@ msgstr "E-posta adresiniz" #: templates/personal.php:76 msgid "Fill in an email address to enable password recovery" -msgstr "Parola kurtarmayı etkinleştirmek için bir eposta adresi girin" +msgstr "Parola kurtarmayı etkinleştirmek için bir e-posta adresi girin" #: templates/personal.php:86 msgid "Profile picture" @@ -615,7 +615,7 @@ msgstr "Oturum açma parolası" #: templates/personal.php:163 msgid "Decrypt all Files" -msgstr "Tüm dosyaların şifresini çözme" +msgstr "Tüm dosyaların şifresini çöz" #: templates/users.php:21 msgid "Login Name" diff --git a/l10n/tr/user_ldap.po b/l10n/tr/user_ldap.po index 5bfb9a27254..1a6e57acd86 100644 --- a/l10n/tr/user_ldap.po +++ b/l10n/tr/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-02 17:27-0500\n" -"PO-Revision-Date: 2013-11-30 01:50+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: volkangezer <volkangezer@gmail.com>\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -28,17 +28,17 @@ msgstr "Eşleştirmeler temizlenirken hata oluştu." msgid "Failed to delete the server configuration" msgstr "Sunucu yapılandırmasını silme başarısız oldu" -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "Yapılandırma geçerli ve bağlantı kuruldu!" -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "Yapılandırma geçerli fakat bağlama (bind) başarısız. Lütfen Sunucu ayarları ve kimlik bilgilerini kontrol edin." -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." @@ -89,43 +89,43 @@ msgstr "Başarılı" msgid "Error" msgstr "Hata" -#: js/settings.js:777 +#: js/settings.js:837 msgid "Configuration OK" msgstr "Yapılandırma tamam" -#: js/settings.js:786 +#: js/settings.js:846 msgid "Configuration incorrect" msgstr "Yapılandırma geçersiz" -#: js/settings.js:795 +#: js/settings.js:855 msgid "Configuration incomplete" msgstr "Yapılandırma tamamlanmamış" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:872 js/settings.js:881 msgid "Select groups" msgstr "Grupları seç" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:875 js/settings.js:884 msgid "Select object classes" msgstr "Nesne sınıflarını seç" -#: js/settings.js:818 +#: js/settings.js:878 msgid "Select attributes" msgstr "Nitelikleri seç" -#: js/settings.js:845 +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "Bağlantı testi başarılı oldu" -#: js/settings.js:852 +#: js/settings.js:912 msgid "Connection test failed" msgstr "Bağlantı testi başarısız oldu" -#: js/settings.js:861 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "Şu anki sunucu yapılandırmasını silmek istediğinizden emin misiniz?" -#: js/settings.js:862 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "Silmeyi onayla" @@ -143,11 +143,11 @@ msgid_plural "%s users found" msgstr[0] "%s kullanıcı bulundu" msgstr[1] "%s kullanıcı bulundu" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:778 lib/wizard.php:790 msgid "Invalid Host" msgstr "Geçersiz Makine" -#: lib/wizard.php:952 +#: lib/wizard.php:951 msgid "Could not find the desired feature" msgstr "İstenen özellik bulunamadı" diff --git a/l10n/tzm/files.po b/l10n/tzm/files.po index f901831c513..86d9e057db0 100644 --- a/l10n/tzm/files.po +++ b/l10n/tzm/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" +"POT-Creation-Date: 2013-12-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06:55+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Central Atlas Tamazight (http://www.transifex.com/projects/p/owncloud/language/tzm/)\n" "MIME-Version: 1.0\n" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "" diff --git a/l10n/tzm/lib.po b/l10n/tzm/lib.po index b9e60cfdc09..643ca395d12 100644 --- a/l10n/tzm/lib.po +++ b/l10n/tzm/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Central Atlas Tamazight (http://www.transifex.com/projects/p/owncloud/language/tzm/)\n" "MIME-Version: 1.0\n" @@ -53,15 +53,15 @@ msgstr "" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "" @@ -70,23 +70,23 @@ msgstr "" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "" msgid "Images" msgstr "" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -331,7 +331,3 @@ msgstr "" #: private/template/functions.php:142 msgid "years ago" msgstr "" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/ug/core.po b/l10n/ug/core.po index 3ed7970f07c..9de922dadc6 100644 --- a/l10n/ug/core.po +++ b/l10n/ug/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" @@ -148,55 +148,55 @@ msgstr "ئوغلاق" msgid "December" msgstr "كۆنەك" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "تەڭشەكلەر" -#: js/js.js:858 +#: js/js.js:869 msgid "seconds ago" msgstr "" -#: js/js.js:859 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:860 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:861 +#: js/js.js:872 msgid "today" msgstr "بۈگۈن" -#: js/js.js:862 +#: js/js.js:873 msgid "yesterday" msgstr "تۈنۈگۈن" -#: js/js.js:863 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:864 +#: js/js.js:875 msgid "last month" msgstr "" -#: js/js.js:865 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:866 +#: js/js.js:877 msgid "months ago" msgstr "" -#: js/js.js:867 +#: js/js.js:878 msgid "last year" msgstr "" -#: js/js.js:868 +#: js/js.js:879 msgid "years ago" msgstr "" diff --git a/l10n/ug/files.po b/l10n/ug/files.po index 5a690ae7424..d5102679758 100644 --- a/l10n/ug/files.po +++ b/l10n/ug/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "ھەمبەھىر" diff --git a/l10n/ug/lib.po b/l10n/ug/lib.po index 6568520d29d..92d05caf931 100644 --- a/l10n/ug/lib.po +++ b/l10n/ug/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" @@ -53,15 +53,15 @@ msgstr "" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "" @@ -70,23 +70,23 @@ msgstr "" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "قىسقا ئۇچۇر" msgid "Images" msgstr "سۈرەتلەر" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -327,7 +327,3 @@ msgstr "" #: private/template/functions.php:142 msgid "years ago" msgstr "" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/ug/user_ldap.po b/l10n/ug/user_ldap.po index bb6848178cd..781e2e7cbbe 100644 --- a/l10n/ug/user_ldap.po +++ b/l10n/ug/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." @@ -86,43 +86,43 @@ msgstr "" msgid "Error" msgstr "خاتالىق" -#: js/settings.js:777 +#: js/settings.js:837 msgid "Configuration OK" msgstr "" -#: js/settings.js:786 +#: js/settings.js:846 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:795 +#: js/settings.js:855 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:872 js/settings.js:881 msgid "Select groups" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:875 js/settings.js:884 msgid "Select object classes" msgstr "" -#: js/settings.js:818 +#: js/settings.js:878 msgid "Select attributes" msgstr "" -#: js/settings.js:845 +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:852 +#: js/settings.js:912 msgid "Connection test failed" msgstr "" -#: js/settings.js:861 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:862 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "" @@ -138,11 +138,11 @@ msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:778 lib/wizard.php:790 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:952 +#: lib/wizard.php:951 msgid "Could not find the desired feature" msgstr "" diff --git a/l10n/uk/core.po b/l10n/uk/core.po index 060abfb8daf..dd19baeb3b9 100644 --- a/l10n/uk/core.po +++ b/l10n/uk/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -149,63 +149,63 @@ msgstr "Листопад" msgid "December" msgstr "Грудень" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Налаштування" -#: js/js.js:858 +#: js/js.js:869 msgid "seconds ago" msgstr "секунди тому" -#: js/js.js:859 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n хвилину тому" msgstr[1] "%n хвилини тому" msgstr[2] "%n хвилин тому" -#: js/js.js:860 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n годину тому" msgstr[1] "%n години тому" msgstr[2] "%n годин тому" -#: js/js.js:861 +#: js/js.js:872 msgid "today" msgstr "сьогодні" -#: js/js.js:862 +#: js/js.js:873 msgid "yesterday" msgstr "вчора" -#: js/js.js:863 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n день тому" msgstr[1] "%n дні тому" msgstr[2] "%n днів тому" -#: js/js.js:864 +#: js/js.js:875 msgid "last month" msgstr "минулого місяця" -#: js/js.js:865 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n місяць тому" msgstr[1] "%n місяці тому" msgstr[2] "%n місяців тому" -#: js/js.js:866 +#: js/js.js:877 msgid "months ago" msgstr "місяці тому" -#: js/js.js:867 +#: js/js.js:878 msgid "last year" msgstr "минулого року" -#: js/js.js:868 +#: js/js.js:879 msgid "years ago" msgstr "роки тому" diff --git a/l10n/uk/files.po b/l10n/uk/files.po index 8857990f04b..61871c27be1 100644 --- a/l10n/uk/files.po +++ b/l10n/uk/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-11 13:31-0500\n" -"PO-Revision-Date: 2013-12-09 12:00+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -47,12 +47,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -172,6 +177,10 @@ msgstr "Не вдалося створити файл" msgid "Could not create folder" msgstr "Не вдалося створити теку" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "Поділитися" diff --git a/l10n/uk/lib.po b/l10n/uk/lib.po index 3fa79218bb9..09e55936d2d 100644 --- a/l10n/uk/lib.po +++ b/l10n/uk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-03 13:30+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -70,23 +70,23 @@ msgstr "підконтрольні Вам веб-сервіси" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "ZIP завантаження вимкнено." -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Файли повинні бути завантаженні послідовно." -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Повернутися до файлів" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Вибрані фали завеликі для генерування zip файлу." -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -335,7 +335,3 @@ msgstr "минулого року" #: private/template/functions.php:142 msgid "years ago" msgstr "роки тому" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/uk/user_ldap.po b/l10n/uk/user_ldap.po index 899d00f6e84..4077c9fcbfc 100644 --- a/l10n/uk/user_ldap.po +++ b/l10n/uk/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-03 13:20+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 97718e9526f..c91328a17a9 100644 --- a/l10n/ur_PK/core.po +++ b/l10n/ur_PK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -148,59 +148,59 @@ msgstr "نومبر" msgid "December" msgstr "دسمبر" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "سیٹینگز" -#: js/js.js:858 +#: js/js.js:869 msgid "seconds ago" msgstr "" -#: js/js.js:859 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:860 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:861 +#: js/js.js:872 msgid "today" msgstr "" -#: js/js.js:862 +#: js/js.js:873 msgid "yesterday" msgstr "" -#: js/js.js:863 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:864 +#: js/js.js:875 msgid "last month" msgstr "" -#: js/js.js:865 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:866 +#: js/js.js:877 msgid "months ago" msgstr "" -#: js/js.js:867 +#: js/js.js:878 msgid "last year" msgstr "" -#: js/js.js:868 +#: js/js.js:879 msgid "years ago" msgstr "" diff --git a/l10n/ur_PK/files.po b/l10n/ur_PK/files.po index 1cf4617728d..53afc26e545 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" +"POT-Creation-Date: 2013-12-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06:55+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "" diff --git a/l10n/ur_PK/lib.po b/l10n/ur_PK/lib.po index 63997263978..68279cb5bfd 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -53,15 +53,15 @@ msgstr "ایڈمن" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "آپ کے اختیار میں ویب سروسیز" @@ -70,23 +70,23 @@ msgstr "آپ کے اختیار میں ویب سروسیز" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "" msgid "Images" msgstr "" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -331,7 +331,3 @@ msgstr "" #: private/template/functions.php:142 msgid "years ago" msgstr "" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/uz/files.po b/l10n/uz/files.po index e4110e2b334..4e49c02a55b 100644 --- a/l10n/uz/files.po +++ b/l10n/uz/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" +"POT-Creation-Date: 2013-12-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06:55+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Uzbek (http://www.transifex.com/projects/p/owncloud/language/uz/)\n" "MIME-Version: 1.0\n" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "" diff --git a/l10n/uz/lib.po b/l10n/uz/lib.po index d013e234e19..185fc1265c8 100644 --- a/l10n/uz/lib.po +++ b/l10n/uz/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Uzbek (http://www.transifex.com/projects/p/owncloud/language/uz/)\n" "MIME-Version: 1.0\n" @@ -53,15 +53,15 @@ msgstr "" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "" @@ -70,23 +70,23 @@ msgstr "" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "" msgid "Images" msgstr "" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -327,7 +327,3 @@ msgstr "" #: private/template/functions.php:142 msgid "years ago" msgstr "" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/vi/core.po b/l10n/vi/core.po index 3f554aa859e..0c0eabbd17a 100644 --- a/l10n/vi/core.po +++ b/l10n/vi/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -149,55 +149,55 @@ msgstr "Tháng 11" msgid "December" msgstr "Tháng 12" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Cài đặt" -#: js/js.js:858 +#: js/js.js:869 msgid "seconds ago" msgstr "vài giây trước" -#: js/js.js:859 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:860 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:861 +#: js/js.js:872 msgid "today" msgstr "hôm nay" -#: js/js.js:862 +#: js/js.js:873 msgid "yesterday" msgstr "hôm qua" -#: js/js.js:863 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:864 +#: js/js.js:875 msgid "last month" msgstr "tháng trước" -#: js/js.js:865 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:866 +#: js/js.js:877 msgid "months ago" msgstr "tháng trước" -#: js/js.js:867 +#: js/js.js:878 msgid "last year" msgstr "năm trước" -#: js/js.js:868 +#: js/js.js:879 msgid "years ago" msgstr "năm trước" diff --git a/l10n/vi/files.po b/l10n/vi/files.po index c8ccd2734cd..992a497b724 100644 --- a/l10n/vi/files.po +++ b/l10n/vi/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-11 13:31-0500\n" -"PO-Revision-Date: 2013-12-09 12:00+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -47,12 +47,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -172,6 +177,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "Chia sẻ" diff --git a/l10n/vi/lib.po b/l10n/vi/lib.po index 43f748a6216..b91c21cfaa8 100644 --- a/l10n/vi/lib.po +++ b/l10n/vi/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -53,15 +53,15 @@ msgstr "Quản trị" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "dịch vụ web dưới sự kiểm soát của bạn" @@ -70,23 +70,23 @@ msgstr "dịch vụ web dưới sự kiểm soát của bạn" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "Tải về ZIP đã bị tắt." -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Tập tin cần phải được tải về từng người một." -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Trở lại tập tin" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Tập tin được chọn quá lớn để tạo tập tin ZIP." -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "Văn bản" msgid "Images" msgstr "Hình ảnh" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -327,7 +327,3 @@ msgstr "năm trước" #: private/template/functions.php:142 msgid "years ago" msgstr "năm trước" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/vi/user_ldap.po b/l10n/vi/user_ldap.po index 004fc7ecc5c..a5bce417eb7 100644 --- a/l10n/vi/user_ldap.po +++ b/l10n/vi/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." @@ -86,43 +86,43 @@ msgstr "Thành công" msgid "Error" msgstr "Lỗi" -#: js/settings.js:777 +#: js/settings.js:837 msgid "Configuration OK" msgstr "" -#: js/settings.js:786 +#: js/settings.js:846 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:795 +#: js/settings.js:855 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:872 js/settings.js:881 msgid "Select groups" msgstr "Chọn nhóm" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:875 js/settings.js:884 msgid "Select object classes" msgstr "" -#: js/settings.js:818 +#: js/settings.js:878 msgid "Select attributes" msgstr "" -#: js/settings.js:845 +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:852 +#: js/settings.js:912 msgid "Connection test failed" msgstr "" -#: js/settings.js:861 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:862 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "" @@ -138,11 +138,11 @@ msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:778 lib/wizard.php:790 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:952 +#: lib/wizard.php:951 msgid "Could not find the desired feature" msgstr "" diff --git a/l10n/zh_CN/core.po b/l10n/zh_CN/core.po index 1a9293719a7..e5bde42b8b2 100644 --- a/l10n/zh_CN/core.po +++ b/l10n/zh_CN/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -152,55 +152,55 @@ msgstr "十一月" msgid "December" msgstr "十二月" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "设置" -#: js/js.js:858 +#: js/js.js:869 msgid "seconds ago" msgstr "秒前" -#: js/js.js:859 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n 分钟前" -#: js/js.js:860 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n 小时前" -#: js/js.js:861 +#: js/js.js:872 msgid "today" msgstr "今天" -#: js/js.js:862 +#: js/js.js:873 msgid "yesterday" msgstr "昨天" -#: js/js.js:863 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n 天前" -#: js/js.js:864 +#: js/js.js:875 msgid "last month" msgstr "上月" -#: js/js.js:865 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n 月前" -#: js/js.js:866 +#: js/js.js:877 msgid "months ago" msgstr "月前" -#: js/js.js:867 +#: js/js.js:878 msgid "last year" msgstr "去年" -#: js/js.js:868 +#: js/js.js:879 msgid "years ago" msgstr "年前" diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index 356db64472d..102239c828a 100644 --- a/l10n/zh_CN/files.po +++ b/l10n/zh_CN/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-11 13:31-0500\n" -"PO-Revision-Date: 2013-12-09 12:00+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -49,12 +49,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -174,6 +179,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "分享" diff --git a/l10n/zh_CN/lib.po b/l10n/zh_CN/lib.po index 72e710ab4f9..8dd911abea1 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -56,15 +56,15 @@ msgstr "管理" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "未知的文件类型" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "无效的图像" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "您控制的web服务" @@ -73,23 +73,23 @@ msgstr "您控制的web服务" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "ZIP 下载已经关闭" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "需要逐一下载文件" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "回到文件" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "选择的文件太大,无法生成 zip 文件。" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -175,17 +175,17 @@ msgstr "文本" msgid "Images" msgstr "图片" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s 输入数据库用户名。" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s 输入数据库名称。" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s 您不能在数据库名称中使用英文句号。" @@ -206,11 +206,11 @@ msgid "MySQL username and/or password not valid" msgstr "MySQL 数据库用户名和/或密码无效" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -218,10 +218,10 @@ msgid "DB Error: \"%s\"" msgstr "数据库错误:\"%s\"" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -254,7 +254,7 @@ msgstr "不能建立甲骨文连接" msgid "Oracle username and/or password not valid" msgstr "Oracle 数据库用户名和/或密码无效" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "冲突命令为:\"%s\",名称:%s,密码:%s" @@ -330,7 +330,3 @@ msgstr "去年" #: private/template/functions.php:142 msgid "years ago" msgstr "年前" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/zh_CN/user_ldap.po b/l10n/zh_CN/user_ldap.po index f593f28f007..593b32a2372 100644 --- a/l10n/zh_CN/user_ldap.po +++ b/l10n/zh_CN/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -26,17 +26,17 @@ msgstr "清除映射失败。" msgid "Failed to delete the server configuration" msgstr "未能删除服务器配置" -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "配置有效,能够建立连接!" -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "配置有效但绑定失败。请检查服务器设置和认证信息。" -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." @@ -87,43 +87,43 @@ msgstr "成功" msgid "Error" msgstr "错误" -#: js/settings.js:777 +#: js/settings.js:837 msgid "Configuration OK" msgstr "" -#: js/settings.js:786 +#: js/settings.js:846 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:795 +#: js/settings.js:855 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:872 js/settings.js:881 msgid "Select groups" msgstr "选择分组" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:875 js/settings.js:884 msgid "Select object classes" msgstr "" -#: js/settings.js:818 +#: js/settings.js:878 msgid "Select attributes" msgstr "" -#: js/settings.js:845 +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "连接测试成功" -#: js/settings.js:852 +#: js/settings.js:912 msgid "Connection test failed" msgstr "连接测试失败" -#: js/settings.js:861 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "您真的想要删除当前服务器配置吗?" -#: js/settings.js:862 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "确认删除" @@ -139,11 +139,11 @@ msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:778 lib/wizard.php:790 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:952 +#: lib/wizard.php:951 msgid "Could not find the desired feature" msgstr "" diff --git a/l10n/zh_HK/core.po b/l10n/zh_HK/core.po index 087ce28468e..09b9c5cfc6d 100644 --- a/l10n/zh_HK/core.po +++ b/l10n/zh_HK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -148,55 +148,55 @@ msgstr "十一月" msgid "December" msgstr "十二月" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "設定" -#: js/js.js:858 +#: js/js.js:869 msgid "seconds ago" msgstr "" -#: js/js.js:859 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:860 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:861 +#: js/js.js:872 msgid "today" msgstr "今日" -#: js/js.js:862 +#: js/js.js:873 msgid "yesterday" msgstr "昨日" -#: js/js.js:863 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:864 +#: js/js.js:875 msgid "last month" msgstr "前一月" -#: js/js.js:865 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:866 +#: js/js.js:877 msgid "months ago" msgstr "個月之前" -#: js/js.js:867 +#: js/js.js:878 msgid "last year" msgstr "" -#: js/js.js:868 +#: js/js.js:879 msgid "years ago" msgstr "" diff --git a/l10n/zh_HK/files.po b/l10n/zh_HK/files.po index ffa33793d79..cb68c72f40d 100644 --- a/l10n/zh_HK/files.po +++ b/l10n/zh_HK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -46,12 +46,17 @@ msgstr "" msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "" @@ -171,6 +176,10 @@ msgstr "" msgid "Could not create folder" msgstr "" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "分享" diff --git a/l10n/zh_HK/lib.po b/l10n/zh_HK/lib.po index 2909df350ab..752cf5e22c5 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -53,15 +53,15 @@ msgstr "管理" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "" @@ -70,23 +70,23 @@ msgstr "" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -172,17 +172,17 @@ msgstr "文字" msgid "Images" msgstr "" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -327,7 +327,3 @@ msgstr "" #: private/template/functions.php:142 msgid "years ago" msgstr "" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "" diff --git a/l10n/zh_HK/user_ldap.po b/l10n/zh_HK/user_ldap.po index 71a8deb20c6..8ba0903b188 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." @@ -86,43 +86,43 @@ msgstr "成功" msgid "Error" msgstr "錯誤" -#: js/settings.js:777 +#: js/settings.js:837 msgid "Configuration OK" msgstr "" -#: js/settings.js:786 +#: js/settings.js:846 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:795 +#: js/settings.js:855 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:872 js/settings.js:881 msgid "Select groups" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:875 js/settings.js:884 msgid "Select object classes" msgstr "" -#: js/settings.js:818 +#: js/settings.js:878 msgid "Select attributes" msgstr "" -#: js/settings.js:845 +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:852 +#: js/settings.js:912 msgid "Connection test failed" msgstr "" -#: js/settings.js:861 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:862 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "" @@ -138,11 +138,11 @@ msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:778 lib/wizard.php:790 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:952 +#: lib/wizard.php:951 msgid "Could not find the desired feature" msgstr "" diff --git a/l10n/zh_TW/core.po b/l10n/zh_TW/core.po index a184899641b..6477db46c33 100644 --- a/l10n/zh_TW/core.po +++ b/l10n/zh_TW/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -150,55 +150,55 @@ msgstr "十一月" msgid "December" msgstr "十二月" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "設定" -#: js/js.js:858 +#: js/js.js:869 msgid "seconds ago" msgstr "幾秒前" -#: js/js.js:859 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n 分鐘前" -#: js/js.js:860 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n 小時前" -#: js/js.js:861 +#: js/js.js:872 msgid "today" msgstr "今天" -#: js/js.js:862 +#: js/js.js:873 msgid "yesterday" msgstr "昨天" -#: js/js.js:863 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n 天前" -#: js/js.js:864 +#: js/js.js:875 msgid "last month" msgstr "上個月" -#: js/js.js:865 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n 個月前" -#: js/js.js:866 +#: js/js.js:877 msgid "months ago" msgstr "幾個月前" -#: js/js.js:867 +#: js/js.js:878 msgid "last year" msgstr "去年" -#: js/js.js:868 +#: js/js.js:879 msgid "years ago" msgstr "幾年前" diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index d5168264d2f..6ab2b48b568 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-11 13:31-0500\n" -"PO-Revision-Date: 2013-12-09 12:00+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2014-01-04 01:55-0500\n" +"PO-Revision-Date: 2014-01-03 12:00+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" @@ -48,12 +48,17 @@ msgstr "%s 已經被使用於資料夾 %s ,請換一個名字" msgid "Not a valid source" msgstr "不是有效的來源" -#: ajax/newfile.php:94 +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 #, php-format msgid "Error while downloading %s to %s" msgstr "下載 %s 到 %s 失敗" -#: ajax/newfile.php:128 +#: ajax/newfile.php:140 msgid "Error when creating the file" msgstr "建立檔案失敗" @@ -173,6 +178,10 @@ msgstr "無法建立檔案" msgid "Could not create folder" msgstr "無法建立資料夾" +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + #: js/fileactions.js:125 msgid "Share" msgstr "分享" diff --git a/l10n/zh_TW/lib.po b/l10n/zh_TW/lib.po index fe70bec8ba1..00281d2b6d9 100644 --- a/l10n/zh_TW/lib.po +++ b/l10n/zh_TW/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -54,15 +54,15 @@ msgstr "管理" msgid "Failed to upgrade \"%s\"." msgstr "升級失敗:%s" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "未知的檔案類型" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "無效的圖片" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "由您控制的網路服務" @@ -71,23 +71,23 @@ msgstr "由您控制的網路服務" msgid "cannot open \"%s\"" msgstr "無法開啓 %s" -#: private/files.php:228 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "ZIP 下載已關閉。" -#: private/files.php:229 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "檔案需要逐一下載。" -#: private/files.php:230 private/files.php:258 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "回到檔案列表" -#: private/files.php:255 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "選擇的檔案太大以致於無法產生壓縮檔。" -#: private/files.php:256 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." @@ -173,17 +173,17 @@ msgstr "文字" msgid "Images" msgstr "圖片" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s 輸入資料庫使用者名稱。" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s 輸入資料庫名稱。" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s 資料庫名稱不能包含小數點" @@ -204,11 +204,11 @@ msgid "MySQL username and/or password not valid" msgstr "MySQL 用戶名和/或密碼無效" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -216,10 +216,10 @@ msgid "DB Error: \"%s\"" msgstr "資料庫錯誤:\"%s\"" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -252,7 +252,7 @@ msgstr "無法建立 Oracle 資料庫連線" msgid "Oracle username and/or password not valid" msgstr "Oracle 用戶名和/或密碼無效" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "有問題的指令是:\"%s\" ,使用者:\"%s\",密碼:\"%s\"" @@ -328,7 +328,3 @@ msgstr "去年" #: private/template/functions.php:142 msgid "years ago" msgstr "幾年前" - -#: private/template.php:297 public/util.php:108 -msgid "Caused by:" -msgstr "原因:" diff --git a/l10n/zh_TW/user_ldap.po b/l10n/zh_TW/user_ldap.po index 8b1f5099d1f..5eca45754ed 100644 --- a/l10n/zh_TW/user_ldap.po +++ b/l10n/zh_TW/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -27,17 +27,17 @@ msgstr "清除映射失敗" msgid "Failed to delete the server configuration" msgstr "刪除伺服器設定時失敗" -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "設定有效且連線可建立" -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "設定有效但連線無法建立,請檢查伺服器設定與認證資料。" -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." @@ -88,43 +88,43 @@ msgstr "成功" msgid "Error" msgstr "錯誤" -#: js/settings.js:777 +#: js/settings.js:837 msgid "Configuration OK" msgstr "" -#: js/settings.js:786 +#: js/settings.js:846 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:795 +#: js/settings.js:855 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:872 js/settings.js:881 msgid "Select groups" msgstr "選擇群組" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:875 js/settings.js:884 msgid "Select object classes" msgstr "" -#: js/settings.js:818 +#: js/settings.js:878 msgid "Select attributes" msgstr "" -#: js/settings.js:845 +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "連線測試成功" -#: js/settings.js:852 +#: js/settings.js:912 msgid "Connection test failed" msgstr "連線測試失敗" -#: js/settings.js:861 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "您真的要刪除現在的伺服器設定嗎?" -#: js/settings.js:862 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "確認刪除" @@ -140,11 +140,11 @@ msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:778 lib/wizard.php:790 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:952 +#: lib/wizard.php:951 msgid "Could not find the desired feature" msgstr "" diff --git a/lib/l10n/ak.php b/lib/l10n/ak.php new file mode 100644 index 00000000000..4124ad0d880 --- /dev/null +++ b/lib/l10n/ak.php @@ -0,0 +1,8 @@ +<?php +$TRANSLATIONS = array( +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n day go_::_%n days ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("","") +); +$PLURAL_FORMS = "nplurals=2; plural=n > 1;"; diff --git a/lib/l10n/ca.php b/lib/l10n/ca.php index e7250befc2f..4755392d271 100644 --- a/lib/l10n/ca.php +++ b/lib/l10n/ca.php @@ -65,7 +65,6 @@ $TRANSLATIONS = array( "last month" => "el mes passat", "_%n month ago_::_%n months ago_" => array("fa %n mes","fa %n mesos"), "last year" => "l'any passat", -"years ago" => "anys enrere", -"Caused by:" => "Provocat per:" +"years ago" => "anys enrere" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/cs_CZ.php b/lib/l10n/cs_CZ.php index 96d3660c473..df3a47b5ae3 100644 --- a/lib/l10n/cs_CZ.php +++ b/lib/l10n/cs_CZ.php @@ -65,7 +65,6 @@ $TRANSLATIONS = array( "last month" => "minulý měsíc", "_%n month ago_::_%n months ago_" => array("před %n měsícem","před %n měsíci","před %n měsíci"), "last year" => "minulý rok", -"years ago" => "před lety", -"Caused by:" => "Příčina:" +"years ago" => "před lety" ); $PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"; diff --git a/lib/l10n/da.php b/lib/l10n/da.php index f95aa30d7a0..65eb7466b6a 100644 --- a/lib/l10n/da.php +++ b/lib/l10n/da.php @@ -16,6 +16,7 @@ $TRANSLATIONS = array( "Files need to be downloaded one by one." => "Filer skal downloades en for en.", "Back to Files" => "Tilbage til Filer", "Selected files too large to generate zip file." => "De markerede filer er for store til at generere en ZIP-fil.", +"Please download the files separately in smaller chunks or kindly ask your administrator." => "Hent venligst filerne hver for sig i mindre dele eller spørg din administrator.", "No source specified when installing app" => "Ingen kilde angivet under installation af app", "No href specified when installing app from http" => "Ingen href angivet under installation af app via http", "No path specified when installing app from local file" => "Ingen sti angivet under installation af app fra lokal fil", @@ -64,7 +65,6 @@ $TRANSLATIONS = array( "last month" => "sidste måned", "_%n month ago_::_%n months ago_" => array("%n måned siden","%n måneder siden"), "last year" => "sidste år", -"years ago" => "år siden", -"Caused by:" => "Forårsaget af:" +"years ago" => "år siden" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/de.php b/lib/l10n/de.php index 8ee4cb71d30..b1045892fb1 100644 --- a/lib/l10n/de.php +++ b/lib/l10n/de.php @@ -65,7 +65,6 @@ $TRANSLATIONS = array( "last month" => "Letzten Monat", "_%n month ago_::_%n months ago_" => array("Vor %n Monat","Vor %n Monaten"), "last year" => "Letztes Jahr", -"years ago" => "Vor Jahren", -"Caused by:" => "Verursacht durch:" +"years ago" => "Vor Jahren" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/de_CH.php b/lib/l10n/de_CH.php index 502791ff578..7325aad931e 100644 --- a/lib/l10n/de_CH.php +++ b/lib/l10n/de_CH.php @@ -52,7 +52,6 @@ $TRANSLATIONS = array( "last month" => "Letzten Monat", "_%n month ago_::_%n months ago_" => array("","Vor %n Monaten"), "last year" => "Letztes Jahr", -"years ago" => "Vor Jahren", -"Caused by:" => "Verursacht durch:" +"years ago" => "Vor Jahren" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/de_DE.php b/lib/l10n/de_DE.php index e76718b4117..1a1c9783f42 100644 --- a/lib/l10n/de_DE.php +++ b/lib/l10n/de_DE.php @@ -65,7 +65,6 @@ $TRANSLATIONS = array( "last month" => "Letzten Monat", "_%n month ago_::_%n months ago_" => array("Vor %n Monat","Vor %n Monaten"), "last year" => "Letztes Jahr", -"years ago" => "Vor Jahren", -"Caused by:" => "Verursacht durch:" +"years ago" => "Vor Jahren" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/el.php b/lib/l10n/el.php index d536b699a9e..7f7797bbc7a 100644 --- a/lib/l10n/el.php +++ b/lib/l10n/el.php @@ -1,5 +1,7 @@ <?php $TRANSLATIONS = array( +"App \"%s\" can't be installed because it is not compatible with this version of ownCloud." => "Η εφαρμογή \"%s\" δεν μπορεί να εγκατασταθεί επειδή δεν είναι συμβατή με αυτή την έκδοση του ownCloud.", +"No app name specified" => "Δεν προδιορίστηκε όνομα εφαρμογής", "Help" => "Βοήθεια", "Personal" => "Προσωπικά", "Settings" => "Ρυθμίσεις", @@ -14,6 +16,18 @@ $TRANSLATIONS = array( "Files need to be downloaded one by one." => "Τα αρχεία πρέπει να ληφθούν ένα-ένα.", "Back to Files" => "Πίσω στα Αρχεία", "Selected files too large to generate zip file." => "Τα επιλεγμένα αρχεία είναι μεγάλα ώστε να δημιουργηθεί αρχείο zip.", +"Please download the files separately in smaller chunks or kindly ask your administrator." => "Παρακαλώ κάντε λήψη των αρχείων σε μικρότερα κομμάτια ή ζητήστε το από το διαχειριστή σας.", +"No source specified when installing app" => "Δεν προσδιορίστηκε πηγή κατά την εγκατάσταση της εφαρμογής", +"No href specified when installing app from http" => "Δεν προσδιορίστηκε href κατά την εγκατάσταση της εφαρμογής μέσω http ", +"No path specified when installing app from local file" => "Δεν προσδιορίστηκε μονοπάτι κατά την εγκατάσταση εφαρμογής από τοπικό αρχείο", +"Archives of type %s are not supported" => "Συλλογές αρχείων τύπου %s δεν υποστηρίζονται", +"Failed to open archive when installing app" => "Αποτυχία ανοίγματος συλλογής αρχείων κατά την εγκατάσταση εφαρμογής", +"App does not provide an info.xml file" => "Η εφαρμογή δεν παρέχει αρχείο info.xml", +"App can't be installed because of not allowed code in the App" => "Η εφαρμογή δεν μπορεί να εγκατασταθεί λόγω μη-επιτρεπόμενου κώδικα μέσα στην Εφαρμογή", +"App can't be installed because it is not compatible with this version of ownCloud" => "Η εφαρμογή δεν μπορεί να εγκατασταθεί επειδή δεν είναι συμβατή με αυτή την έκδοση ownCloud", +"App can't be installed because the version in info.xml/version is not the same as the version reported from the app store" => "Η εφαρμογή δεν μπορεί να εγκατασταθεί επειδή η έκδοση στο info.xml/version δεν είναι η ίδια με την έκδοση που αναφέρεται στο κατάστημα εφαρμογών", +"App directory already exists" => "Ο κατάλογος εφαρμογών υπάρχει ήδη", +"Can't create app folder. Please fix permissions. %s" => "Δεν είναι δυνατόν να δημιουργηθεί ο φάκελος εφαρμογής. Παρακαλώ διορθώστε τις άδειες πρόσβασης. %s", "Application is not enabled" => "Δεν ενεργοποιήθηκε η εφαρμογή", "Authentication error" => "Σφάλμα πιστοποίησης", "Token expired. Please reload page." => "Το αναγνωριστικό έληξε. Παρακαλώ φορτώστε ξανά την σελίδα.", @@ -43,14 +57,13 @@ $TRANSLATIONS = array( "Could not find category \"%s\"" => "Αδυναμία εύρεσης κατηγορίας \"%s\"", "seconds ago" => "δευτερόλεπτα πριν", "_%n minute ago_::_%n minutes ago_" => array("","%n λεπτά πριν"), -"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("","%n ώρες πριν"), "today" => "σήμερα", "yesterday" => "χτες", -"_%n day go_::_%n days ago_" => array("",""), +"_%n day go_::_%n days ago_" => array("","%n ημέρες πριν"), "last month" => "τελευταίο μήνα", -"_%n month ago_::_%n months ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("","%n μήνες πριν"), "last year" => "τελευταίο χρόνο", -"years ago" => "χρόνια πριν", -"Caused by:" => "Προκλήθηκε από:" +"years ago" => "χρόνια πριν" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/en_GB.php b/lib/l10n/en_GB.php index 295700d234a..e2e8ee2e541 100644 --- a/lib/l10n/en_GB.php +++ b/lib/l10n/en_GB.php @@ -65,7 +65,6 @@ $TRANSLATIONS = array( "last month" => "last month", "_%n month ago_::_%n months ago_" => array("%n month ago","%n months ago"), "last year" => "last year", -"years ago" => "years ago", -"Caused by:" => "Caused by:" +"years ago" => "years ago" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/es.php b/lib/l10n/es.php index 1412d49c2f5..f231cd2bb6e 100644 --- a/lib/l10n/es.php +++ b/lib/l10n/es.php @@ -65,7 +65,6 @@ $TRANSLATIONS = array( "last month" => "mes pasado", "_%n month ago_::_%n months ago_" => array("Hace %n mes","Hace %n meses"), "last year" => "año pasado", -"years ago" => "hace años", -"Caused by:" => "Causado por:" +"years ago" => "hace años" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/es_AR.php b/lib/l10n/es_AR.php index e2c771d47ad..bc5fcd7e012 100644 --- a/lib/l10n/es_AR.php +++ b/lib/l10n/es_AR.php @@ -64,7 +64,6 @@ $TRANSLATIONS = array( "last month" => "el mes pasado", "_%n month ago_::_%n months ago_" => array("Hace %n mes","Hace %n meses"), "last year" => "el año pasado", -"years ago" => "años atrás", -"Caused by:" => "Provocado por:" +"years ago" => "años atrás" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/es_CL.php b/lib/l10n/es_CL.php new file mode 100644 index 00000000000..46158b0ccc7 --- /dev/null +++ b/lib/l10n/es_CL.php @@ -0,0 +1,10 @@ +<?php +$TRANSLATIONS = array( +"Settings" => "Configuración", +"Files" => "Archivos", +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n day go_::_%n days ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("","") +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/es_MX.php b/lib/l10n/es_MX.php index 15f78e0bce6..7454d4966d8 100644 --- a/lib/l10n/es_MX.php +++ b/lib/l10n/es_MX.php @@ -1,8 +1,70 @@ <?php $TRANSLATIONS = array( -"_%n minute ago_::_%n minutes ago_" => array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"_%n day go_::_%n days ago_" => array("",""), -"_%n month ago_::_%n months ago_" => array("","") +"App \"%s\" can't be installed because it is not compatible with this version of ownCloud." => "La aplicación \"%s\" no puede ser instalada porque no es compatible con esta versión de ownCloud", +"No app name specified" => "No se ha especificado nombre de la aplicación", +"Help" => "Ayuda", +"Personal" => "Personal", +"Settings" => "Ajustes", +"Users" => "Usuarios", +"Admin" => "Administración", +"Failed to upgrade \"%s\"." => "Falló la actualización \"%s\".", +"Unknown filetype" => "Tipo de archivo desconocido", +"Invalid image" => "Imagen inválida", +"web services under your control" => "Servicios web bajo su control", +"cannot open \"%s\"" => "No se puede abrir \"%s\"", +"ZIP download is turned off." => "La descarga en ZIP está desactivada.", +"Files need to be downloaded one by one." => "Los archivos deben ser descargados uno por uno.", +"Back to Files" => "Volver a Archivos", +"Selected files too large to generate zip file." => "Los archivos seleccionados son demasiado grandes para generar el archivo zip.", +"Please download the files separately in smaller chunks or kindly ask your administrator." => "Descargue los archivos en trozos más pequeños, por separado o solicítelos amablemente a su administrador.", +"No source specified when installing app" => "No se ha especificado origen cuando se ha instalado la aplicación", +"No href specified when installing app from http" => "No href especificado cuando se ha instalado la aplicación", +"No path specified when installing app from local file" => "Sin path especificado cuando se ha instalado la aplicación desde el archivo local", +"Archives of type %s are not supported" => "Archivos de tipo %s no son soportados", +"Failed to open archive when installing app" => "Fallo de abrir archivo mientras se instala la aplicación", +"App does not provide an info.xml file" => "La aplicación no suministra un archivo info.xml", +"App can't be installed because of not allowed code in the App" => "La aplicación no puede ser instalada por tener código no autorizado en la aplicación", +"App can't be installed because it is not compatible with this version of ownCloud" => "La aplicación no se puede instalar porque no es compatible con esta versión de ownCloud", +"App can't be installed because it contains the <shipped>true</shipped> tag which is not allowed for non shipped apps" => "La aplicación no se puede instalar porque contiene la etiqueta\n<shipped>\ntrue\n</shipped>\nque no está permitida para aplicaciones no distribuidas", +"App can't be installed because the version in info.xml/version is not the same as the version reported from the app store" => "La aplicación no puede ser instalada por que la versión en info.xml/version no es la misma que la establecida en la app store", +"App directory already exists" => "El directorio de la aplicación ya existe", +"Can't create app folder. Please fix permissions. %s" => "No se puede crear la carpeta de la aplicación. Corrija los permisos. %s", +"Application is not enabled" => "La aplicación no está habilitada", +"Authentication error" => "Error de autenticación", +"Token expired. Please reload page." => "Token expirado. Por favor, recarga la página.", +"Files" => "Archivos", +"Text" => "Texto", +"Images" => "Imágenes", +"%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 puede utilizar puntos en el nombre de la base de datos", +"MS SQL username and/or password not valid: %s" => "Usuario y/o contraseña de MS SQL no válidos: %s", +"You need to enter either an existing account or the administrator." => "Tiene que ingresar una cuenta existente o la del administrador.", +"MySQL username and/or password not valid" => "Usuario y/o contraseña de MySQL no válidos", +"DB Error: \"%s\"" => "Error BD: \"%s\"", +"Offending command was: \"%s\"" => "Comando infractor: \"%s\"", +"MySQL user '%s'@'localhost' exists already." => "Usuario MySQL '%s'@'localhost' ya existe.", +"Drop this user from MySQL" => "Eliminar este usuario de MySQL", +"MySQL user '%s'@'%%' already exists" => "Usuario MySQL '%s'@'%%' ya existe", +"Drop this user from MySQL." => "Eliminar este usuario de MySQL.", +"Oracle connection could not be established" => "No se pudo establecer la conexión a Oracle", +"Oracle username and/or password not valid" => "Usuario y/o contraseña de Oracle no válidos", +"Offending command was: \"%s\", name: %s, password: %s" => "Comando infractor: \"%s\", nombre: %s, contraseña: %s", +"PostgreSQL username and/or password not valid" => "Usuario y/o contraseña de PostgreSQL no válidos", +"Set an admin username." => "Configurar un nombre de usuario del administrador", +"Set an admin password." => "Configurar la contraseña del administrador.", +"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Su servidor web aún no está configurado adecuadamente para permitir sincronización de archivos ya que la interfaz WebDAV parece no estar funcionando.", +"Please double check the <a href='%s'>installation guides</a>." => "Por favor, vuelva a comprobar las <a href='%s'>guías de instalación</a>.", +"Could not find category \"%s\"" => "No puede encontrar la categoria \"%s\"", +"seconds ago" => "hace segundos", +"_%n minute ago_::_%n minutes ago_" => array("Hace %n minuto","Hace %n minutos"), +"_%n hour ago_::_%n hours ago_" => array("Hace %n hora","Hace %n horas"), +"today" => "hoy", +"yesterday" => "ayer", +"_%n day go_::_%n days ago_" => array("Hace %n día","Hace %n días"), +"last month" => "mes pasado", +"_%n month ago_::_%n months ago_" => array("Hace %n mes","Hace %n meses"), +"last year" => "año pasado", +"years ago" => "hace años" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/et_EE.php b/lib/l10n/et_EE.php index 7340ee72c28..96fceaa04ed 100644 --- a/lib/l10n/et_EE.php +++ b/lib/l10n/et_EE.php @@ -65,7 +65,6 @@ $TRANSLATIONS = array( "last month" => "viimasel kuul", "_%n month ago_::_%n months ago_" => array("","%n kuud tagasi"), "last year" => "viimasel aastal", -"years ago" => "aastat tagasi", -"Caused by:" => "Põhjustaja:" +"years ago" => "aastat tagasi" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/eu.php b/lib/l10n/eu.php index 67a80d90caa..e3f18fca47a 100644 --- a/lib/l10n/eu.php +++ b/lib/l10n/eu.php @@ -65,7 +65,6 @@ $TRANSLATIONS = array( "last month" => "joan den hilabetean", "_%n month ago_::_%n months ago_" => array("orain dela hilabete %n","orain dela %n hilabete"), "last year" => "joan den urtean", -"years ago" => "urte", -"Caused by:" => "Honek eraginda:" +"years ago" => "urte" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/fi_FI.php b/lib/l10n/fi_FI.php index 68f51d34441..573704da44c 100644 --- a/lib/l10n/fi_FI.php +++ b/lib/l10n/fi_FI.php @@ -16,8 +16,10 @@ $TRANSLATIONS = array( "Back to Files" => "Takaisin tiedostoihin", "Selected files too large to generate zip file." => "Valitut tiedostot ovat liian suurikokoisia mahtuakseen zip-tiedostoon.", "No source specified when installing app" => "Lähdettä ei määritelty sovellusta asennettaessa", +"No href specified when installing app from http" => "Href-määritettä ei asetettu asennettaessa sovellusta http:n yli", "No path specified when installing app from local file" => "Polkua ei määritelty sovellusta asennettaessa paikallisesta tiedostosta", "Archives of type %s are not supported" => "Tyypin %s arkistot eivät ole tuettuja", +"Failed to open archive when installing app" => "Pakettitiedoston avaaminen epäonnistui sovellusta asennettaessa", "App does not provide an info.xml file" => "Sovellus ei sisällä info.xml-tiedostoa", "App can't be installed because of not allowed code in the App" => "Sovellusta ei voi asentaa, koska sovellus sisältää kiellettyä koodia", "App can't be installed because it is not compatible with this version of ownCloud" => "Sovellusta ei voi asentaa, koska se ei ole yhteensopiva käytössä olevan ownCloud-version kanssa", @@ -55,7 +57,6 @@ $TRANSLATIONS = array( "last month" => "viime kuussa", "_%n month ago_::_%n months ago_" => array("%n kuukausi sitten","%n kuukautta sitten"), "last year" => "viime vuonna", -"years ago" => "vuotta sitten", -"Caused by:" => "Aiheuttaja:" +"years ago" => "vuotta sitten" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/fr.php b/lib/l10n/fr.php index 82d5739e540..75a4f277271 100644 --- a/lib/l10n/fr.php +++ b/lib/l10n/fr.php @@ -65,7 +65,6 @@ $TRANSLATIONS = array( "last month" => "le mois dernier", "_%n month ago_::_%n months ago_" => array("","Il y a %n mois"), "last year" => "l'année dernière", -"years ago" => "il y a plusieurs années", -"Caused by:" => "Causé par :" +"years ago" => "il y a plusieurs années" ); $PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/lib/l10n/gl.php b/lib/l10n/gl.php index cf13408b2cd..81a62021556 100644 --- a/lib/l10n/gl.php +++ b/lib/l10n/gl.php @@ -65,7 +65,6 @@ $TRANSLATIONS = array( "last month" => "último mes", "_%n month ago_::_%n months ago_" => array("hai %n mes","hai %n meses"), "last year" => "último ano", -"years ago" => "anos atrás", -"Caused by:" => "Causado por:" +"years ago" => "anos atrás" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/hu_HU.php b/lib/l10n/hu_HU.php index 0d91b70b51a..efaf2a2fd48 100644 --- a/lib/l10n/hu_HU.php +++ b/lib/l10n/hu_HU.php @@ -16,6 +16,7 @@ $TRANSLATIONS = array( "Files need to be downloaded one by one." => "A fájlokat egyenként kell letölteni.", "Back to Files" => "Vissza a Fájlokhoz", "Selected files too large to generate zip file." => "A kiválasztott fájlok túl nagyok a zip tömörítéshez.", +"Please download the files separately in smaller chunks or kindly ask your administrator." => "A file-t kisebb részekben töltsd le vagy beszélj az adminisztrátorral a megoldás érdekében.", "No source specified when installing app" => "Az alkalmazás telepítéséhez nincs forrás megadva", "No href specified when installing app from http" => "Az alkalmazás http-n keresztül történő telepítéséhez nincs href hivetkozás megadva", "No path specified when installing app from local file" => "Az alkalmazás helyi telepítéséhez nincs útvonal (mappa) megadva", @@ -64,7 +65,6 @@ $TRANSLATIONS = array( "last month" => "múlt hónapban", "_%n month ago_::_%n months ago_" => array("%n hónappal ezelőtt","%n hónappal ezelőtt"), "last year" => "tavaly", -"years ago" => "több éve", -"Caused by:" => "Okozta:" +"years ago" => "több éve" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/id.php b/lib/l10n/id.php index 0cbcddcc6dd..27d7843104b 100644 --- a/lib/l10n/id.php +++ b/lib/l10n/id.php @@ -1,49 +1,69 @@ <?php $TRANSLATIONS = array( +"App \"%s\" can't be installed because it is not compatible with this version of ownCloud." => "Apl \"%s\" tidak dapat diinstal karena tidak kompatibel dengan versi ownCloud.", +"No app name specified" => "Tidak ada nama apl yang ditentukan", "Help" => "Bantuan", "Personal" => "Pribadi", -"Settings" => "Setelan", +"Settings" => "Pengaturan", "Users" => "Pengguna", "Admin" => "Admin", -"web services under your control" => "layanan web dalam kontrol Anda", +"Failed to upgrade \"%s\"." => "Gagal memperbarui \"%s\".", +"Unknown filetype" => "Tipe berkas tak dikenal", +"Invalid image" => "Gambar tidak sah", +"web services under your control" => "layanan web dalam kendali anda", +"cannot open \"%s\"" => "tidak dapat membuka \"%s\"", "ZIP download is turned off." => "Pengunduhan ZIP dimatikan.", "Files need to be downloaded one by one." => "Berkas harus diunduh satu persatu.", -"Back to Files" => "Kembali ke Daftar Berkas", +"Back to Files" => "Kembali ke Berkas", "Selected files too large to generate zip file." => "Berkas yang dipilih terlalu besar untuk dibuat berkas zip-nya.", +"Please download the files separately in smaller chunks or kindly ask your administrator." => "Silahkan unduh berkas secara terpisah dalam bentuk potongan kecil atau meminta ke administrator anda.", +"No source specified when installing app" => "Tidak ada sumber yang ditentukan saat menginstal apl", +"No href specified when installing app from http" => "Href tidak ditentukan saat menginstal apl dari http", +"No path specified when installing app from local file" => "Lokasi tidak ditentukan saat menginstal apl dari berkas lokal", +"Archives of type %s are not supported" => "Arsip dengan tipe %s tidak didukung", +"Failed to open archive when installing app" => "Gagal membuka arsip saat menginstal apl", +"App does not provide an info.xml file" => "Apl tidak menyediakan berkas info.xml", +"App can't be installed because of not allowed code in the App" => "Apl tidak dapat diinstal karena terdapat kode yang tidak diizinkan didalam Apl", +"App can't be installed because it is not compatible with this version of ownCloud" => "Apl tidak dapat diinstal karena tidak kompatibel dengan versi ownCloud", +"App can't be installed because it contains the <shipped>true</shipped> tag which is not allowed for non shipped apps" => "Apl tidak dapat diinstal karena mengandung tag <shipped>true</shipped> yang tidak diizinkan untuk apl yang bukan bawaan.", +"App can't be installed because the version in info.xml/version is not the same as the version reported from the app store" => "Apl tidak dapat diinstal karena versi di info.xml/versi tidak sama dengan versi yang dilansir dari toko apl", +"App directory already exists" => "Direktori Apl sudah ada", +"Can't create app folder. Please fix permissions. %s" => "Tidak dapat membuat folder apl. Silakan perbaiki perizinan. %s", "Application is not enabled" => "Aplikasi tidak diaktifkan", -"Authentication error" => "Galat saat autentikasi", -"Token expired. Please reload page." => "Token kedaluwarsa. Silakan muat ulang halaman.", +"Authentication error" => "Galat saat otentikasi", +"Token expired. Please reload page." => "Token sudah kedaluwarsa. Silakan muat ulang halaman.", "Files" => "Berkas", "Text" => "Teks", "Images" => "Gambar", "%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", -"MS SQL username and/or password not valid: %s" => "Nama pengguna dan/atau sandi MySQL tidak valid: %s", +"%s you may not use dots in the database name" => "%s anda tidak boleh menggunakan karakter titik pada nama basis data", +"MS SQL username and/or password not valid: %s" => "Nama pengguna dan/atau sandi MySQL tidak sah: %s", "You need to enter either an existing account or the administrator." => "Anda harus memasukkan akun yang sudah ada atau administrator.", -"MySQL username and/or password not valid" => "Nama pengguna dan/atau sandi MySQL tidak valid", +"MySQL username and/or password not valid" => "Nama pengguna dan/atau sandi MySQL tidak sah", "DB Error: \"%s\"" => "Galat Basis Data: \"%s\"", "Offending command was: \"%s\"" => "Perintah yang bermasalah: \"%s\"", "MySQL user '%s'@'localhost' exists already." => "Pengguna MySQL '%s'@'localhost' sudah ada.", "Drop this user from MySQL" => "Hapus pengguna ini dari MySQL", "MySQL user '%s'@'%%' already exists" => "Pengguna MySQL '%s'@'%%' sudah ada.", "Drop this user from MySQL." => "Hapus pengguna ini dari MySQL.", -"Oracle username and/or password not valid" => "Nama pengguna dan/atau sandi Oracle tidak valid", +"Oracle connection could not be established" => "Koneksi Oracle tidak dapat dibuat", +"Oracle username and/or password not valid" => "Nama pengguna dan/atau sandi Oracle tidak sah", "Offending command was: \"%s\", name: %s, password: %s" => "Perintah yang bermasalah: \"%s\", nama pengguna: %s, sandi: %s", "PostgreSQL username and/or password not valid" => "Nama pengguna dan/atau sandi PostgreSQL tidak valid", -"Set an admin username." => "Setel nama pengguna admin.", -"Set an admin password." => "Setel sandi admin.", +"Set an admin username." => "Atur nama pengguna admin.", +"Set an admin password." => "Atur sandi admin.", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Web server Anda belum dikonfigurasikan dengan baik untuk mengizinkan sinkronisasi berkas karena tampaknya antarmuka WebDAV rusak.", "Please double check the <a href='%s'>installation guides</a>." => "Silakan periksa ulang <a href='%s'>panduan instalasi</a>.", -"Could not find category \"%s\"" => "Tidak dapat menemukan kategori \"%s\"", +"Could not find category \"%s\"" => "Tidak menemukan kategori \"%s\"", "seconds ago" => "beberapa detik yang lalu", -"_%n minute ago_::_%n minutes ago_" => array(""), -"_%n hour ago_::_%n hours ago_" => array(""), +"_%n minute ago_::_%n minutes ago_" => array("%n menit yang lalu"), +"_%n hour ago_::_%n hours ago_" => array("%n jam yang lalu"), "today" => "hari ini", "yesterday" => "kemarin", -"_%n day go_::_%n days ago_" => array(""), +"_%n day go_::_%n days ago_" => array("%n hari yang lalu"), "last month" => "bulan kemarin", -"_%n month ago_::_%n months ago_" => array(""), +"_%n month ago_::_%n months ago_" => array("%n bulan yang lalu"), "last year" => "tahun kemarin", "years ago" => "beberapa tahun lalu" ); diff --git a/lib/l10n/it.php b/lib/l10n/it.php index b1259a0a874..cd2073bfd0a 100644 --- a/lib/l10n/it.php +++ b/lib/l10n/it.php @@ -65,7 +65,6 @@ $TRANSLATIONS = array( "last month" => "mese scorso", "_%n month ago_::_%n months ago_" => array("%n mese fa","%n mesi fa"), "last year" => "anno scorso", -"years ago" => "anni fa", -"Caused by:" => "Causato da:" +"years ago" => "anni fa" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/ja_JP.php b/lib/l10n/ja_JP.php index d7baf176a14..9c5c0ba4763 100644 --- a/lib/l10n/ja_JP.php +++ b/lib/l10n/ja_JP.php @@ -65,7 +65,6 @@ $TRANSLATIONS = array( "last month" => "一月前", "_%n month ago_::_%n months ago_" => array("%n ヶ月前"), "last year" => "一年前", -"years ago" => "年前", -"Caused by:" => "原因:" +"years ago" => "年前" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/lib/l10n/ko.php b/lib/l10n/ko.php index 102bf9f978d..b33ad01546f 100644 --- a/lib/l10n/ko.php +++ b/lib/l10n/ko.php @@ -8,50 +8,51 @@ $TRANSLATIONS = array( "Users" => "사용자", "Admin" => "관리자", "Failed to upgrade \"%s\"." => "\"%s\" 업그레이드에 실패했습니다.", -"Unknown filetype" => "알수없는 파일형식", +"Unknown filetype" => "알 수 없는 파일 형식", "Invalid image" => "잘못된 그림", "web services under your control" => "내가 관리하는 웹 서비스", "cannot open \"%s\"" => "\"%s\"을(를) 열 수 없습니다.", -"ZIP download is turned off." => "ZIP 다운로드가 비활성화되었습니다.", +"ZIP download is turned off." => "ZIP 다운로드가 비활성화 되었습니다.", "Files need to be downloaded one by one." => "파일을 개별적으로 다운로드해야 합니다.", "Back to Files" => "파일로 돌아가기", "Selected files too large to generate zip file." => "선택한 파일들은 ZIP 파일을 생성하기에 너무 큽니다.", +"Please download the files separately in smaller chunks or kindly ask your administrator." => "작은 조각들 안에 들어있는 파일들을 받고자 하신다면, 나누어서 받으시거나 혹은 시스템 관리자에게 정중하게 물어보십시오", "No source specified when installing app" => "앱을 설치할 때 소스가 지정되지 않았습니다.", -"No href specified when installing app from http" => "http에서 앱을 설치할 대 href가 지정되지 않았습니다.", +"No href specified when installing app from http" => "http에서 앱을 설치할 때 href가 지정되지 않았습니다.", "No path specified when installing app from local file" => "로컬 파일에서 앱을 설치할 때 경로가 지정되지 않았습니다.", "Archives of type %s are not supported" => "%s 타입 아카이브는 지원되지 않습니다.", "Failed to open archive when installing app" => "앱을 설치할 때 아카이브를 열지 못했습니다.", "App does not provide an info.xml file" => "앱에서 info.xml 파일이 제공되지 않았습니다.", -"App can't be installed because of not allowed code in the App" => "앱에 허용되지 않는 코드가 있어서 앱을 설치할 수 없습니다. ", +"App can't be installed because of not allowed code in the App" => "앱에 허용되지 않는 코드가 있어서 앱을 설치할 수 없습니다.", "App can't be installed because it is not compatible with this version of ownCloud" => "현재 ownCloud 버전과 호환되지 않기 때문에 앱을 설치할 수 없습니다.", -"App can't be installed because it contains the <shipped>true</shipped> tag which is not allowed for non shipped apps" => "출하되지 않은 앱에 허용되지 않는 <shipped>true</shipped> 태그를 포함하고 있기 때문에 앱을 설치할 수 없습니다.", -"App can't be installed because the version in info.xml/version is not the same as the version reported from the app store" => "info.xml/version에 포함된 버전과 앱 스토어에 보고된 버전이 같지 않아서 앱을 설치할 수 없습니다. ", -"App directory already exists" => "앱 디렉토리가 이미 존재합니다. ", -"Can't create app folder. Please fix permissions. %s" => "앱 폴더를 만들 수 없습니다. 권한을 수정하십시오. %s ", +"App can't be installed because it contains the <shipped>true</shipped> tag which is not allowed for non shipped apps" => "출시되지 않은 앱에 허용되지 않는 <shipped>true</shipped> 태그를 포함하고 있기 때문에 앱을 설치할 수 없습니다.", +"App can't be installed because the version in info.xml/version is not the same as the version reported from the app store" => "info.xml/version에 포함된 버전과 앱 스토어에 보고된 버전이 같지 않아서 앱을 설치할 수 없습니다.", +"App directory already exists" => "앱 디렉터리가 이미 존재합니다.", +"Can't create app folder. Please fix permissions. %s" => "앱 폴더를 만들 수 없습니다. 권한을 수정하십시오. %s", "Application is not enabled" => "앱이 활성화되지 않았습니다", "Authentication error" => "인증 오류", "Token expired. Please reload page." => "토큰이 만료되었습니다. 페이지를 새로 고치십시오.", "Files" => "파일", "Text" => "텍스트", "Images" => "그림", -"%s enter the database username." => "데이터베이스 사용자 명을 %s 에 입력해주십시오", -"%s enter the database name." => "데이터베이스 명을 %s 에 입력해주십시오", -"%s you may not use dots in the database name" => "%s 에 적으신 데이터베이스 이름에는 점을 사용할수 없습니다", +"%s enter the database username." => "%s 데이터베이스 사용자 이름을 입력해 주십시오.", +"%s enter the database name." => "%s 데이터베이스 이름을 입력하십시오.", +"%s you may not use dots in the database name" => "%s 데이터베이스 이름에는 마침표를 사용할 수 없습니다", "MS SQL username and/or password not valid: %s" => "MS SQL 사용자 이름이나 암호가 잘못되었습니다: %s", "You need to enter either an existing account or the administrator." => "기존 계정이나 administrator(관리자)를 입력해야 합니다.", "MySQL username and/or password not valid" => "MySQL 사용자 이름이나 암호가 잘못되었습니다.", "DB Error: \"%s\"" => "DB 오류: \"%s\"", "Offending command was: \"%s\"" => "잘못된 명령: \"%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에서 뺍니다.", +"Drop this user from MySQL" => "이 사용자를 MySQL에서 삭제하십시오", +"MySQL user '%s'@'%%' already exists" => "MySQL 사용자 '%s'@'%%'이(가) 이미 존재합니다.", +"Drop this user from MySQL." => "이 사용자를 MySQL에서 삭제하십시오.", "Oracle connection could not be established" => "Oracle 연결을 수립할 수 없습니다.", "Oracle username and/or password not valid" => "Oracle 사용자 이름이나 암호가 잘못되었습니다.", "Offending command was: \"%s\", name: %s, password: %s" => "잘못된 명령: \"%s\", 이름: %s, 암호: %s", -"PostgreSQL username and/or password not valid" => "PostgreSQL의 사용자 명 혹은 비밀번호가 잘못되었습니다", -"Set an admin username." => "관리자 이름 설정", -"Set an admin password." => "관리자 비밀번호 설정", +"PostgreSQL username and/or password not valid" => "PostgreSQL의 사용자 이름 또는 암호가 잘못되었습니다", +"Set an admin username." => "관리자의 사용자 이름을 설정합니다.", +"Set an admin password." => "관리자의 암호를 설정합니다.", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "WebDAV 인터페이스가 제대로 작동하지 않습니다. 웹 서버에서 파일 동기화를 사용할 수 있도록 설정이 제대로 되지 않은 것 같습니다.", "Please double check the <a href='%s'>installation guides</a>." => "<a href='%s'>설치 가이드</a>를 다시 한 번 확인하십시오.", "Could not find category \"%s\"" => "분류 \"%s\"을(를) 찾을 수 없습니다.", @@ -64,7 +65,6 @@ $TRANSLATIONS = array( "last month" => "지난 달", "_%n month ago_::_%n months ago_" => array("%n달 전 "), "last year" => "작년", -"years ago" => "년 전", -"Caused by:" => "원인: " +"years ago" => "년 전" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/lib/l10n/lt_LT.php b/lib/l10n/lt_LT.php index 17bbb856e43..25957702d2d 100644 --- a/lib/l10n/lt_LT.php +++ b/lib/l10n/lt_LT.php @@ -65,7 +65,6 @@ $TRANSLATIONS = array( "last month" => "praeitą mėnesį", "_%n month ago_::_%n months ago_" => array("Prieš %n mėnesį","Prieš %n mėnesius","Prieš %n mėnesių"), "last year" => "praeitais metais", -"years ago" => "prieš metus", -"Caused by:" => "Iššaukė:" +"years ago" => "prieš metus" ); $PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/lib/l10n/lv.php b/lib/l10n/lv.php index ef5fd2d5ca8..8ecee5bdae8 100644 --- a/lib/l10n/lv.php +++ b/lib/l10n/lv.php @@ -48,7 +48,6 @@ $TRANSLATIONS = array( "last month" => "pagājušajā mēnesī", "_%n month ago_::_%n months ago_" => array("","","Pirms %n mēnešiem"), "last year" => "gājušajā gadā", -"years ago" => "gadus atpakaļ", -"Caused by:" => "Cēlonis:" +"years ago" => "gadus atpakaļ" ); $PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);"; diff --git a/lib/l10n/nb_NO.php b/lib/l10n/nb_NO.php index eb5e8d766fd..5da36f9be37 100644 --- a/lib/l10n/nb_NO.php +++ b/lib/l10n/nb_NO.php @@ -5,6 +5,8 @@ $TRANSLATIONS = array( "Settings" => "Innstillinger", "Users" => "Brukere", "Admin" => "Admin", +"Unknown filetype" => "Ukjent filtype", +"Invalid image" => "Ugyldig bilde", "web services under your control" => "web tjenester du kontrollerer", "ZIP download is turned off." => "ZIP-nedlasting av avslått", "Files need to be downloaded one by one." => "Filene må lastes ned en om gangen", @@ -20,13 +22,13 @@ $TRANSLATIONS = array( "Please double check the <a href='%s'>installation guides</a>." => "Vennligst dobbelsjekk <a href='%s'>installasjonsguiden</a>.", "Could not find category \"%s\"" => "Kunne ikke finne kategori \"%s\"", "seconds ago" => "sekunder siden", -"_%n minute ago_::_%n minutes ago_" => array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n minute ago_::_%n minutes ago_" => array("","%n minutter siden"), +"_%n hour ago_::_%n hours ago_" => array("","%n timer siden"), "today" => "i dag", "yesterday" => "i går", -"_%n day go_::_%n days ago_" => array("",""), +"_%n day go_::_%n days ago_" => array("","%n dager siden"), "last month" => "forrige måned", -"_%n month ago_::_%n months ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("","%n dager siden"), "last year" => "forrige år", "years ago" => "år siden" ); diff --git a/lib/l10n/nl.php b/lib/l10n/nl.php index 0254ce81886..2f6205fcf1c 100644 --- a/lib/l10n/nl.php +++ b/lib/l10n/nl.php @@ -65,7 +65,6 @@ $TRANSLATIONS = array( "last month" => "vorige maand", "_%n month ago_::_%n months ago_" => array("%n maand geleden","%n maanden geleden"), "last year" => "vorig jaar", -"years ago" => "jaar geleden", -"Caused by:" => "Gekomen door:" +"years ago" => "jaar geleden" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/pl.php b/lib/l10n/pl.php index e520509920a..fe3e876916a 100644 --- a/lib/l10n/pl.php +++ b/lib/l10n/pl.php @@ -65,7 +65,6 @@ $TRANSLATIONS = array( "last month" => "w zeszłym miesiącu", "_%n month ago_::_%n months ago_" => array("%n miesiąc temu","%n miesięcy temu","%n miesięcy temu"), "last year" => "w zeszłym roku", -"years ago" => "lat temu", -"Caused by:" => "Spowodowane przez:" +"years ago" => "lat temu" ); $PLURAL_FORMS = "nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/lib/l10n/pt_BR.php b/lib/l10n/pt_BR.php index d6912f07110..cc20fb3cb02 100644 --- a/lib/l10n/pt_BR.php +++ b/lib/l10n/pt_BR.php @@ -65,7 +65,6 @@ $TRANSLATIONS = array( "last month" => "último mês", "_%n month ago_::_%n months ago_" => array("","ha %n meses"), "last year" => "último ano", -"years ago" => "anos atrás", -"Caused by:" => "Causados por:" +"years ago" => "anos atrás" ); $PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/lib/l10n/pt_PT.php b/lib/l10n/pt_PT.php index 55845cf2ae9..bd9165ebb1a 100644 --- a/lib/l10n/pt_PT.php +++ b/lib/l10n/pt_PT.php @@ -65,7 +65,6 @@ $TRANSLATIONS = array( "last month" => "ultímo mês", "_%n month ago_::_%n months ago_" => array("","%n meses atrás"), "last year" => "ano passado", -"years ago" => "anos atrás", -"Caused by:" => "Causado por:" +"years ago" => "anos atrás" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/ru.php b/lib/l10n/ru.php index baf80cbf24e..34d1730aaf2 100644 --- a/lib/l10n/ru.php +++ b/lib/l10n/ru.php @@ -65,7 +65,6 @@ $TRANSLATIONS = array( "last month" => "в прошлом месяце", "_%n month ago_::_%n months ago_" => array("%n месяц назад","%n месяца назад","%n месяцев назад"), "last year" => "в прошлом году", -"years ago" => "несколько лет назад", -"Caused by:" => "Вызвано:" +"years ago" => "несколько лет назад" ); $PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/lib/l10n/sk_SK.php b/lib/l10n/sk_SK.php index 18b455780d1..59c45e2b0bc 100644 --- a/lib/l10n/sk_SK.php +++ b/lib/l10n/sk_SK.php @@ -65,7 +65,6 @@ $TRANSLATIONS = array( "last month" => "minulý mesiac", "_%n month ago_::_%n months ago_" => array("pred %n mesiacom","pred %n mesiacmi","pred %n mesiacmi"), "last year" => "minulý rok", -"years ago" => "pred rokmi", -"Caused by:" => "Príčina:" +"years ago" => "pred rokmi" ); $PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"; diff --git a/lib/l10n/sl.php b/lib/l10n/sl.php index 69067c2691f..3cc8dd130c8 100644 --- a/lib/l10n/sl.php +++ b/lib/l10n/sl.php @@ -65,7 +65,6 @@ $TRANSLATIONS = array( "last month" => "zadnji mesec", "_%n month ago_::_%n months ago_" => array("pred %n mesecem","pred %n mesecema","pred %n meseci","pred %n meseci"), "last year" => "lansko leto", -"years ago" => "let nazaj", -"Caused by:" => "Vzrok:" +"years ago" => "let nazaj" ); $PLURAL_FORMS = "nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);"; diff --git a/lib/l10n/sv.php b/lib/l10n/sv.php index 4f04cbe3159..ffffe5956f1 100644 --- a/lib/l10n/sv.php +++ b/lib/l10n/sv.php @@ -65,7 +65,6 @@ $TRANSLATIONS = array( "last month" => "förra månaden", "_%n month ago_::_%n months ago_" => array("%n månad sedan","%n månader sedan"), "last year" => "förra året", -"years ago" => "år sedan", -"Caused by:" => "Orsakad av:" +"years ago" => "år sedan" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/tr.php b/lib/l10n/tr.php index 093984bb952..0439ddab6a2 100644 --- a/lib/l10n/tr.php +++ b/lib/l10n/tr.php @@ -12,14 +12,14 @@ $TRANSLATIONS = array( "Invalid image" => "Geçersiz resim", "web services under your control" => "Bilgileriniz güvenli ve şifreli", "cannot open \"%s\"" => "\"%s\" açılamıyor", -"ZIP download is turned off." => "ZIP indirmeleri kapatılmıştır.", +"ZIP download is turned off." => "ZIP indirmeleri kapatıldı.", "Files need to be downloaded one by one." => "Dosyaların birer birer indirilmesi gerekmektedir.", "Back to Files" => "Dosyalara dön", -"Selected files too large to generate zip file." => "Seçilen dosyalar bir zip dosyası oluşturmak için fazla büyüktür.", +"Selected files too large to generate zip file." => "Seçilen dosyalar bir zip dosyası oluşturmak için fazla büyük.", "Please download the files separately in smaller chunks or kindly ask your administrator." => "Dosyaları ayrı ayrı, küçük parçalar halinde indirin veya yöneticinizden yardım isteyin. ", "No source specified when installing app" => "Uygulama kurulurken bir kaynak belirtilmedi", "No href specified when installing app from http" => "Uygulama kuruluyorken http'de href belirtilmedi", -"No path specified when installing app from local file" => "Uygulama yerel dosyadan kuruluyorken dosya yolu belirtilmedi", +"No path specified when installing app from local file" => "Uygulama yerel dosyadan kurulurken dosya yolu belirtilmedi", "Archives of type %s are not supported" => "%s arşiv türü desteklenmiyor", "Failed to open archive when installing app" => "Uygulama kuruluyorken arşiv dosyası açılamadı", "App does not provide an info.xml file" => "Uygulama info.xml dosyası sağlamıyor", @@ -65,7 +65,6 @@ $TRANSLATIONS = array( "last month" => "geçen ay", "_%n month ago_::_%n months ago_" => array("","%n ay önce"), "last year" => "geçen yıl", -"years ago" => "yıl önce", -"Caused by:" => "Neden olan:" +"years ago" => "yıl önce" ); $PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/lib/l10n/zh_TW.php b/lib/l10n/zh_TW.php index 187d40e540e..35719c8b17e 100644 --- a/lib/l10n/zh_TW.php +++ b/lib/l10n/zh_TW.php @@ -64,7 +64,6 @@ $TRANSLATIONS = array( "last month" => "上個月", "_%n month ago_::_%n months ago_" => array("%n 個月前"), "last year" => "去年", -"years ago" => "幾年前", -"Caused by:" => "原因:" +"years ago" => "幾年前" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/lib/private/allconfig.php b/lib/private/allconfig.php index 72aabf60793..a4aa69d43fb 100644 --- a/lib/private/allconfig.php +++ b/lib/private/allconfig.php @@ -4,7 +4,7 @@ * This file is licensed under the Affero General Public License version 3 or * later. * See the COPYING-README file. - * + * */ namespace OC; @@ -15,6 +15,7 @@ namespace OC; class AllConfig implements \OCP\IConfig { /** * Sets a new system wide value + * * @param string $key the key of the value, under which will be saved * @param string $value the value that should be stored * @todo need a use case for this @@ -25,16 +26,19 @@ class AllConfig implements \OCP\IConfig { /** * Looks up a system wide defined value + * * @param string $key the key of the value, under which it was saved + * @param string $default the default value to be returned if the value isn't set * @return string the saved value */ - public function getSystemValue($key) { - return \OCP\Config::getSystemValue($key, ''); + public function getSystemValue($key, $default = '') { + return \OCP\Config::getSystemValue($key, $default); } /** * Writes a new app wide value + * * @param string $appName the appName that we want to store the value under * @param string $key the key of the value, under which will be saved * @param string $value the value that should be stored @@ -45,17 +49,20 @@ class AllConfig implements \OCP\IConfig { /** * Looks up an app wide defined value + * * @param string $appName the appName that we stored the value under * @param string $key the key of the value, under which it was saved + * @param string $default the default value to be returned if the value isn't set * @return string the saved value */ - public function getAppValue($appName, $key) { - return \OCP\Config::getAppValue($appName, $key, ''); + public function getAppValue($appName, $key, $default = '') { + return \OCP\Config::getAppValue($appName, $key, $default); } /** * Set a user defined value + * * @param string $userId the userId of the user that we want to store the value under * @param string $appName the appName that we want to store the value under * @param string $key the key under which the value is being stored @@ -67,11 +74,14 @@ class AllConfig implements \OCP\IConfig { /** * Shortcut for getting a user defined value + * * @param string $userId the userId of the user that we want to store the value under * @param string $appName the appName that we stored the value under * @param string $key the key under which the value is being stored + * @param string $default the default value to be returned if the value isn't set + * @return string */ - public function getUserValue($userId, $appName, $key){ - return \OCP\Config::getUserValue($userId, $appName, $key); + public function getUserValue($userId, $appName, $key, $default = '') { + return \OCP\Config::getUserValue($userId, $appName, $key, $default); } } diff --git a/lib/private/app.php b/lib/private/app.php index eca40a81cc1..34c00e97fb9 100644 --- a/lib/private/app.php +++ b/lib/private/app.php @@ -166,20 +166,22 @@ class OC_App{ * get all enabled apps */ private static $enabledAppsCache = array(); - public static function getEnabledApps() { + public static function getEnabledApps($forceRefresh = false) { if(!OC_Config::getValue('installed', false)) { return array(); } - if(!empty(self::$enabledAppsCache)) { + if(!$forceRefresh && !empty(self::$enabledAppsCache)) { return self::$enabledAppsCache; } $apps=array('files'); $sql = 'SELECT `appid` FROM `*PREFIX*appconfig`' - .' WHERE `configkey` = \'enabled\' AND `configvalue`=\'yes\''; + . ' WHERE `configkey` = \'enabled\' AND `configvalue`=\'yes\'' + . ' ORDER BY `appid`'; if (OC_Config::getValue( 'dbtype', 'sqlite' ) === 'oci') { //FIXME oracle hack: need to explicitly cast CLOB to CHAR for comparison $sql = 'SELECT `appid` FROM `*PREFIX*appconfig`' - .' WHERE `configkey` = \'enabled\' AND to_char(`configvalue`)=\'yes\''; + . ' WHERE `configkey` = \'enabled\' AND to_char(`configvalue`)=\'yes\'' + . ' ORDER BY `appid`'; } $query = OC_DB::prepare( $sql ); $result=$query->execute(); diff --git a/lib/private/appconfig.php b/lib/private/appconfig.php index 4f170e054e9..da0b2ff8604 100644 --- a/lib/private/appconfig.php +++ b/lib/private/appconfig.php @@ -37,7 +37,12 @@ * This class provides an easy way for apps to store config values in the * database. */ -class OC_Appconfig{ +class OC_Appconfig { + + private static $cache = array(); + + private static $appsLoaded = array(); + /** * @brief Get all apps using the config * @return array with app ids @@ -47,11 +52,11 @@ class OC_Appconfig{ */ public static function getApps() { // No magic in here! - $query = OC_DB::prepare( 'SELECT DISTINCT `appid` FROM `*PREFIX*appconfig`' ); + $query = OC_DB::prepare('SELECT DISTINCT `appid` FROM `*PREFIX*appconfig` ORDER BY `appid`'); $result = $query->execute(); $apps = array(); - while( $row = $result->fetchRow()) { + while ($row = $result->fetchRow()) { $apps[] = $row["appid"]; } @@ -66,19 +71,35 @@ class OC_Appconfig{ * This function gets all keys of an app. Please note that the values are * not returned. */ - public static function getKeys( $app ) { + public static function getKeys($app) { // No magic in here as well - $query = OC_DB::prepare( 'SELECT `configkey` FROM `*PREFIX*appconfig` WHERE `appid` = ?' ); - $result = $query->execute( array( $app )); + $query = OC_DB::prepare('SELECT `configkey` FROM `*PREFIX*appconfig` WHERE `appid` = ?'); + $result = $query->execute(array($app)); $keys = array(); - while( $row = $result->fetchRow()) { + while ($row = $result->fetchRow()) { $keys[] = $row["configkey"]; } return $keys; } + private static function getAppValues($app) { + if (!isset(self::$cache[$app])) { + self::$cache[$app] = array(); + } + if (array_search($app, self::$appsLoaded) === false) { + $query = OC_DB::prepare('SELECT `configvalue`, `configkey` FROM `*PREFIX*appconfig`' + . ' WHERE `appid` = ?'); + $result = $query->execute(array($app)); + while ($row = $result->fetchRow()) { + self::$cache[$app][$row['configkey']] = $row['configvalue']; + } + self::$appsLoaded[] = $app; + } + return self::$cache[$app]; + } + /** * @brief Gets the config value * @param string $app app @@ -89,15 +110,18 @@ class OC_Appconfig{ * This function gets a value from the appconfig table. If the key does * not exist the default value will be returned */ - public static function getValue( $app, $key, $default = null ) { - // At least some magic in here :-) - $query = OC_DB::prepare( 'SELECT `configvalue` FROM `*PREFIX*appconfig`' - .' WHERE `appid` = ? AND `configkey` = ?' ); - $result = $query->execute( array( $app, $key )); - $row = $result->fetchRow(); - if($row) { - return $row["configvalue"]; - }else{ + public static function getValue($app, $key, $default = null) { + if (!isset(self::$cache[$app])) { + self::$cache[$app] = array(); + } + if (isset(self::$cache[$app][$key])) { + return self::$cache[$app][$key]; + } + $values = self::getAppValues($app); + if (isset($values[$key])) { + return $values[$key]; + } else { + self::$cache[$app][$key] = $default; return $default; } } @@ -109,8 +133,11 @@ class OC_Appconfig{ * @return bool */ public static function hasKey($app, $key) { - $exists = self::getKeys( $app ); - return in_array( $key, $exists ); + if (isset(self::$cache[$app]) and isset(self::$cache[$app][$key])) { + return true; + } + $exists = self::getKeys($app); + return in_array($key, $exists); } /** @@ -122,17 +149,16 @@ class OC_Appconfig{ * * Sets a value. If the key did not exist before it will be created. */ - public static function setValue( $app, $key, $value ) { + public static function setValue($app, $key, $value) { // Does the key exist? yes: update. No: insert - if(! self::hasKey($app, $key)) { - $query = OC_DB::prepare( 'INSERT INTO `*PREFIX*appconfig` ( `appid`, `configkey`, `configvalue` )' - .' VALUES( ?, ?, ? )' ); - $query->execute( array( $app, $key, $value )); - } - else{ - $query = OC_DB::prepare( 'UPDATE `*PREFIX*appconfig` SET `configvalue` = ?' - .' WHERE `appid` = ? AND `configkey` = ?' ); - $query->execute( array( $value, $app, $key )); + if (!self::hasKey($app, $key)) { + $query = OC_DB::prepare('INSERT INTO `*PREFIX*appconfig` ( `appid`, `configkey`, `configvalue` )' + . ' VALUES( ?, ?, ? )'); + $query->execute(array($app, $key, $value)); + } else { + $query = OC_DB::prepare('UPDATE `*PREFIX*appconfig` SET `configvalue` = ?' + . ' WHERE `appid` = ? AND `configkey` = ?'); + $query->execute(array($value, $app, $key)); } // TODO where should this be documented? \OC_Hook::emit('OC_Appconfig', 'post_set_value', array( @@ -140,6 +166,10 @@ class OC_Appconfig{ 'key' => $key, 'value' => $value )); + if (!isset(self::$cache[$app])) { + self::$cache[$app] = array(); + } + self::$cache[$app][$key] = $value; } /** @@ -150,10 +180,13 @@ class OC_Appconfig{ * * Deletes a key. */ - public static function deleteKey( $app, $key ) { + public static function deleteKey($app, $key) { // Boring! - $query = OC_DB::prepare( 'DELETE FROM `*PREFIX*appconfig` WHERE `appid` = ? AND `configkey` = ?' ); - $query->execute( array( $app, $key )); + $query = OC_DB::prepare('DELETE FROM `*PREFIX*appconfig` WHERE `appid` = ? AND `configkey` = ?'); + $query->execute(array($app, $key)); + if (isset(self::$cache[$app]) and isset(self::$cache[$app][$key])) { + unset(self::$cache[$app][$key]); + } return true; } @@ -165,44 +198,46 @@ class OC_Appconfig{ * * Removes all keys in appconfig belonging to the app. */ - public static function deleteApp( $app ) { + public static function deleteApp($app) { // Nothing special - $query = OC_DB::prepare( 'DELETE FROM `*PREFIX*appconfig` WHERE `appid` = ?' ); - $query->execute( array( $app )); + $query = OC_DB::prepare('DELETE FROM `*PREFIX*appconfig` WHERE `appid` = ?'); + $query->execute(array($app)); + self::$cache[$app] = array(); return true; } /** * get multiply values, either the app or key can be used as wildcard by setting it to false + * * @param app * @param key * @return array */ public static function getValues($app, $key) { - if($app!==false and $key!==false) { + if ($app !== false and $key !== false) { return false; } - $fields='`configvalue`'; - $where='WHERE'; - $params=array(); - if($app!==false) { - $fields.=', `configkey`'; - $where.=' `appid` = ?'; - $params[]=$app; - $key='configkey'; - }else{ - $fields.=', `appid`'; - $where.=' `configkey` = ?'; - $params[]=$key; - $key='appid'; + $fields = '`configvalue`'; + $where = 'WHERE'; + $params = array(); + if ($app !== false) { + $fields .= ', `configkey`'; + $where .= ' `appid` = ?'; + $params[] = $app; + $key = 'configkey'; + } else { + $fields .= ', `appid`'; + $where .= ' `configkey` = ?'; + $params[] = $key; + $key = 'appid'; } - $queryString='SELECT '.$fields.' FROM `*PREFIX*appconfig` '.$where; - $query=OC_DB::prepare($queryString); - $result=$query->execute($params); - $values=array(); - while($row=$result->fetchRow()) { - $values[$row[$key]]=$row['configvalue']; + $queryString = 'SELECT ' . $fields . ' FROM `*PREFIX*appconfig` ' . $where; + $query = OC_DB::prepare($queryString); + $result = $query->execute($params); + $values = array(); + while ($row = $result->fetchRow()) { + $values[$row[$key]] = $row['configvalue']; } return $values; } diff --git a/lib/private/appframework/utility/simplecontainer.php b/lib/private/appframework/utility/simplecontainer.php index 7e4db63bde5..e631e657756 100644 --- a/lib/private/appframework/utility/simplecontainer.php +++ b/lib/private/appframework/utility/simplecontainer.php @@ -3,7 +3,7 @@ namespace OC\AppFramework\Utility; // register 3rdparty autoloaders -require_once __DIR__ . '/../../../../3rdparty/Pimple/Pimple.php'; +require_once 'Pimple/Pimple.php'; /** * Class SimpleContainer diff --git a/lib/private/db/mdb2schemareader.php b/lib/private/db/mdb2schemareader.php index 511bd1c90bd..b1fd2454cb0 100644 --- a/lib/private/db/mdb2schemareader.php +++ b/lib/private/db/mdb2schemareader.php @@ -183,6 +183,14 @@ class MDB2SchemaReader { $primary = $this->asBool($child); $options['primary'] = $primary; break; + case 'precision': + $precision = (string)$child; + $options['precision'] = $precision; + break; + case 'scale': + $scale = (string)$child; + $options['scale'] = $scale; + break; default: throw new \DomainException('Unknown element: ' . $child->getName()); diff --git a/lib/private/db/statementwrapper.php b/lib/private/db/statementwrapper.php index b8da1afc0e5..5e89261d936 100644 --- a/lib/private/db/statementwrapper.php +++ b/lib/private/db/statementwrapper.php @@ -30,25 +30,6 @@ class OC_DB_StatementWrapper { } /** - * provide numRows - */ - public function numRows() { - $type = OC_Config::getValue( "dbtype", "sqlite" ); - if ($type == 'oci') { - // OCI doesn't have a queryString, just do a rowCount for now - return $this->statement->rowCount(); - } - $regex = '/^SELECT\s+(?:ALL\s+|DISTINCT\s+)?(?:.*?)\s+FROM\s+(.*)$/i'; - $queryString = $this->statement->getWrappedStatement()->queryString; - if (preg_match($regex, $queryString, $output) > 0) { - $query = OC_DB::prepare("SELECT COUNT(*) FROM {$output[1]}"); - return $query->execute($this->lastArguments)->fetchColumn(); - }else{ - return $this->statement->rowCount(); - } - } - - /** * make execute return the result instead of a bool */ public function execute($input=array()) { diff --git a/lib/private/eventsource.php b/lib/private/eventsource.php index a83084d9251..4df0bc2e7cd 100644 --- a/lib/private/eventsource.php +++ b/lib/private/eventsource.php @@ -64,13 +64,13 @@ class OC_EventSource{ } if($this->fallback) { $response='<script type="text/javascript">window.parent.OC.EventSource.fallBackCallBack(' - .$this->fallBackId.',"'.$type.'",'.json_encode($data).')</script>'.PHP_EOL; + .$this->fallBackId.',"' . $type . '",' . OCP\JSON::encode($data) . ')</script>' . PHP_EOL; echo $response; }else{ if($type) { - echo 'event: '.$type.PHP_EOL; + echo 'event: ' . $type.PHP_EOL; } - echo 'data: '.json_encode($data).PHP_EOL; + echo 'data: ' . OCP\JSON::encode($data) . PHP_EOL; } echo PHP_EOL; flush(); diff --git a/lib/private/fileproxy.php b/lib/private/fileproxy.php index 52ec79b4bdb..2997aaf81b6 100644 --- a/lib/private/fileproxy.php +++ b/lib/private/fileproxy.php @@ -67,7 +67,11 @@ class OC_FileProxy{ self::$proxies[]=$proxy; } - public static function getProxies($operation) { + public static function getProxies($operation = null) { + if ($operation === null) { + // return all + return self::$proxies; + } $proxies=array(); foreach(self::$proxies as $proxy) { if(method_exists($proxy, $operation)) { diff --git a/lib/private/files/storage/local.php b/lib/private/files/storage/local.php index 02e8df4af4e..db3c6bfca3a 100644 --- a/lib/private/files/storage/local.php +++ b/lib/private/files/storage/local.php @@ -256,7 +256,7 @@ if (\OC_Util::runningOnWindows()) { public function free_space($path) { $space = @disk_free_space($this->datadir . $path); - if ($space === false) { + if ($space === false || is_null($space)) { return \OC\Files\SPACE_UNKNOWN; } return $space; diff --git a/lib/private/group/group.php b/lib/private/group/group.php index bcd2419b309..8d2aa87a788 100644 --- a/lib/private/group/group.php +++ b/lib/private/group/group.php @@ -18,7 +18,12 @@ class Group { /** * @var \OC\User\User[] $users */ - private $users; + private $users = array(); + + /** + * @var bool $usersLoaded + */ + private $usersLoaded; /** * @var \OC_Group_Backend[] | \OC_Group_Database[] $backend @@ -26,7 +31,7 @@ class Group { private $backends; /** - * @var \OC\Hooks\PublicEmitter $emitter; + * @var \OC\Hooks\PublicEmitter $emitter */ private $emitter; @@ -58,7 +63,7 @@ class Group { * @return \OC\User\User[] */ public function getUsers() { - if ($this->users) { + if ($this->usersLoaded) { return $this->users; } @@ -74,6 +79,7 @@ class Group { } $this->users = $this->getVerifiedUsers($userIds); + $this->usersLoaded = true; return $this->users; } @@ -84,8 +90,12 @@ class Group { * @return bool */ public function inGroup($user) { + if (isset($this->users[$user->getUID()])) { + return true; + } foreach ($this->backends as $backend) { if ($backend->inGroup($user->getUID(), $this->gid)) { + $this->users[$user->getUID()] = $user; return true; } } @@ -185,6 +195,7 @@ class Group { * @return \OC\User\User[] */ public function searchDisplayName($search, $limit = null, $offset = null) { + $users = array(); foreach ($this->backends as $backend) { if ($backend->implementsActions(OC_GROUP_BACKEND_GET_DISPLAYNAME)) { $userIds = array_keys($backend->displayNamesInGroup($this->gid, $search, $limit, $offset)); @@ -229,17 +240,17 @@ class Group { /** * @brief returns all the Users from an array that really exists - * @param $userIds an array containing user IDs - * @return an Array with the userId as Key and \OC\User\User as value + * @param string[] $userIds an array containing user IDs + * @return \OC\User\User[] an Array with the userId as Key and \OC\User\User as value */ private function getVerifiedUsers($userIds) { - if(!is_array($userIds)) { + if (!is_array($userIds)) { return array(); } $users = array(); foreach ($userIds as $userId) { $user = $this->userManager->get($userId); - if(!is_null($user)) { + if (!is_null($user)) { $users[$userId] = $user; } } diff --git a/lib/private/hook.php b/lib/private/hook.php index 8516cf0dcff..b63b442c31b 100644 --- a/lib/private/hook.php +++ b/lib/private/hook.php @@ -97,4 +97,12 @@ class OC_Hook{ self::$registered=array(); } } + + /** + * DO NOT USE! + * For unit tests ONLY! + */ + static public function getHooks() { + return self::$registered; + } } diff --git a/lib/private/json.php b/lib/private/json.php index 6ba0b13806b..6a9e5a2df5e 100644 --- a/lib/private/json.php +++ b/lib/private/json.php @@ -109,7 +109,16 @@ class OC_JSON{ if($setContentType) { self::setContentTypeHeader(); } - array_walk_recursive($data, array('OC_JSON', 'to_string')); - echo json_encode($data); + echo self::encode($data); + } + + /** + * Encode JSON + */ + public static function encode($data) { + if (is_array($data)) { + array_walk_recursive($data, array('OC_JSON', 'to_string')); + } + return json_encode($data); } } diff --git a/lib/private/memcache/apcu.php b/lib/private/memcache/apcu.php index ccc1aa6e562..dac0f5f208a 100644 --- a/lib/private/memcache/apcu.php +++ b/lib/private/memcache/apcu.php @@ -12,7 +12,7 @@ class APCu extends APC { public function clear($prefix = '') { $ns = $this->getNamespace() . $prefix; $ns = preg_quote($ns, '/'); - $iter = new \APCIterator('/^'.$ns.'/'); + $iter = new \APCIterator('user', '/^'.$ns.'/'); return apc_delete($iter); } diff --git a/lib/private/memcache/xcache.php b/lib/private/memcache/xcache.php index 33de30562f9..1337a7ad612 100644 --- a/lib/private/memcache/xcache.php +++ b/lib/private/memcache/xcache.php @@ -8,9 +8,13 @@ namespace OC\Memcache; +/** + * See http://xcache.lighttpd.net/wiki/XcacheApi for provided constants and + * functions etc. + */ class XCache extends Cache { /** - * entries in XCache gets namespaced to prevent collisions between owncloud instances and users + * entries in XCache gets namespaced to prevent collisions between ownCloud instances and users */ protected function getNameSpace() { return $this->prefix; @@ -37,24 +41,32 @@ class XCache extends Cache { } public function clear($prefix='') { - xcache_unset_by_prefix($this->getNamespace().$prefix); + if (function_exists('xcache_unset_by_prefix')) { + return xcache_unset_by_prefix($this->getNamespace().$prefix); + } else { + // Since we can not clear by prefix, we just clear the whole cache. + xcache_clear_cache(\XC_TYPE_VAR, 0); + } return true; } static public function isAvailable(){ if (!extension_loaded('xcache')) { return false; - } elseif (\OC::$CLI) { + } + if (\OC::$CLI) { return false; - }else{ - return true; } - } -} - -if(!function_exists('xcache_unset_by_prefix')) { - function xcache_unset_by_prefix($prefix) { - // Since we can't clear targetted cache, we'll clear all. :( - xcache_clear_cache(\XC_TYPE_VAR, 0); + if (!function_exists('xcache_unset_by_prefix') && ini_get('xcache.admin.enable_auth')) { + // We do not want to use XCache if we can not clear it without + // using the administration function xcache_clear_cache() + // AND administration functions are password-protected. + return false; + } + $var_size = (int) ini_get('xcache.var_size'); + if (!$var_size) { + return false; + } + return true; } } diff --git a/lib/private/mimetypes.list.php b/lib/private/mimetypes.list.php index 8ab8ac81bd8..740982910e0 100644 --- a/lib/private/mimetypes.list.php +++ b/lib/private/mimetypes.list.php @@ -82,7 +82,7 @@ return array( 'mov'=>'video/quicktime', 'webm'=>'video/webm', 'wmv'=>'video/x-ms-asf', - 'py'=>'text/x-script.phyton', + 'py'=>'text/x-script.python', 'vcf' => 'text/vcard', 'vcard' => 'text/vcard', 'doc'=>'application/msword', @@ -103,5 +103,12 @@ return array( 'markdown' => 'text/markdown', 'mdown' => 'text/markdown', 'mdwn' => 'text/markdown', - 'reveal' => 'text/reveal' + 'reveal' => 'text/reveal', + 'c' => 'text/x-c', + 'cc' => 'text/x-c', + 'cpp' => 'text/x-c++src', + 'c++' => 'text/x-c++src', + 'sh' => 'text/x-shellscript', + 'bash' => 'text/x-shellscript', + 'sh-lib' => 'text/x-shellscript', ); diff --git a/lib/private/router.php b/lib/private/router.php index dbaca9e0d5d..19c1e4473ec 100644 --- a/lib/private/router.php +++ b/lib/private/router.php @@ -67,7 +67,8 @@ class OC_Router { $this->useCollection($app); require_once $file; $collection = $this->getCollection($app); - $this->root->addCollection($collection, '/apps/'.$app); + $collection->addPrefix('/apps/'.$app); + $this->root->addCollection($collection); } $this->useCollection('root'); require_once 'settings/routes.php'; @@ -76,7 +77,8 @@ class OC_Router { // include ocs routes require_once 'ocs/routes.php'; $collection = $this->getCollection('ocs'); - $this->root->addCollection($collection, '/ocs'); + $collection->addPrefix('/ocs'); + $this->root->addCollection($collection); } protected function getCollection($name) { diff --git a/lib/private/server.php b/lib/private/server.php index 77c3732a9ca..bee70dec2df 100644 --- a/lib/private/server.php +++ b/lib/private/server.php @@ -69,10 +69,18 @@ class Server extends SimpleContainer implements IServerContainer { return new Root($manager, $view, $user); }); $this->registerService('UserManager', function($c) { - return new \OC\User\Manager(); + /** + * @var SimpleContainer $c + * @var \OC\AllConfig $config + */ + $config = $c->query('AllConfig'); + return new \OC\User\Manager($config); }); $this->registerService('UserSession', function($c) { - /** @var $c SimpleContainer */ + /** + * @var SimpleContainer $c + * @var \OC\User\Manager $manager + */ $manager = $c->query('UserManager'); $userSession = new \OC\User\Session($manager, \OC::$session); $userSession->listen('\OC\User', 'preCreateUser', function ($uid, $password) { diff --git a/lib/private/session/internal.php b/lib/private/session/internal.php index 60aecccc8aa..a7c9e2fdefd 100644 --- a/lib/private/session/internal.php +++ b/lib/private/session/internal.php @@ -26,10 +26,21 @@ class Internal extends Memory { } public function __destruct() { - $_SESSION = $this->data; + $_SESSION = array_merge($_SESSION, $this->data); session_write_close(); } + /** + * @param string $key + */ + public function remove($key) { + // also remove it from $_SESSION to prevent re-setting the old value during the merge + if (isset($_SESSION[$key])) { + unset($_SESSION[$key]); + } + parent::remove($key); + } + public function clear() { session_unset(); @session_regenerate_id(true); diff --git a/lib/private/session/memory.php b/lib/private/session/memory.php index c148ff4b9b9..134cee582ed 100644 --- a/lib/private/session/memory.php +++ b/lib/private/session/memory.php @@ -11,7 +11,7 @@ namespace OC\Session; /** * Class Internal * - * store session data in an in-memory array, not persistance + * store session data in an in-memory array, not persistent * * @package OC\Session */ diff --git a/lib/private/tags.php b/lib/private/tags.php index 9fdb35a7d6e..fe7de1073a0 100644 --- a/lib/private/tags.php +++ b/lib/private/tags.php @@ -480,7 +480,7 @@ class Tags implements \OCP\ITags { return $this->getIdsForTag(self::TAG_FAVORITE); } catch(\Exception $e) { \OCP\Util::writeLog('core', __METHOD__.', exception: ' . $e->getMessage(), - \OCP\Util::ERROR); + \OCP\Util::DEBUG); return array(); } } diff --git a/lib/private/template.php b/lib/private/template.php index 9b2c1211e61..b2c3a20f281 100644 --- a/lib/private/template.php +++ b/lib/private/template.php @@ -292,9 +292,8 @@ class OC_Template extends \OC\Template\Base { if (!empty($hint)) { $hint = '<pre>'.$hint.'</pre>'; } - $l = OC_L10N::get('lib'); while (method_exists($exception, 'previous') && $exception = $exception->previous()) { - $error_msg .= '<br/>'.$l->t('Caused by:').' '; + $error_msg .= '<br/>Caused by:' . ' '; if ($exception->getCode()) { $error_msg .= '['.$exception->getCode().'] '; } diff --git a/lib/private/templatelayout.php b/lib/private/templatelayout.php index 625f3424a04..d5cd5039753 100644 --- a/lib/private/templatelayout.php +++ b/lib/private/templatelayout.php @@ -46,6 +46,7 @@ class OC_TemplateLayout extends OC_Template { $user_displayname = OC_User::getDisplayName(); $this->assign( 'user_displayname', $user_displayname ); $this->assign( 'user_uid', OC_User::getUser() ); + $this->assign( 'appsmanagement_active', strpos(OC_Request::requestUri(), OC_Helper::linkToRoute('settings_apps')) === 0 ); $this->assign('enableAvatars', \OC_Config::getValue('enable_avatars', true)); } else if ($renderas == 'guest' || $renderas == 'error') { parent::__construct('core', 'layout.guest'); diff --git a/lib/private/user/manager.php b/lib/private/user/manager.php index 703c8cd7413..cf83a75ba25 100644 --- a/lib/private/user/manager.php +++ b/lib/private/user/manager.php @@ -35,7 +35,16 @@ class Manager extends PublicEmitter { */ private $cachedUsers = array(); - public function __construct() { + /** + * @var \OC\AllConfig $config + */ + private $config; + + /** + * @param \OC\AllConfig $config + */ + public function __construct($config = null) { + $this->config = $config; $cachedUsers = $this->cachedUsers; $this->listen('\OC\User', 'postDelete', function ($user) use (&$cachedUsers) { $i = array_search($user, $cachedUsers); @@ -103,7 +112,7 @@ class Manager extends PublicEmitter { if (isset($this->cachedUsers[$uid])) { return $this->cachedUsers[$uid]; } - $this->cachedUsers[$uid] = new User($uid, $backend, $this); + $this->cachedUsers[$uid] = new User($uid, $backend, $this, $this->config); return $this->cachedUsers[$uid]; } @@ -141,7 +150,7 @@ class Manager extends PublicEmitter { */ public function checkPassword($loginname, $password) { foreach ($this->backends as $backend) { - if($backend->implementsActions(\OC_USER_BACKEND_CHECK_PASSWORD)) { + if ($backend->implementsActions(\OC_USER_BACKEND_CHECK_PASSWORD)) { $uid = $backend->checkPassword($loginname, $password); if ($uid !== false) { return $this->getUserObject($uid, $backend); @@ -234,7 +243,7 @@ class Manager extends PublicEmitter { // Allowed are: "a-z", "A-Z", "0-9" and "_.@-" if (preg_match('/[^a-zA-Z0-9 _\.@\-]/', $uid)) { throw new \Exception('Only the following characters are allowed in a username:' - . ' "a-z", "A-Z", "0-9", and "_.@-"'); + . ' "a-z", "A-Z", "0-9", and "_.@-"'); } // No empty username if (trim($uid) == '') { diff --git a/lib/private/user/user.php b/lib/private/user/user.php index b4f33fa73cc..ef5364cbf7b 100644 --- a/lib/private/user/user.php +++ b/lib/private/user/user.php @@ -43,11 +43,17 @@ class User { private $home; /** + * @var \OC\AllConfig $config + */ + private $config; + + /** * @param string $uid * @param \OC_User_Backend $backend - * @param Emitter $emitter + * @param \OC\Hooks\Emitter $emitter + * @param \OC\AllConfig $config */ - public function __construct($uid, $backend, $emitter = null) { + public function __construct($uid, $backend, $emitter = null, $config = null) { $this->uid = $uid; if ($backend and $backend->implementsActions(OC_USER_BACKEND_GET_DISPLAYNAME)) { $this->displayName = $backend->getDisplayName($uid); @@ -56,8 +62,13 @@ class User { } $this->backend = $backend; $this->emitter = $emitter; - $enabled = \OC_Preferences::getValue($uid, 'core', 'enabled', 'true'); //TODO: DI for OC_Preferences - $this->enabled = ($enabled === 'true'); + $this->config = $config; + if ($this->config) { + $enabled = $this->config->getUserValue($uid, 'core', 'enabled', 'true'); + $this->enabled = ($enabled === 'true'); + } else { + $this->enabled = true; + } } /** @@ -141,8 +152,10 @@ class User { if (!$this->home) { if ($this->backend->implementsActions(\OC_USER_BACKEND_GET_HOME) and $home = $this->backend->getHome($this->uid)) { $this->home = $home; + } elseif ($this->config) { + $this->home = $this->config->getSystemValue('datadirectory') . '/' . $this->uid; } else { - $this->home = \OC_Config::getValue("datadirectory", \OC::$SERVERROOT . "/data") . '/' . $this->uid; //TODO switch to Config object once implemented + $this->home = \OC::$SERVERROOT . '/data/' . $this->uid; } } return $this->home; @@ -175,7 +188,11 @@ class User { * @return bool */ public function canChangeDisplayName() { - return $this->backend->implementsActions(\OC_USER_BACKEND_SET_DISPLAYNAME); + if ($this->config and $this->config->getSystemValue('allow_user_to_change_display_name') === false) { + return false; + } else { + return $this->backend->implementsActions(\OC_USER_BACKEND_SET_DISPLAYNAME); + } } /** @@ -194,7 +211,9 @@ class User { */ public function setEnabled($enabled) { $this->enabled = $enabled; - $enabled = ($enabled) ? 'true' : 'false'; - \OC_Preferences::setValue($this->uid, 'core', 'enabled', $enabled); + if ($this->config) { + $enabled = ($enabled) ? 'true' : 'false'; + $this->config->setUserValue($this->uid, 'core', 'enabled', $enabled); + } } } diff --git a/lib/private/util.php b/lib/private/util.php index a73564b3f68..c0e618cc863 100755 --- a/lib/private/util.php +++ b/lib/private/util.php @@ -1085,7 +1085,11 @@ class OC_Util { } // XCache if (function_exists('xcache_clear_cache')) { - xcache_clear_cache(XC_TYPE_VAR, 0); + if (ini_get('xcache.admin.enable_auth')) { + OC_Log::write('core', 'XCache opcode cache will not be cleared because "xcache.admin.enable_auth" is enabled.', \OC_Log::WARN); + } else { + xcache_clear_cache(XC_TYPE_PHP, 0); + } } // Opcache (PHP >= 5.5) if (function_exists('opcache_reset')) { diff --git a/lib/public/db.php b/lib/public/db.php index c9997c79c3c..4a19d78d444 100644 --- a/lib/public/db.php +++ b/lib/public/db.php @@ -39,9 +39,9 @@ class DB { * @param string $query Query string * @param int $limit Limit of the SQL statement * @param int $offset Offset of the SQL statement - * @return \MDB2_Statement_Common prepared SQL query + * @return \Doctrine\DBAL\Statement prepared SQL query * - * SQL query via MDB2 prepare(), needs to be execute()'d! + * SQL query via Doctrine prepare(), needs to be execute()'d! */ static public function prepare( $query, $limit=null, $offset=null ) { return(\OC_DB::prepare($query, $limit, $offset)); @@ -73,7 +73,7 @@ class DB { * @param $table string The optional table name (will replace *PREFIX*) and add sequence suffix * @return int * - * MDB2 lastInsertID() + * \Doctrine\DBAL\Connection lastInsertID() * * Call this method right after the insert command or other functions may * cause trouble! @@ -86,18 +86,18 @@ class DB { * Start a transaction */ public static function beginTransaction() { - return(\OC_DB::beginTransaction()); + \OC_DB::beginTransaction(); } /** * Commit the database changes done during a transaction that is in progress */ public static function commit() { - return(\OC_DB::commit()); + \OC_DB::commit(); } /** - * Check if a result is an error, works with MDB2 and PDOException + * Check if a result is an error, works with Doctrine * @param mixed $result * @return bool */ diff --git a/lib/public/iconfig.php b/lib/public/iconfig.php index da6b6c54843..1d0f8e0015c 100644 --- a/lib/public/iconfig.php +++ b/lib/public/iconfig.php @@ -36,6 +36,7 @@ namespace OCP; interface IConfig { /** * Sets a new system wide value + * * @param string $key the key of the value, under which will be saved * @param string $value the value that should be stored * @todo need a use case for this @@ -44,14 +45,17 @@ interface IConfig { /** * Looks up a system wide defined value + * * @param string $key the key of the value, under which it was saved + * @param string $default the default value to be returned if the value isn't set * @return string the saved value */ - public function getSystemValue($key); + public function getSystemValue($key, $default = ''); /** * Writes a new app wide value + * * @param string $appName the appName that we want to store the value under * @param string $key the key of the value, under which will be saved * @param string $value the value that should be stored @@ -60,15 +64,18 @@ interface IConfig { /** * Looks up an app wide defined value + * * @param string $appName the appName that we stored the value under * @param string $key the key of the value, under which it was saved + * @param string $default the default value to be returned if the value isn't set * @return string the saved value */ - public function getAppValue($appName, $key); + public function getAppValue($appName, $key, $default = ''); /** * Set a user defined value + * * @param string $userId the userId of the user that we want to store the value under * @param string $appName the appName that we want to store the value under * @param string $key the key under which the value is being stored @@ -78,9 +85,11 @@ interface IConfig { /** * Shortcut for getting a user defined value + * * @param string $userId the userId of the user that we want to store the value under * @param string $appName the appName that we stored the value under * @param string $key the key under which the value is being stored + * @param string $default the default value to be returned if the value isn't set */ - public function getUserValue($userId, $appName, $key); + public function getUserValue($userId, $appName, $key, $default = ''); } diff --git a/lib/public/json.php b/lib/public/json.php index 134f724b0e6..831e3ef1cf6 100644 --- a/lib/public/json.php +++ b/lib/public/json.php @@ -169,4 +169,12 @@ class JSON { public static function checkAdminUser() { return(\OC_JSON::checkAdminUser()); } + + /** + * Encode JSON + * @param array $data + */ + public static function encode($data) { + return(\OC_JSON::encode($data)); + } } diff --git a/lib/public/util.php b/lib/public/util.php index 1d76fd1e1f7..8e85f9afc3f 100644 --- a/lib/public/util.php +++ b/lib/public/util.php @@ -103,9 +103,8 @@ class Util { } // include cause - $l = \OC_L10N::get('lib'); while (method_exists($ex, 'getPrevious') && $ex = $ex->getPrevious()) { - $message .= ' - '.$l->t('Caused by:').' '; + $message .= ' - Caused by:' . ' '; $message .= $ex->getMessage(); if ($ex->getCode()) { $message .= '[' . $ex->getCode() . '] '; diff --git a/settings/l10n/da.php b/settings/l10n/da.php index 00e1fd68b3d..6fe3cf6c396 100644 --- a/settings/l10n/da.php +++ b/settings/l10n/da.php @@ -2,6 +2,8 @@ $TRANSLATIONS = array( "Unable to load list from App Store" => "Kunne ikke indlæse listen fra App Store", "Authentication error" => "Adgangsfejl", +"Your full name has been changed." => "Dit fulde navn er blevet ændret.", +"Unable to change full name" => "Ikke i stand til at ændre dit fulde navn", "Group already exists" => "Gruppen findes allerede", "Unable to add group" => "Gruppen kan ikke oprettes", "Email saved" => "Email adresse gemt", @@ -44,19 +46,33 @@ $TRANSLATIONS = array( "A valid username must be provided" => "Et gyldigt brugernavn skal angives", "Error creating user" => "Fejl ved oprettelse af bruger", "A valid password must be provided" => "En gyldig adgangskode skal angives", +"Warning: Home directory for user \"{user}\" already exists" => "Advarsel: Hjemmemappen for bruger \"{user}\" findes allerede", "__language_name__" => "Dansk", +"Everything (fatal issues, errors, warnings, info, debug)" => "Alt (alvorlige fejl, fejl, advarsler, info, debug)", +"Info, warnings, errors and fatal issues" => "Info, advarsler, fejl og alvorlige fejl", +"Warnings, errors and fatal issues" => "Advarsler, fejl og alvorlige fejl", +"Errors and fatal issues" => "Fejl og alvorlige fejl", +"Fatal issues only" => "Kun alvorlige fejl", "Security Warning" => "Sikkerhedsadvarsel", +"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "Du tilgår %s via HTTP. Vi anbefaler at du konfigurerer din server til i stedet at kræve HTTPS.", "Your data directory and your files are probably accessible from the internet. The .htaccess file 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." => "Din data mappe og dine filer er muligvis tilgængelige fra internettet. .htaccess filen virker ikke. Vi anbefaler på det kraftigste at du konfigurerer din webserver så data mappen ikke længere er tilgængelig, eller at du flytter data mappen uden for webserverens dokument rod. ", "Setup Warning" => "Opsætnings Advarsel", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Din webserver er endnu ikke sat op til at tillade fil synkronisering fordi WebDAV grænsefladen virker ødelagt.", "Please double check the <a href=\"%s\">installation guides</a>." => "Dobbelttjek venligst <a href='%s'>installations vejledningerne</a>.", "Module 'fileinfo' missing" => "Module 'fileinfo' mangler", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "PHP modulet 'fileinfo' mangler. Vi anbefaler stærkt at aktivere dette modul til at få de bedste resultater med mime-type detektion.", +"Your PHP version is outdated" => "Din PHP-version er forældet", +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly." => "Din PHP-version er forældet. Vi anbefaler at du opgraderer til 5.3.8 eller nyere, fordi ældre versioner har kendte fejl. Det er derfor muligt at installationen ikke fungerer korrekt.", "Locale not working" => "Landestandard fungerer ikke", +"System locale can not be set to a one which supports UTF-8." => "Systemets locale kan ikke sættes til et der bruger UTF-8.", +"This means that there might be problems with certain characters in file names." => "Det betyder at der kan være problemer med visse tegn i filnavne.", +"We strongly suggest to install the required packages on your system to support one of the following locales: %s." => "Vi anbefaler at du installerer den krævede pakke på dit system, for at understøtte følgende locales: %s.", "Internet connection not working" => "Internetforbindelse fungerer ikke", "This 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." => "Denne ownCloud-server har ikke en fungerende forbindelse til internettet. Det betyder, at visse funktioner som montering af eksterne drev, oplysninger om opdatering eller installation af 3.-parts applikationer ikke fungerer. Det vil sandsynligvis heller ikke fungere at tilgå filer fra eksterne drev eller informationsemails. Vi opfordrer til at etablere forbindelse til internettet for denne server, såfremt du ønsker samtlige funktioner.", "Cron" => "Cron", "Execute one task with each page loaded" => "Udføre en opgave med hver side indlæst", +"cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php er registreret til at en webcron service skal kalde cron.php hvert 15 minut over http.", +"Use systems cron service to call the cron.php file every 15 minutes." => "Brug systemets cron service til at kalde cron.php hvert 15. minut.", "Sharing" => "Deling", "Enable Share API" => "Aktiver Share API", "Allow apps to use the Share API" => "Tillad apps til at bruge Share API", @@ -100,6 +116,7 @@ $TRANSLATIONS = array( "Current password" => "Nuværende adgangskode", "New password" => "Nyt kodeord", "Change password" => "Skift kodeord", +"Full Name" => "Fulde navn", "Email" => "E-mail", "Your email address" => "Din emailadresse", "Fill in an email address to enable password recovery" => "Indtast en emailadresse for at kunne få påmindelse om adgangskode", @@ -108,12 +125,15 @@ $TRANSLATIONS = array( "Select new from Files" => "Vælg nyt fra Filer", "Remove image" => "Fjern billede", "Either png or jpg. Ideally square but you will be able to crop it." => "Enten png eller jpg. Ideelt firkantet men du har mulighed for at beskære det. ", +"Your avatar is provided by your original account." => "Din avatar kommer fra din oprindelige konto.", "Abort" => "Afbryd", "Choose as profile image" => "Vælg som profilbillede", "Language" => "Sprog", "Help translate" => "Hjælp med oversættelsen", "WebDAV" => "WebDAV", +"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" => "Brug denne adresse for at <a href=\"%s\" target=\"_blank\">tilgå dine filer via WebDAV</a>", "Encryption" => "Kryptering", +"The encryption app is no longer enabled, please decrypt all your files" => "Krypteringsprogrammet er ikke længere aktiveret. Dekrypter venligst alle dine filer", "Log-in password" => "Log-in kodeord", "Decrypt all Files" => "Dekrypter alle Filer ", "Login Name" => "Loginnavn", @@ -121,10 +141,12 @@ $TRANSLATIONS = array( "Admin Recovery Password" => "Administrator gendannelse kodeord", "Enter the recovery password in order to recover the users files during password change" => "Indtast et gendannelse kodeord for, at kunne gendanne brugerens filer ved ændring af kodeord", "Default Storage" => "Standard opbevaring", +"Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "Indtast venligst lagerkvote (f.eks. \"512 MB\" eller \"12 GB\")", "Unlimited" => "Ubegrænset", "Other" => "Andet", "Username" => "Brugernavn", "Storage" => "Opbevaring", +"change full name" => "ændre fulde navn", "set new password" => "skift kodeord", "Default" => "Standard" ); diff --git a/settings/l10n/el.php b/settings/l10n/el.php index 71a751c1a59..ab285389a5c 100644 --- a/settings/l10n/el.php +++ b/settings/l10n/el.php @@ -54,12 +54,15 @@ $TRANSLATIONS = array( "Errors and fatal issues" => "Σφάλματα και καίρια ζητήματα", "Fatal issues only" => "Καίρια ζητήματα μόνο", "Security Warning" => "Προειδοποίηση Ασφαλείας", +"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "Έχετε πρόσβαση στο %s μέσω HTTP. Προτείνουμε ανεπιφύλακτα να ρυθμίσετε το διακομιστή σας ώστε να απαιτεί χρήση HTTPS αντ' αυτού.", "Your data directory and your files are probably accessible from the internet. The .htaccess file 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 δεν δουλεύει. Σας προτείνουμε ανεπιφύλακτα να ρυθμίσετε το διακομιστή σας με τέτοιο τρόπο ώστε ο κατάλογος δεδομένων να μην είναι πλέον προσβάσιμος ή να μετακινήσετε τον κατάλογο δεδομένων έξω από τη ρίζα του καταλόγου του διακομιστή.", "Setup Warning" => "Ρύθμιση Προειδοποίησης", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Ο διακομιστής σας δεν έχει ρυθμιστεί κατάλληλα ώστε να επιτρέπει τον συγχρονισμό αρχείων γιατί η διεπαφή WebDAV πιθανόν να είναι κατεστραμμένη.", "Please double check the <a href=\"%s\">installation guides</a>." => "Ελέγξτε ξανά τις <a href=\"%s\">οδηγίες εγκατάστασης</a>.", "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. ", +"Your PHP version is outdated" => "Η έκδοση PHP είναι απαρχαιωμένη", +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly." => "Η έκδοση PHP είναι απαρχαιωμένη. Συνιστούμε ανεπιφύλακτα να ενημερώσετε στην 5.3.8 ή νεώτερη καθώς παλαιότερες εκδόσεις είναι γνωστό πως περιέχουν σφάλματα. Είναι πιθανόν ότι αυτή η εγκατάσταση δεν λειτουργεί σωστά.", "Locale not working" => "Η μετάφραση δεν δουλεύει", "System locale can not be set to a one which supports UTF-8." => "Οι ρυθμίσεις τοποθεσίας συστήματος δεν μπορούν να οριστούν σε κάποιες που δεν υποστηρίζουν UTF-8.", "This means that there might be problems with certain characters in file names." => "Αυτό σημαίνει ότι μπορεί να υπάρχουν προβλήματα με κάποιους χαρακτήρες στα ονόματα αρχείων.", @@ -122,6 +125,7 @@ $TRANSLATIONS = array( "Select new from Files" => "Επιλογή νέου από τα Αρχεία", "Remove image" => "Αφαίρεση εικόνας", "Either png or jpg. Ideally square but you will be able to crop it." => "Είτε png ή jpg. Ιδανικά τετράγωνη αλλά θα είστε σε θέση να την περικόψετε.", +"Your avatar is provided by your original account." => "Το άβατάρ σας παρέχεται από τον αρχικό σας λογαριασμό.", "Abort" => "Ματαίωση", "Choose as profile image" => "Επιλογή εικόνας προφίλ", "Language" => "Γλώσσα", @@ -129,6 +133,7 @@ $TRANSLATIONS = array( "WebDAV" => "WebDAV", "Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" => "Χρήση αυτής της διεύθυνσης <a href=\"%s\" target=\"_blank\">πρόσβαση των Αρχείων σας μέσω WebDAV</a>", "Encryption" => "Κρυπτογράφηση", +"The encryption app is no longer enabled, please decrypt all your files" => "Η εφαρμογή κρυπτογράφησης δεν είναι πλέον ενεργοποιημένη, παρακαλώ αποκρυπτογραφήστε όλα τα αρχεία σας", "Log-in password" => "Συνθηματικό εισόδου", "Decrypt all Files" => "Αποκρυπτογράφηση όλων των Αρχείων", "Login Name" => "Όνομα Σύνδεσης", diff --git a/settings/l10n/es_CL.php b/settings/l10n/es_CL.php new file mode 100644 index 00000000000..86e66bd4825 --- /dev/null +++ b/settings/l10n/es_CL.php @@ -0,0 +1,6 @@ +<?php +$TRANSLATIONS = array( +"Password" => "Clave", +"Username" => "Usuario" +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/es_MX.php b/settings/l10n/es_MX.php new file mode 100644 index 00000000000..520ab637ffc --- /dev/null +++ b/settings/l10n/es_MX.php @@ -0,0 +1,153 @@ +<?php +$TRANSLATIONS = array( +"Unable to load list from App Store" => "No se pudo cargar la lista desde el App Store", +"Authentication error" => "Error de autenticación", +"Your full name has been changed." => "Se ha cambiado su nombre completo.", +"Unable to change full name" => "No se puede cambiar el nombre completo", +"Group already exists" => "El grupo ya existe", +"Unable to add group" => "No se pudo añadir el grupo", +"Email saved" => "Correo electrónico guardado", +"Invalid email" => "Correo electrónico no válido", +"Unable to delete group" => "No se pudo eliminar el grupo", +"Unable to delete user" => "No se pudo eliminar el usuario", +"Language changed" => "Idioma cambiado", +"Invalid request" => "Petición no válida", +"Admins can't remove themself from the admin group" => "Los administradores no se pueden eliminar a ellos mismos del grupo de administrador", +"Unable to add user to group %s" => "No se pudo añadir el usuario al grupo %s", +"Unable to remove user from group %s" => "No se pudo eliminar al usuario del grupo %s", +"Couldn't update app." => "No se pudo actualizar la aplicación.", +"Wrong password" => "Contraseña incorrecta", +"No user supplied" => "No se especificó un usuario", +"Please provide an admin recovery password, otherwise all user data will be lost" => "Por favor facilite una contraseña de recuperación de administrador, sino podrían perderse todos los datos de usuario", +"Wrong admin recovery password. Please check the password and try again." => "Contraseña de recuperación de administrador incorrecta. Por favor compruebe la contraseña e inténtelo de nuevo.", +"Back-end doesn't support password change, but the users encryption key was successfully updated." => "El back-end no soporta cambios de contraseña, pero la clave de cifrado del usuario ha sido actualizada satisfactoriamente.", +"Unable to change password" => "No se ha podido cambiar la contraseña", +"Update to {appversion}" => "Actualizado a {appversion}", +"Disable" => "Desactivar", +"Enable" => "Activar", +"Please wait...." => "Espere, por favor....", +"Error while disabling app" => "Error mientras se desactivaba la aplicación", +"Error while enabling app" => "Error mientras se activaba la aplicación", +"Updating...." => "Actualizando....", +"Error while updating app" => "Error mientras se actualizaba la aplicación", +"Error" => "Error", +"Update" => "Actualizar", +"Updated" => "Actualizado", +"Select a profile picture" => "Seleccionar una imagen de perfil", +"Decrypting files... Please wait, this can take some time." => "Descifrando archivos... Espere por favor, esto puede llevar algo de tiempo.", +"Saving..." => "Guardando...", +"deleted" => "eliminado", +"undo" => "deshacer", +"Unable to remove user" => "Imposible eliminar al usuario", +"Groups" => "Grupos", +"Group Admin" => "Administrador del Grupo", +"Delete" => "Eliminar", +"add group" => "añadir Grupo", +"A valid username must be provided" => "Se debe proporcionar un nombre de usuario válido", +"Error creating user" => "Error al crear usuario", +"A valid password must be provided" => "Se debe proporcionar una contraseña válida", +"Warning: Home directory for user \"{user}\" already exists" => "Atención: el directorio de inicio para el usuario \"{user}\" ya existe.", +"__language_name__" => "Español (México)", +"Everything (fatal issues, errors, warnings, info, debug)" => "Todo (Información, Avisos, Errores, debug y problemas fatales)", +"Info, warnings, errors and fatal issues" => "Información, Avisos, Errores y problemas fatales", +"Warnings, errors and fatal issues" => "Advertencias, errores y problemas fatales", +"Errors and fatal issues" => "Errores y problemas fatales", +"Fatal issues only" => "Problemas fatales solamente", +"Security Warning" => "Advertencia de seguridad", +"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "Está ingresando a %s vía HTTP. Le recomendamos encarecidamente que configure su servidor para que requiera HTTPS.", +"Your data directory and your files are probably accessible from the internet. The .htaccess file 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." => "Su directorio de datos y archivos es probablemente accesible desde Internet pues el archivo .htaccess no está funcionando. Le sugerimos encarecidamente que configure su servidor web de modo que el directorio de datos no sea accesible o que mueva dicho directorio fuera de la raíz de documentos del servidor web.", +"Setup Warning" => "Advertencia de configuración", +"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Su servidor web aún no está configurado adecuadamente para permitir la sincronización de archivos ya que la interfaz WebDAV parece no estar funcionando.", +"Please double check the <a href=\"%s\">installation guides</a>." => "Por favor, vuelva a comprobar las <a href='%s'>guías de instalación</a>.", +"Module 'fileinfo' missing" => "No se ha encontrado el módulo \"fileinfo\"", +"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "No se ha encontrado el modulo PHP 'fileinfo'. Le recomendamos encarecidamente que habilite este módulo para obtener mejores resultados con la detección de tipos MIME.", +"Your PHP version is outdated" => "Su versión de PHP ha caducado", +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly." => "Su versión de PHP ha caducado. Le sugerimos encarecidamente que la actualize a 5.3.8 o a una más nueva porque normalmente las versiones antiguas no funcionan bien. Puede ser que esta instalación no esté funcionando bien por ello.", +"Locale not working" => "La configuración regional no está funcionando", +"System locale can not be set to a one which supports UTF-8." => "No se puede escoger una configuración regional que soporte UTF-8.", +"This means that there might be problems with certain characters in file names." => "Esto significa que puede haber problemas con ciertos caracteres en los nombres de los archivos.", +"We strongly suggest to install the required packages on your system to support one of the following locales: %s." => "Es muy recomendable instalar los paquetes necesarios para poder soportar una de las siguientes configuraciones regionales: %s. ", +"Internet connection not working" => "La conexión a Internet no está funcionando", +"This 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." => "Este servidor no tiene conexión a Internet. Esto significa que algunas de las características no funcionarán, como el montaje de almacenamiento externo, las notificaciones sobre actualizaciones, la instalación de aplicaciones de terceros, el acceso a los archivos de forma remota o el envío de correos electrónicos de notificación. Sugerimos habilitar una conexión a Internet en este servidor para disfrutar de todas las funciones.", +"Cron" => "Cron", +"Execute one task with each page loaded" => "Ejecutar una tarea con cada página cargada", +"cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php se registra en un servicio webcron para llamar a cron.php cada 15 minutos a través de HTTP.", +"Use systems cron service to call the cron.php file every 15 minutes." => "Utiliza el servicio cron del sistema para llamar al archivo cron.php cada 15 minutos.", +"Sharing" => "Compartiendo", +"Enable Share API" => "Activar API de Compartición", +"Allow apps to use the Share API" => "Permitir a las aplicaciones utilizar la API de Compartición", +"Allow links" => "Permitir enlaces", +"Allow users to share items to the public with links" => "Permitir a los usuarios compartir elementos con el público mediante enlaces", +"Allow public uploads" => "Permitir subidas públicas", +"Allow users to enable others to upload into their publicly shared folders" => "Permitir a los usuarios habilitar a otros para subir archivos en sus carpetas compartidas públicamente", +"Allow resharing" => "Permitir re-compartición", +"Allow users to share items shared with them again" => "Permitir a los usuarios compartir de nuevo elementos ya compartidos", +"Allow users to share with anyone" => "Permitir a los usuarios compartir con cualquier persona", +"Allow users to only share with users in their groups" => "Permitir a los usuarios compartir sólo con los usuarios en sus grupos", +"Allow mail notification" => "Permitir notificaciones por correo electrónico", +"Allow user to send mail notification for shared files" => "Permitir al usuario enviar notificaciones por correo electrónico de archivos compartidos", +"Security" => "Seguridad", +"Enforce HTTPS" => "Forzar HTTPS", +"Forces the clients to connect to %s via an encrypted connection." => "Forzar a los clientes a conectarse a %s por medio de una conexión cifrada.", +"Please connect to your %s via HTTPS to enable or disable the SSL enforcement." => "Por favor, conéctese a su %s a través de HTTPS para habilitar o deshabilitar la aplicación de SSL.", +"Log" => "Registro", +"Log level" => "Nivel de registro", +"More" => "Más", +"Less" => "Menos", +"Version" => "Versión", +"Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "Desarrollado por la <a href=\"http://ownCloud.org/contact\" target=\"_blank\">comunidad ownCloud</a>, el <a href=\"https://github.com/owncloud\" target=\"_blank\">código fuente</a> está bajo licencia <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>.", +"Add your App" => "Añade tu aplicación", +"More Apps" => "Más aplicaciones", +"Select an App" => "Seleccionar una aplicación", +"See application page at apps.owncloud.com" => "Ver la página de aplicaciones en apps.owncloud.com", +"<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-licencia otorgada por <span class=\"author\"></span>", +"User Documentation" => "Documentación de usuario", +"Administrator Documentation" => "Documentación de administrador", +"Online Documentation" => "Documentación en línea", +"Forum" => "Foro", +"Bugtracker" => "Rastreador de fallos", +"Commercial Support" => "Soporte comercial", +"Get the apps to sync your files" => "Obtener las aplicaciones para sincronizar sus archivos", +"Show First Run Wizard again" => "Mostrar nuevamente el Asistente de ejecución inicial", +"You have used <strong>%s</strong> of the available <strong>%s</strong>" => "Ha usado <strong>%s</strong> de los <strong>%s</strong> disponibles", +"Password" => "Contraseña", +"Your password was changed" => "Su contraseña ha sido cambiada", +"Unable to change your password" => "No se ha podido cambiar su contraseña", +"Current password" => "Contraseña actual", +"New password" => "Nueva contraseña", +"Change password" => "Cambiar contraseña", +"Full Name" => "Nombre completo", +"Email" => "Correo electrónico", +"Your email address" => "Su dirección de correo", +"Fill in an email address to enable password recovery" => "Escriba una dirección de correo electrónico para restablecer la contraseña", +"Profile picture" => "Foto de perfil", +"Upload new" => "Subir otra", +"Select new from Files" => "Seleccionar otra desde Archivos", +"Remove image" => "Borrar imagen", +"Either png or jpg. Ideally square but you will be able to crop it." => "Archivo PNG o JPG. Preferiblemente cuadrado, pero tendrás la posibilidad de recortarlo.", +"Your avatar is provided by your original account." => "Su avatar es proporcionado por su cuenta original.", +"Abort" => "Cancelar", +"Choose as profile image" => "Seleccionar como imagen de perfil", +"Language" => "Idioma", +"Help translate" => "Ayúdanos a traducir", +"WebDAV" => "WebDAV", +"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" => "Utilice esta dirección para <a href=\"%s\" target=\"_blank\">acceder a sus archivos vía WebDAV</a>", +"Encryption" => "Cifrado", +"The encryption app is no longer enabled, please decrypt all your files" => "La aplicación de cifrado ya no está activada, descifre todos sus archivos", +"Log-in password" => "Contraseña de acceso", +"Decrypt all Files" => "Descifrar archivos", +"Login Name" => "Nombre de usuario", +"Create" => "Crear", +"Admin Recovery Password" => "Recuperación de la contraseña de administración", +"Enter the recovery password in order to recover the users files during password change" => "Introduzca la contraseña de recuperación a fin de recuperar los archivos de los usuarios durante el cambio de contraseña.", +"Default Storage" => "Almacenamiento predeterminado", +"Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "Por favor indique la cúota de almacenamiento (ej: \"512 MB\" o \"12 GB\")", +"Unlimited" => "Ilimitado", +"Other" => "Otro", +"Username" => "Nombre de usuario", +"Storage" => "Almacenamiento", +"change full name" => "cambiar el nombre completo", +"set new password" => "establecer nueva contraseña", +"Default" => "Predeterminado" +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/fr.php b/settings/l10n/fr.php index a1b819af2ff..156533f6fa0 100644 --- a/settings/l10n/fr.php +++ b/settings/l10n/fr.php @@ -61,6 +61,8 @@ $TRANSLATIONS = array( "Please double check the <a href=\"%s\">installation guides</a>." => "Veuillez consulter à nouveau les <a href=\"%s\">guides d'installation</a>.", "Module 'fileinfo' missing" => "Module 'fileinfo' manquant", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Le module PHP 'fileinfo' est manquant. Il est vivement recommandé de l'activer afin d'obtenir de meilleurs résultats pour la détection des types de fichiers.", +"Your PHP version is outdated" => "Votre version de PHP est trop ancienne", +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly." => "Votre version de PHP est trop ancienne. Nous vous recommandons fortement de migrer vers une version 5.3.8 ou plus récente encore, car les versions antérieures sont réputées problématiques. Il est possible que cette installation ne fonctionne pas correctement.", "Locale not working" => "Localisation non fonctionnelle", "System locale can not be set to a one which supports UTF-8." => "Les paramètres régionaux ne peuvent pas être configurés avec un qui supporte UTF-8.", "This means that there might be problems with certain characters in file names." => "Cela signifie qu'il pourrait y avoir des problèmes avec certains caractères dans les noms de fichier.", diff --git a/settings/l10n/hu_HU.php b/settings/l10n/hu_HU.php index 82bc37b9c1f..6b2dc3e0172 100644 --- a/settings/l10n/hu_HU.php +++ b/settings/l10n/hu_HU.php @@ -54,13 +54,19 @@ $TRANSLATIONS = array( "Errors and fatal issues" => "Hibák és végzetes hibák", "Fatal issues only" => "Csak a végzetes hibák", "Security Warning" => "Biztonsági figyelmeztetés", +"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "Jelenlegi elérése a következőnek '%s' jelenleg HTTP-n keresztül történik. Nagyon ajánlott, hogy a kiszolgálot úgy állitsd be, hogy HTTPS-t tudjál használni.", "Your data directory and your files are probably accessible from the internet. The .htaccess file 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." => "Az adatkönytára és az itt levő fájlok valószínűleg elérhetők az internetről. Az ownCloud által beillesztett .htaccess fájl nem működik. Nagyon erősen ajánlott, hogy a webszervert úgy konfigurálja, hogy az adatkönyvtár ne legyen közvetlenül kívülről elérhető, vagy az adatkönyvtárt tegye a webszerver dokumentumfáján kívülre.", "Setup Warning" => "A beállítással kapcsolatos figyelmeztetés", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Az Ön webkiszolgálója nincs megfelelően beállítva az állományok szinkronizálásához, mert a WebDAV-elérés úgy tűnik, nem működik.", "Please double check the <a href=\"%s\">installation guides</a>." => "Kérjük tüzetesen tanulmányozza át a <a href='%s'>telepítési útmutatót</a>.", "Module 'fileinfo' missing" => "A 'fileinfo' modul hiányzik", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "A 'fileinfo' PHP modul hiányzik. Erősen javasolt ennek a modulnak a telepítése a MIME-típusok felismerésének eredményessé tételéhez.", +"Your PHP version is outdated" => "A PHP verzió túl régi", +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly." => "A PHP verzió túl régi. Nagyon ajánlott legalább az 5.3.8-as vagy újabb verzióra frissíteni, mert a régebbi verziónál léteznek ismert hibák. Ezért lehet a telepítésed elkézelhető, hogy nem müködik majd megfelelően.", "Locale not working" => "A nyelvi lokalizáció nem működik", +"System locale can not be set to a one which supports UTF-8." => "A rendszer lokálok nem lehetett olyat beállítani ami támogatja az UTF-8-at.", +"This means that there might be problems with certain characters in file names." => "Ez arra utal, hogy probléma lehet néhány karakterrel a file neveiben.", +"We strongly suggest to install the required packages on your system to support one of the following locales: %s." => "Erősen ajánlott telepíteni a szükséges csomagokat a rendszeredbe amely támogat egyet a következő helyi beállítások közül: %s", "Internet connection not working" => "Az internet kapcsolat nem működik", "This 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." => "A kiszolgálónak nincs müködő internet kapcsolata. Ez azt jelenti, hogy néhány képességét a kiszolgálónak mint például becsatolni egy külső tárolót, értesítések külső gyártók programjának frissítéséről nem fog müködni. A távolról való elérése a fileoknak és email értesítések küldése szintén nem fog müködni. Ha használni szeretnéd mindezeket a képességeit a szervernek, ahoz javasoljuk, hogy engedélyezzed az internet elérését a szervernek.", "Cron" => "Ütemezett feladatok", @@ -119,6 +125,7 @@ $TRANSLATIONS = array( "Select new from Files" => "Új kiválasztása Fileokból", "Remove image" => "Kép eltávolítása", "Either png or jpg. Ideally square but you will be able to crop it." => "Egyaránt png vagy jpg. Az ideális ha négyzet alaku, de késöbb még átszabható", +"Your avatar is provided by your original account." => "Az avatarod az eredeti fiókod alapján van beállítva.", "Abort" => "Megszakítás", "Choose as profile image" => "Válassz profil képet", "Language" => "Nyelv", @@ -126,6 +133,7 @@ $TRANSLATIONS = array( "WebDAV" => "WebDAV", "Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" => "Ezt a címet használd, hogy <a href=\"%s\" target=\"_blank\">hozzáférj a fileokhoz WebDAV-on keresztül</a>", "Encryption" => "Titkosítás", +"The encryption app is no longer enabled, please decrypt all your files" => "A titkosító alkalmazás továbbiakban nem lesz engedélyezve, szüntesd meg a titkosítását a file-jaidnak.", "Log-in password" => "Bejelentkezési jelszó", "Decrypt all Files" => "Kititkosítja az összes file-t", "Login Name" => "Bejelentkezési név", diff --git a/settings/l10n/it.php b/settings/l10n/it.php index 4e6e547b0eb..08bab35244c 100644 --- a/settings/l10n/it.php +++ b/settings/l10n/it.php @@ -54,15 +54,15 @@ $TRANSLATIONS = array( "Errors and fatal issues" => "Errori e problemi gravi", "Fatal issues only" => "Solo problemi gravi", "Security Warning" => "Avviso di sicurezza", -"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "Sei connesso a %s con il protocollo HTTP. Ti suggeriamo fortemente di configurare il tuo server per richiedere l'utilizzo del protocollo HTTPS al posto di HTTP.", +"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "Sei connesso a %s tramite HTTP. Ti suggeriamo vivamente di configurare il tuo server per richiedere l'utilizzo del protocollo HTTPS al posto di HTTP.", "Your data directory and your files are probably accessible from the internet. The .htaccess file 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." => "La cartella dei dati e i tuoi file sono probabilmente accessibili da Internet.\nIl file .htaccess non funziona. Ti consigliamo vivamente di configurare il server web in modo che la cartella dei dati non sia più accessibile o spostare la cartella fuori dalla radice del server web.", "Setup Warning" => "Avviso di configurazione", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Il tuo server web non è configurato correttamente per consentire la sincronizzazione dei file poiché l'interfaccia WebDAV sembra essere danneggiata.", "Please double check the <a href=\"%s\">installation guides</a>." => "Leggi attentamente le <a href='%s'>guide d'installazione</a>.", "Module 'fileinfo' missing" => "Modulo 'fileinfo' mancante", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Il modulo PHP 'fileinfo' non è presente. Consigliamo vivamente di abilitare questo modulo per ottenere risultati migliori con il rilevamento dei tipi MIME.", -"Your PHP version is outdated" => "La tua versione di PHP è superata", -"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly." => "La tua versione di PHP è superata. Ti raccomandiamo di aggiornare alla versione 5.3.8 o superiore poiché è risaputo che le vecchie versioni siano fallate. L'installazione attuale potrebbe non funzionare correttamente.", +"Your PHP version is outdated" => "La tua versione di PHP è obsoleta", +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly." => "La tua versione di PHP è obsoleta. Ti consigliamo vivamente di aggiornare alla versione 5.3.8 o successiva poiché è sono noti problemi con le vecchie versioni. L'installazione attuale potrebbe non funzionare correttamente.", "Locale not working" => "Locale non funzionante", "System locale can not be set to a one which supports UTF-8." => "La localizzazione di sistema non può essere impostata a una che supporta UTF-8.", "This means that there might be problems with certain characters in file names." => "Ciò significa che potrebbero esserci problemi con alcuni caratteri nei nomi dei file.", @@ -125,7 +125,7 @@ $TRANSLATIONS = array( "Select new from Files" => "Seleziona nuova da file", "Remove image" => "Rimuovi immagine", "Either png or jpg. Ideally square but you will be able to crop it." => "Sia png che jpg. Preferibilmente quadrata, ma potrai ritagliarla.", -"Your avatar is provided by your original account." => "Il tuo avatar è ottenuto da tuo account originale.", +"Your avatar is provided by your original account." => "Il tuo avatar è ottenuto dal tuo account originale.", "Abort" => "Interrompi", "Choose as profile image" => "Scegli come immagine del profilo", "Language" => "Lingua", diff --git a/settings/l10n/ko.php b/settings/l10n/ko.php index 39448bcdd03..83c92bba0f1 100644 --- a/settings/l10n/ko.php +++ b/settings/l10n/ko.php @@ -2,6 +2,8 @@ $TRANSLATIONS = array( "Unable to load list from App Store" => "앱 스토어에서 목록을 가져올 수 없습니다", "Authentication error" => "인증 오류", +"Your full name has been changed." => "전체 이름이 변경되었습니다.", +"Unable to change full name" => "전체 이름을 변경할 수 없음", "Group already exists" => "그룹이 이미 존재함", "Unable to add group" => "그룹을 추가할 수 없음", "Email saved" => "이메일 저장됨", @@ -14,21 +16,25 @@ $TRANSLATIONS = array( "Unable to add user to group %s" => "그룹 %s에 사용자를 추가할 수 없음", "Unable to remove user from group %s" => "그룹 %s에서 사용자를 삭제할 수 없음", "Couldn't update app." => "앱을 업데이트할 수 없습니다.", -"Wrong password" => "잘못된 비밀번호", -"Unable to change password" => "비밀번호를 변경하실수 없습니다", +"Wrong password" => "잘못된 암호", +"No user supplied" => "사용자가 지정되지 않음", +"Please provide an admin recovery password, otherwise all user data will be lost" => "관리자 복구 암호를 입력하지 않으면 모든 사용자 데이터가 삭제됩니다", +"Wrong admin recovery password. Please check the password and try again." => "관리자 복구 암호가 잘못되었습니다. 암호를 다시 확인하십시오.", +"Back-end doesn't support password change, but the users encryption key was successfully updated." => "백엔드에서 암호 변경을 지원하지 않지만, 사용자의 암호화 키는 갱신되었습니다.", +"Unable to change password" => "암호를 변경할 수 없음", "Update to {appversion}" => "버전 {appversion}(으)로 업데이트", -"Disable" => "비활성화", +"Disable" => "사용 안함", "Enable" => "사용함", "Please wait...." => "기다려 주십시오....", -"Error while disabling app" => "앱을 사용중지하는 도중 에러발생", -"Error while enabling app" => "앱을 사용토록 하는 중에 에러발생", +"Error while disabling app" => "앱을 비활성화하는 중 오류 발생", +"Error while enabling app" => "앱을 활성화하는 중 오류 발생", "Updating...." => "업데이트 중....", "Error while updating app" => "앱을 업데이트하는 중 오류 발생", "Error" => "오류", "Update" => "업데이트", "Updated" => "업데이트됨", "Select a profile picture" => "프로필 사진 선택", -"Decrypting files... Please wait, this can take some time." => "파일 해독중... 잠시만 기다려주세요, 시간이 걸릴수 있습니다.", +"Decrypting files... Please wait, this can take some time." => "파일 복호화 중... 시간이 걸릴 수도 있으니 기다려 주십시오.", "Saving..." => "저장 중...", "deleted" => "삭제됨", "undo" => "실행 취소", @@ -40,30 +46,50 @@ $TRANSLATIONS = array( "A valid username must be provided" => "올바른 사용자 이름을 입력해야 함", "Error creating user" => "사용자 생성 오류", "A valid password must be provided" => "올바른 암호를 입력해야 함", +"Warning: Home directory for user \"{user}\" already exists" => "경고: 사용자 \"{user}\"의 홈 디렉터리가 이미 존재합니다", "__language_name__" => "한국어", +"Everything (fatal issues, errors, warnings, info, debug)" => "모두 (치명적 문제, 오류, 경고, 정보, 디버그)", +"Info, warnings, errors and fatal issues" => "정보, 경고, 오류, 치명적 문제", +"Warnings, errors and fatal issues" => "경고, 오류, 치명적 문제", +"Errors and fatal issues" => "오류, 치명적 문제", +"Fatal issues only" => "치명적 문제만", "Security Warning" => "보안 경고", +"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "%s에 HTTP로 접근하고 있습니다. 서버에서 HTTPS를 사용하도록 설정하는 것을 추천합니다.", +"Your data directory and your files are probably accessible from the internet. The .htaccess file 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 파일이 작동하지 않습니다. 웹 서버 설정을 변경하여 데이터 디렉터리에 접근할 수 없도록 하거나, 웹 서버 문서 경로 외부로 데이터 디렉터리를 옮기십시오.", "Setup Warning" => "설정 경고", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "WebDAV 인터페이스가 제대로 작동하지 않습니다. 웹 서버에서 파일 동기화를 사용할 수 있도록 설정이 제대로 되지 않은 것 같습니다.", +"Please double check the <a href=\"%s\">installation guides</a>." => "<a href=\"%s\">설치 가이드</a>를 다시 한 번 확인하십시오.", "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 형식 감지 결과를 향상시키기 위하여 이 모듈을 활성화하는 것을 추천합니다.", +"Your PHP version is outdated" => "PHP 버전이 오래됨", +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly." => "PHP 버전이 오래되었습니다. 오래된 버전은 작동하지 않을 수도 있기 때문에 PHP 5.3.8 이상을 사용하는 것을 추천합니다.", "Locale not working" => "로캘이 작동하지 않음", +"System locale can not be set to a one which supports UTF-8." => "UTF-8을 지원하는 시스템 로캘을 사용할 수 없습니다.", +"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 one of the following locales: %s." => "다음 로캘을 지원하도록 시스템 설정을 변경하는 것을 추천합니다: %s", "Internet connection not working" => "인터넷에 연결할 수 없음", +"This 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." => "서버에서 인터넷에 연결할 수 없습니다. 외부 저장소 마운트, 업데이트 알림, 제 3자 앱 설치 등 일부 기능을 사용할 수 없습니다. 외부에서 파일에 접근하거나 알림 이메일을 보내지 못할 수도 있습니다. 모든 기능을 사용하려면 인터넷에 연결하는 것을 추천합니다.", "Cron" => "크론", "Execute one task with each page loaded" => "개별 페이지를 불러올 때마다 실행", +"cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php는 webcron 서비스에 등록되어 HTTP로 15분마다 cron.php에 접근합니다.", +"Use systems cron service to call the cron.php file every 15 minutes." => "시스템의 cron 서비스를 통하여 15분마다 cron.php 파일에 접근합니다.", "Sharing" => "공유", "Enable Share API" => "공유 API 사용하기", "Allow apps to use the Share API" => "앱에서 공유 API를 사용할 수 있도록 허용", "Allow links" => "링크 허용", "Allow users to share items to the public with links" => "사용자가 개별 항목의 링크를 공유할 수 있도록 허용", -"Allow public uploads" => "퍼블릭 업로드 허용", +"Allow public uploads" => "공개 업로드 허용", +"Allow users to enable others to upload into their publicly shared folders" => "다른 사용자들이 공개된 공유 폴더에 파일 업로드 허용", "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" => "사용자가 속해 있는 그룹의 사용자와만 공유할 수 있도록 허용", -"Allow mail notification" => "메일 알림을 허용", +"Allow users to only share with users in their groups" => "사용자가 속해 있는 그룹의 사용자에게만 공유할 수 있도록 허용", +"Allow mail notification" => "메일 알림 허용", "Allow user to send mail notification for shared files" => "사용자에게 공유 파일에 대한 메일 알림을 허용합니다", "Security" => "보안", "Enforce HTTPS" => "HTTPS 강제 사용", +"Forces the clients to connect to %s via an encrypted connection." => "클라이언트가 %s에 연결할 때 암호화 연결을 강제로 사용합니다.", +"Please connect to your %s via HTTPS to enable or disable the SSL enforcement." => "SSL 강제 설정을 변경하려면 %s에 HTTPS로 연결해야 합니다.", "Log" => "로그", "Log level" => "로그 단계", "More" => "더 중요함", @@ -90,30 +116,37 @@ $TRANSLATIONS = array( "Current password" => "현재 암호", "New password" => "새 암호", "Change password" => "암호 변경", +"Full Name" => "전체 이름", "Email" => "이메일", "Your email address" => "이메일 주소", "Fill in an email address to enable password recovery" => "암호 찾기 기능을 사용하려면 이메일 주소를 입력하십시오", "Profile picture" => "프로필 사진", -"Upload new" => "새로이 업로드하기", +"Upload new" => "새로 업로드", "Select new from Files" => "파일에서 선택", "Remove image" => "그림 삭제", -"Abort" => "대하여", -"Choose as profile image" => "프로필 사진을 선택해주세요", +"Either png or jpg. Ideally square but you will be able to crop it." => "png나 jpg를 사용하십시오. 정사각형 형태가 가장 좋지만 잘라낼 수 있습니다.", +"Your avatar is provided by your original account." => "원본 계정의 아바타를 사용합니다.", +"Abort" => "중지", +"Choose as profile image" => "프로필 이미지로 사용", "Language" => "언어", "Help translate" => "번역 돕기", "WebDAV" => "WebDAV", +"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" => "WebDAV로 파일에 접근하려면 <a href=\"%s\" target=\"_blank\">이 주소를 사용하십시오</a>", "Encryption" => "암호화", -"Log-in password" => "로그인 비밀번호", -"Decrypt all Files" => "모든 파일 해독", +"The encryption app is no longer enabled, please decrypt all your files" => "암호화 앱이 비활성화되었습니다. 모든 파일을 복호화해야 합니다.", +"Log-in password" => "로그인 암호", +"Decrypt all Files" => "모든 파일 복호화", "Login Name" => "로그인 이름", "Create" => "만들기", "Admin Recovery Password" => "관리자 복구 암호", "Enter the recovery password in order to recover the users files during password change" => "암호 변경 시 변경된 사용자 파일을 복구하려면 복구 암호를 입력하십시오", "Default Storage" => "기본 저장소", +"Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "저장소 할당량을 입력하십시오 (예: \"512 MB\", \"12 GB\")", "Unlimited" => "무제한", "Other" => "기타", "Username" => "사용자 이름", "Storage" => "저장소", +"change full name" => "전체 이름 변경", "set new password" => "새 암호 설정", "Default" => "기본값" ); diff --git a/settings/l10n/pl.php b/settings/l10n/pl.php index 97652c73716..bd6d3dbf1cd 100644 --- a/settings/l10n/pl.php +++ b/settings/l10n/pl.php @@ -60,7 +60,10 @@ $TRANSLATIONS = array( "Please double check the <a href=\"%s\">installation guides</a>." => "Proszę sprawdź ponownie <a href=\"%s\">przewodnik instalacji</a>.", "Module 'fileinfo' missing" => "Brak modułu „fileinfo”", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Brak modułu PHP „fileinfo”. Zalecamy włączenie tego modułu, aby uzyskać najlepsze wyniki podczas wykrywania typów MIME.", +"Your PHP version is outdated" => "Twoja wersja PHP jest za stara", +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly." => "Twoja wersja PHP jest za stara. Rekomendujemy przynajmniej wersje 5.3.8. Jeśli masz starsza wersję ownCloud może nie działać poprawnie.", "Locale not working" => "Lokalizacja nie działa", +"System locale can not be set to a one which supports UTF-8." => "Ustawienia regionalne systemu nie można ustawić na jeden, który obsługuje UTF-8.", "Internet connection not working" => "Połączenie internetowe nie działa", "This 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." => "Ten serwer OwnCloud nie ma połączenia z Internetem. Oznacza to, że niektóre z funkcji, takich jak montowanie zewnętrznych zasobów, powiadomienia o aktualizacji lub 3-cie aplikacje mogą nie działać. Dostęp do plików z zewnątrz i wysyłanie powiadomienia e-mail nie może również działać. Sugerujemy, aby włączyć połączenia internetowego dla tego serwera, jeśli chcesz mieć wszystkie opcje.", "Cron" => "Cron", diff --git a/settings/l10n/ru.php b/settings/l10n/ru.php index 932f692893d..8b6a075002f 100644 --- a/settings/l10n/ru.php +++ b/settings/l10n/ru.php @@ -54,13 +54,18 @@ $TRANSLATIONS = array( "Errors and fatal issues" => "Ошибки и критические проблемы", "Fatal issues only" => "Только критические проблемы", "Security Warning" => "Предупреждение безопасности", +"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "Вы обращаетесь к %s используя HTTP. Мы настоятельно рекомендуем вам настроить сервер на использование HTTPS.", "Your data directory and your files are probably accessible from the internet. The .htaccess file 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 не работает. Мы настойчиво предлагаем Вам сконфигурировать вебсервер таким образом, чтобы папка с Вашими данными более не была доступна или переместите папку с данными куда-нибудь в другое место вне основной папки документов вебсервера.", "Setup Warning" => "Предупреждение установки", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Веб-сервер до сих пор не настроен для возможности синхронизации файлов. Похоже что проблема в неисправности интерфейса WebDAV.", "Please double check the <a href=\"%s\">installation guides</a>." => "Пожалуйста, дважды просмотрите <a href='%s'>инструкции по установке</a>.", "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) файлов.", +"Your PHP version is outdated" => "Ваша версия PHP устарела", +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly." => "Ваша версия PHP устарела. Мы настоятельно рекомендуем обновиться до 5.3.8 или новее, так как старые версии работают не корректно. Вполне возможно, что эта установка не работает должным образом.", "Locale not working" => "Локализация не работает", +"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 one of the following locales: %s." => "Мы настоятельно рекомендуем установить требуемые пакеты в систему, для поддержки одной из следующих локалей: %s.", "Internet connection not working" => "Интернет-соединение не работает", "This 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." => "Этот сервер не имеет подключения к сети интернет. Это значит, что некоторые возможности, такие как подключение внешних дисков, уведомления об обновлениях или установка сторонних приложений – не работают. Удалённый доступ к файлам и отправка уведомлений по электронной почте вероятнее всего тоже не будут работать. Предлагаем включить соединение с интернетом для этого сервера, если Вы хотите иметь все возможности.", "Cron" => "Планировщик задач по расписанию", @@ -126,6 +131,7 @@ $TRANSLATIONS = array( "WebDAV" => "WebDAV", "Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" => "Используйте этот адресс для <a href=\"%s\" target=\"_blank\">доступа к вашим файлам через WebDAV</a>", "Encryption" => "Шифрование", +"The encryption app is no longer enabled, please decrypt all your files" => "Приложение для шифрования выключено, пожалуйста, расшифруйте ваши файлы", "Log-in password" => "Пароль входа", "Decrypt all Files" => "Снять шифрование со всех файлов", "Login Name" => "Имя пользователя", diff --git a/settings/l10n/sk_SK.php b/settings/l10n/sk_SK.php index af381bc3214..fc3fe540751 100644 --- a/settings/l10n/sk_SK.php +++ b/settings/l10n/sk_SK.php @@ -62,6 +62,7 @@ $TRANSLATIONS = array( "Module 'fileinfo' missing" => "Chýba modul 'fileinfo'", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Chýba modul 'fileinfo'. Dôrazne doporučujeme ho povoliť pre dosiahnutie najlepších výsledkov zisťovania mime-typu.", "Your PHP version is outdated" => "Vaša PHP verzia je zastaraná", +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly." => "Táto verzia PHP je zastaraná. Dôrazne vám odporúčame aktualizovať na verziu 5.3.8 alebo novšiu, lebo staršie verzie sú chybné. Je možné, že táto instalácia nebude fungovat správne.", "Locale not working" => "Lokalizácia nefunguje", "System locale can not be set to a one which supports UTF-8." => "Nie je možné nastaviť znakovú sadu, ktorá podporuje UTF-8.", "This means that there might be problems with certain characters in file names." => "To znamená, že sa môžu vyskytnúť problémy s niektorými znakmi v názvoch súborov.", diff --git a/settings/l10n/tr.php b/settings/l10n/tr.php index 0631e63017a..97a46a02dbd 100644 --- a/settings/l10n/tr.php +++ b/settings/l10n/tr.php @@ -53,7 +53,7 @@ $TRANSLATIONS = array( "Warnings, errors and fatal issues" => "Uyarılar, hatalar ve ölümcül konular", "Errors and fatal issues" => "Hatalar ve ölümcül konular", "Fatal issues only" => "Sadece ölümcül konular", -"Security Warning" => "Güvenlik Uyarisi", +"Security Warning" => "Güvenlik Uyarısı", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "%s konumuna HTTP aracılığıyla erişiyorsunuz. Sunucunuzu HTTPS kullanımını zorlaması üzere yapılandırmanızı şiddetle öneririz.", "Your data directory and your files are probably accessible from the internet. The .htaccess file 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 dizininiz ve dosyalarınız büyük ihtimalle internet üzerinden erişilebilir. .htaccess dosyası çalışmıyor. Web sunucunuzu yapılandırarak data dizinine erişimi kapatmanızı veya data dizinini web sunucu döküman dizini dışına almanızı şiddetle tavsiye ederiz.", "Setup Warning" => "Kurulum Uyarısı", @@ -82,7 +82,7 @@ $TRANSLATIONS = array( "Allow users to enable others to upload into their publicly shared folders" => "Kullanıcıların, herkese açık dizinlerine, başkalarının dosya yüklemelerini etkinleştirmelerine izin ver.", "Allow resharing" => "Paylaşıma izin ver", "Allow users to share items shared with them again" => "Kullanıcıların kendileri ile paylaşılan ögeleri yeniden paylaşmasına izin ver", -"Allow users to share with anyone" => "Kullanıcıların herşeyi paylaşmalarına izin ver", +"Allow users to share with anyone" => "Kullanıcıların her şeyi paylaşmalarına izin ver", "Allow users to only share with users in their groups" => "Kullanıcıların sadece kendi gruplarındaki kullanıcılarla paylaşmasına izin ver", "Allow mail notification" => "Posta bilgilendirmesine izin ver", "Allow user to send mail notification for shared files" => "Paylaşılmış dosyalar için kullanıcının posta bildirimi göndermesine izin ver", @@ -90,7 +90,7 @@ $TRANSLATIONS = array( "Enforce HTTPS" => "HTTPS bağlantısına zorla", "Forces the clients to connect to %s via an encrypted connection." => "İstemcileri %s a şifreli bir bağlantı ile bağlanmaya zorlar.", "Please connect to your %s via HTTPS to enable or disable the SSL enforcement." => "SSL zorlamasını etkinleştirmek ya da devre dışı bırakmak için lütfen ,%s a HTTPS ile bağlanın.", -"Log" => "Kayıtlar", +"Log" => "Günlük", "Log level" => "Günlük seviyesi", "More" => "Daha fazla", "Less" => "Az", @@ -109,7 +109,7 @@ $TRANSLATIONS = array( "Commercial Support" => "Ticari Destek", "Get the apps to sync your files" => "Dosyalarınızı eşitlemek için uygulamayı indirin", "Show First Run Wizard again" => "İlk Çalıştırma Sihirbazını yeniden göster", -"You have used <strong>%s</strong> of the available <strong>%s</strong>" => "Kullandığınız: <strong>%s</strong>. Seçilebilecekler: <strong>%s</strong>", +"You have used <strong>%s</strong> of the available <strong>%s</strong>" => "Kullandığınız: <strong>%s</strong>. Kullanılabilir alan: <strong>%s</strong>", "Password" => "Parola", "Your password was changed" => "Şifreniz değiştirildi", "Unable to change your password" => "Parolanız değiştirilemiyor", @@ -117,9 +117,9 @@ $TRANSLATIONS = array( "New password" => "Yeni parola", "Change password" => "Parola değiştir", "Full Name" => "Tam Adı", -"Email" => "Eposta", +"Email" => "E-posta", "Your email address" => "E-posta adresiniz", -"Fill in an email address to enable password recovery" => "Parola kurtarmayı etkinleştirmek için bir eposta adresi girin", +"Fill in an email address to enable password recovery" => "Parola kurtarmayı etkinleştirmek için bir e-posta adresi girin", "Profile picture" => "Profil resmi", "Upload new" => "Yeni yükle", "Select new from Files" => "Dosyalardan seç", @@ -135,7 +135,7 @@ $TRANSLATIONS = array( "Encryption" => "Şifreleme", "The encryption app is no longer enabled, please decrypt all your files" => "Şifreleme uygulaması artık etkin değil, tüm dosyalarınızın şifrelemesini kaldırın", "Log-in password" => "Oturum açma parolası", -"Decrypt all Files" => "Tüm dosyaların şifresini çözme", +"Decrypt all Files" => "Tüm dosyaların şifresini çöz", "Login Name" => "Giriş Adı", "Create" => "Oluştur", "Admin Recovery Password" => "Yönetici Kurtarma Parolası", diff --git a/tests/data/db_structure.xml b/tests/data/db_structure.xml index 5f2edbbc516..bfff2143349 100644 --- a/tests/data/db_structure.xml +++ b/tests/data/db_structure.xml @@ -216,7 +216,8 @@ <type>decimal</type> <default/> <notnull>true</notnull> - <length>15</length> + <precision>12</precision> + <scale>2</scale> </field> </declaration> </table> diff --git a/tests/data/db_structure2.xml b/tests/data/db_structure2.xml index 6cd071451df..ae5f22e9573 100644 --- a/tests/data/db_structure2.xml +++ b/tests/data/db_structure2.xml @@ -113,7 +113,8 @@ <type>decimal</type> <default/> <notnull>true</notnull> - <length>15</length> + <precision>12</precision> + <scale>2</scale> </field> </declaration> </table> diff --git a/tests/lib/app.php b/tests/lib/app.php index 52eade90a6e..49f40f089bb 100644 --- a/tests/lib/app.php +++ b/tests/lib/app.php @@ -79,4 +79,17 @@ class Test_App extends PHPUnit_Framework_TestCase { $this->assertFalse(OC_App::isAppVersionCompatible($oc, $app)); } + /** + * Tests that the app order is correct + */ + public function testGetEnabledAppsIsSorted() { + $apps = \OC_App::getEnabledApps(true); + // copy array + $sortedApps = $apps; + sort($sortedApps); + // 'files' is always on top + unset($sortedApps[array_search('files', $sortedApps)]); + array_unshift($sortedApps, 'files'); + $this->assertEquals($sortedApps, $apps); + } } diff --git a/tests/lib/appconfig.php b/tests/lib/appconfig.php index 4d82cd5ba7b..23dd2549e32 100644 --- a/tests/lib/appconfig.php +++ b/tests/lib/appconfig.php @@ -35,7 +35,7 @@ class Test_Appconfig extends PHPUnit_Framework_TestCase { } public function testGetApps() { - $query = \OC_DB::prepare('SELECT DISTINCT `appid` FROM `*PREFIX*appconfig`'); + $query = \OC_DB::prepare('SELECT DISTINCT `appid` FROM `*PREFIX*appconfig` ORDER BY `appid`'); $result = $query->execute(); $expected = array(); while ($row = $result->fetchRow()) { diff --git a/tests/lib/avatar.php b/tests/lib/avatar.php index 9cc14865a29..0334639afa8 100644 --- a/tests/lib/avatar.php +++ b/tests/lib/avatar.php @@ -1,20 +1,28 @@ <?php + /** * Copyright (c) 2013 Christopher Schäpers <christopher@schaepers.it> * This file is licensed under the Affero General Public License version 3 or * later. * See the COPYING-README file. */ - class Test_Avatar extends PHPUnit_Framework_TestCase { + private $user; + + public function setUp() { + $this->user = uniqid(); + $storage = new \OC\Files\Storage\Temporary(array()); + \OC\Files\Filesystem::mount($storage, array(), '/' . $this->user . '/'); + } + public function testAvatar() { - $avatar = new \OC_Avatar(\OC_User::getUser()); + $avatar = new \OC_Avatar($this->user); $this->assertEquals(false, $avatar->get()); - $expected = new OC_Image(\OC::$SERVERROOT.'/tests/data/testavatar.png'); + $expected = new OC_Image(\OC::$SERVERROOT . '/tests/data/testavatar.png'); $expected->resize(64); $avatar->set($expected->data()); $this->assertEquals($expected->data(), $avatar->get()->data()); @@ -25,11 +33,11 @@ class Test_Avatar extends PHPUnit_Framework_TestCase { public function testAvatarApi() { $avatarManager = \OC::$server->getAvatarManager(); - $avatar = $avatarManager->getAvatar(\OC_User::getUser()); + $avatar = $avatarManager->getAvatar($this->user); $this->assertEquals(false, $avatar->get()); - $expected = new OC_Image(\OC::$SERVERROOT.'/tests/data/testavatar.png'); + $expected = new OC_Image(\OC::$SERVERROOT . '/tests/data/testavatar.png'); $expected->resize(64); $avatar->set($expected->data()); $this->assertEquals($expected->data(), $avatar->get()->data()); diff --git a/tests/lib/db.php b/tests/lib/db.php index 1977025cf12..f0b271a36f1 100644 --- a/tests/lib/db.php +++ b/tests/lib/db.php @@ -12,6 +12,21 @@ class Test_DB extends PHPUnit_Framework_TestCase { protected static $schema_file = 'static://test_db_scheme'; protected $test_prefix; + /** + * @var string + */ + private $table1; + + /** + * @var string + */ + private $table2; + + /** + * @var string + */ + private $table3; + public function setUp() { $dbfile = OC::$SERVERROOT.'/tests/data/db_structure.xml'; @@ -25,6 +40,7 @@ class Test_DB extends PHPUnit_Framework_TestCase { $this->table1 = $this->test_prefix.'cntcts_addrsbks'; $this->table2 = $this->test_prefix.'cntcts_cards'; $this->table3 = $this->test_prefix.'vcategory'; + $this->table4 = $this->test_prefix.'decimal'; } public function tearDown() { @@ -121,10 +137,10 @@ class Test_DB extends PHPUnit_Framework_TestCase { $query = OC_DB::prepare('SELECT `fullname`, `uri`, `carddata` FROM `*PREFIX*'.$this->table2.'` WHERE `uri` = ?'); $result = $query->execute(array($uri)); $this->assertTrue((bool)$result); - $row = $result->fetchRow(); - $this->assertArrayHasKey('carddata', $row); - $this->assertEquals($carddata, $row['carddata']); - $this->assertEquals(1, $result->numRows()); + $rowset = $result->fetchAll(); + $this->assertEquals(1, count($rowset)); + $this->assertArrayHasKey('carddata', $rowset[0]); + $this->assertEquals($carddata, $rowset[0]['carddata']); // Try to insert a new row $result = OC_DB::insertIfNotExist('*PREFIX*'.$this->table2, @@ -137,12 +153,51 @@ class Test_DB extends PHPUnit_Framework_TestCase { $query = OC_DB::prepare('SELECT `fullname`, `uri`, `carddata` FROM `*PREFIX*'.$this->table2.'` WHERE `uri` = ?'); $result = $query->execute(array($uri)); $this->assertTrue((bool)$result); - $row = $result->fetchRow(); - $this->assertArrayHasKey('carddata', $row); // Test that previously inserted data isn't overwritten - $this->assertEquals($carddata, $row['carddata']); // And that a new row hasn't been inserted. - $this->assertEquals(1, $result->numRows()); + $rowset = $result->fetchAll(); + $this->assertEquals(1, count($rowset)); + $this->assertArrayHasKey('carddata', $rowset[0]); + $this->assertEquals($carddata, $rowset[0]['carddata']); + } + + public function testUtf8Data() { + $table = "*PREFIX*{$this->table2}"; + $expected = "Ћö雙喜\xE2\x80\xA2"; + + $query = OC_DB::prepare("INSERT INTO `$table` (`fullname`, `uri`, `carddata`) VALUES (?, ?, ?)"); + $result = $query->execute(array($expected, 'uri_1', 'This is a vCard')); + $this->assertEquals(1, $result); + $actual = OC_DB::prepare("SELECT `fullname` FROM `$table`")->execute()->fetchOne(); + $this->assertSame($expected, $actual); } + + public function testDecimal() { + $table = "*PREFIX*" . $this->table4; + $rowname = 'decimaltest'; + + // Insert, select and delete decimal(12,2) values + $inserts = array('1337133713.37', '1234567890'); + $expects = array('1337133713.37', '1234567890.00'); + + for ($i = 0; $i < count($inserts); $i++) { + $insert = $inserts[$i]; + $expect = $expects[$i]; + + $query = OC_DB::prepare('INSERT INTO `' . $table . '` (`' . $rowname . '`) VALUES (?)'); + $result = $query->execute(array($insert)); + $this->assertEquals(1, $result); + $query = OC_DB::prepare('SELECT `' . $rowname . '` FROM `' . $table . '`'); + $result = $query->execute(); + $this->assertTrue((bool)$result); + $row = $result->fetchRow(); + $this->assertArrayHasKey($rowname, $row); + $this->assertEquals($expect, $row[$rowname]); + $query = OC_DB::prepare('DELETE FROM `' . $table . '`'); + $result = $query->execute(); + $this->assertTrue((bool)$result); + } + } + } diff --git a/tests/lib/db/mdb2schemareader.php b/tests/lib/db/mdb2schemareader.php index 57cafa7c76b..f08996cbeaf 100644 --- a/tests/lib/db/mdb2schemareader.php +++ b/tests/lib/db/mdb2schemareader.php @@ -39,7 +39,7 @@ class MDB2SchemaReader extends \PHPUnit_Framework_TestCase { $this->assertCount(1, $schema->getTables()); $table = $schema->getTable('test_table'); - $this->assertCount(7, $table->getColumns()); + $this->assertCount(8, $table->getColumns()); $this->assertEquals(4, $table->getColumn('integerfield')->getLength()); $this->assertTrue($table->getColumn('integerfield')->getAutoincrement()); @@ -69,6 +69,9 @@ class MDB2SchemaReader extends \PHPUnit_Framework_TestCase { $this->assertTrue($table->getColumn('booleanfield_true')->getDefault()); $this->assertFalse($table->getColumn('booleanfield_false')->getDefault()); + $this->assertEquals(12, $table->getColumn('decimalfield_precision_scale')->getPrecision()); + $this->assertEquals(2, $table->getColumn('decimalfield_precision_scale')->getScale()); + $this->assertCount(2, $table->getIndexes()); $this->assertEquals(array('integerfield'), $table->getIndex('primary')->getUnquotedColumns()); $this->assertTrue($table->getIndex('primary')->isPrimary()); diff --git a/tests/lib/db/testschema.xml b/tests/lib/db/testschema.xml index 509b55ee81f..dfca920a0ef 100644 --- a/tests/lib/db/testschema.xml +++ b/tests/lib/db/testschema.xml @@ -53,6 +53,12 @@ <type>boolean</type> <default>false</default> </field> + <field> + <name>decimalfield_precision_scale</name> + <type>decimal</type> + <precision>12</precision> + <scale>2</scale> + </field> <index> <name>index_primary</name> diff --git a/tests/lib/dbschema.php b/tests/lib/dbschema.php index 7de90c047ca..4a7b7f7aac0 100644 --- a/tests/lib/dbschema.php +++ b/tests/lib/dbschema.php @@ -103,7 +103,7 @@ class Test_DBSchema extends PHPUnit_Framework_TestCase { break; } - $name = $result->fetchOne(); //FIXME checking with '$result->numRows() === 1' does not seem to work? + $name = $result->fetchOne(); if ($name === $table) { return true; } else { diff --git a/tests/lib/preferences.php b/tests/lib/preferences.php index 68b794e9ea9..a8236909ded 100644 --- a/tests/lib/preferences.php +++ b/tests/lib/preferences.php @@ -101,28 +101,28 @@ class Test_Preferences extends PHPUnit_Framework_TestCase { $this->assertTrue(\OC_Preferences::deleteKey('Deleteuser', 'deleteapp', 'deletekey')); $query = \OC_DB::prepare('SELECT `configvalue` FROM `*PREFIX*preferences` WHERE `userid` = ? AND `appid` = ? AND `configkey` = ?'); $result = $query->execute(array('Deleteuser', 'deleteapp', 'deletekey')); - $this->assertEquals(0, $result->numRows()); + $this->assertEquals(0, count($result->fetchAll())); } public function testDeleteApp() { $this->assertTrue(\OC_Preferences::deleteApp('Deleteuser', 'deleteapp')); $query = \OC_DB::prepare('SELECT `configvalue` FROM `*PREFIX*preferences` WHERE `userid` = ? AND `appid` = ?'); $result = $query->execute(array('Deleteuser', 'deleteapp')); - $this->assertEquals(0, $result->numRows()); + $this->assertEquals(0, count($result->fetchAll())); } public function testDeleteUser() { $this->assertTrue(\OC_Preferences::deleteUser('Deleteuser')); $query = \OC_DB::prepare('SELECT `configvalue` FROM `*PREFIX*preferences` WHERE `userid` = ?'); $result = $query->execute(array('Deleteuser')); - $this->assertEquals(0, $result->numRows()); + $this->assertEquals(0, count($result->fetchAll())); } public function testDeleteAppFromAllUsers() { $this->assertTrue(\OC_Preferences::deleteAppFromAllUsers('someapp')); $query = \OC_DB::prepare('SELECT `configvalue` FROM `*PREFIX*preferences` WHERE `appid` = ?'); $result = $query->execute(array('someapp')); - $this->assertEquals(0, $result->numRows()); + $this->assertEquals(0, count($result->fetchAll())); } } diff --git a/tests/lib/user/user.php b/tests/lib/user/user.php index 0bbcda013ce..3f90432c6b0 100644 --- a/tests/lib/user/user.php +++ b/tests/lib/user/user.php @@ -9,6 +9,7 @@ namespace Test\User; +use OC\AllConfig; use OC\Hooks\PublicEmitter; class User extends \PHPUnit_Framework_TestCase { @@ -205,7 +206,9 @@ class User extends \PHPUnit_Framework_TestCase { ->method('implementsActions') ->will($this->returnValue(false)); - $user = new \OC\User\User('foo', $backend); + $allConfig = new AllConfig(); + + $user = new \OC\User\User('foo', $backend, null, $allConfig); $this->assertEquals(\OC_Config::getValue("datadirectory", \OC::$SERVERROOT . "/data") . '/foo', $user->getHome()); } diff --git a/tests/phpunit-autotest.xml b/tests/phpunit-autotest.xml index a893e96ad97..1a2ab35491b 100644 --- a/tests/phpunit-autotest.xml +++ b/tests/phpunit-autotest.xml @@ -35,5 +35,12 @@ </exclude> </whitelist> </filter> + <listeners> + <listener class="TestCleanupListener" file="testcleanuplistener.php"> + <arguments> + <string>detail</string> + </arguments> + </listener> + </listeners> </phpunit> diff --git a/tests/testcleanuplistener.php b/tests/testcleanuplistener.php new file mode 100644 index 00000000000..368ea7bc8f4 --- /dev/null +++ b/tests/testcleanuplistener.php @@ -0,0 +1,139 @@ +<?php +/** + * Copyright (c) 2013 Vincent Petry <pvince81@owncloud.com> + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +/** + * Detects tests that didn't clean up properly, show a warning, then clean up after them. + */ +class TestCleanupListener implements PHPUnit_Framework_TestListener { + private $verbosity; + + public function __construct($verbosity = 'verbose') { + $this->verbosity = $verbosity; + } + + public function addError(PHPUnit_Framework_Test $test, Exception $e, $time) { + } + + public function addFailure(PHPUnit_Framework_Test $test, PHPUnit_Framework_AssertionFailedError $e, $time) { + } + + public function addIncompleteTest(PHPUnit_Framework_Test $test, Exception $e, $time) { + } + + public function addSkippedTest(PHPUnit_Framework_Test $test, Exception $e, $time) { + } + + public function startTest(PHPUnit_Framework_Test $test) { + } + + public function endTest(PHPUnit_Framework_Test $test, $time) { + } + + public function startTestSuite(PHPUnit_Framework_TestSuite $suite) { + } + + public function endTestSuite(PHPUnit_Framework_TestSuite $suite) { + if ($this->cleanStrayDataFiles() && $this->isShowSuiteWarning()) { + printf("TestSuite '%s': Did not clean up data dir\n", $suite->getName()); + } + if ($this->cleanStrayHooks() && $this->isShowSuiteWarning()) { + printf("TestSuite '%s': Did not clean up hooks\n", $suite->getName()); + } + if ($this->cleanProxies() && $this->isShowSuiteWarning()) { + printf("TestSuite '%s': Did not clean up proxies\n", $suite->getName()); + } + } + + private function isShowSuiteWarning() { + return $this->verbosity === 'suite' || $this->verbosity === 'detail'; + } + + private function isShowDetail() { + return $this->verbosity === 'detail'; + } + + private function unlinkDir($dir) { + if ($dh = opendir($dir)) { + while (($file = readdir($dh)) !== false) { + if ($file === '..' || $file === '.') { + continue; + } + $path = $dir . '/' . $file; + if (is_dir($path)) { + $this->unlinkDir($path); + } + else { + unlink($path); + } + } + closedir($dh); + } + rmdir($dir); + } + + private function cleanStrayDataFiles() { + $knownEntries = array( + 'owncloud.log' => true, + 'owncloud.db' => true, + '..' => true, + '.' => true + ); + $datadir = \OC_Config::getValue('datadirectory', \OC::$SERVERROOT . '/data'); + $entries = array(); + if ($dh = opendir($datadir)) { + while (($file = readdir($dh)) !== false) { + if (!isset($knownEntries[$file])) { + $entries[] = $file; + } + } + closedir($dh); + } + + if (count($entries) > 0) { + foreach ($entries as $entry) { + $this->unlinkDir($datadir . '/' . $entry); + if ($this->isShowDetail()) { + printf("Stray datadir entry: %s\n", $entry); + } + } + return true; + } + + return false; + } + + private function cleanStrayHooks() { + $hasHooks = false; + $hooks = OC_Hook::getHooks(); + if (!$hooks || sizeof($hooks) === 0) { + return false; + } + + foreach ($hooks as $signalClass => $signals) { + if (sizeof($signals)) { + foreach ($signals as $signalName => $handlers ) { + if (sizeof($handlers) > 0) { + $hasHooks = true; + OC_Hook::clear($signalClass, $signalName); + if ($this->isShowDetail()) { + printf("Stray hook: \"%s\" \"%s\"\n", $signalClass, $signalName); + } + } + } + } + } + return $hasHooks; + } + + private function cleanProxies() { + $proxies = OC_FileProxy::getProxies(); + OC_FileProxy::clearProxies(); + return count($proxies) > 0; + } +} +?> diff --git a/version.php b/version.php index 2e1fc7e17f8..470aa895072 100644 --- a/version.php +++ b/version.php @@ -1,7 +1,7 @@ <?php // We only can count up. The 4. digit is only for the internal patchlevel to trigger DB upgrades between betas, final and RCs. This is _not_ the public version number. Reset minor/patchlevel when updating major/minor version number. -$OC_Version=array(6, 90, 0, 0); +$OC_Version=array(6, 90, 0, 1); // The human readable string $OC_VersionString='7.0 pre alpha'; |