diff --git a/.gitignore b/.gitignore index 09af6808d6..40d6e6ca0f 100644 --- a/.gitignore +++ b/.gitignore @@ -56,6 +56,7 @@ nbproject # Cloud9IDE .settings.xml +.c9revisions # vim ex mode .vimrc diff --git a/apps/files/css/files.css b/apps/files/css/files.css index 661a2e827a..f37ac4c262 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -3,7 +3,7 @@ See the COPYING-README file. */ /* FILE MENU */ -.actions { padding:.3em; float:left; height:2em; } +.actions { padding:.3em; float:left; height:2em; width: 100%; } .actions input, .actions button, .actions .button { margin:0; float:left; } #new { @@ -23,7 +23,7 @@ #new>ul>li>p { cursor:pointer; } #new>ul>li>form>input { padding:0.3em; margin:-0.3em; } -#trash { height:17px; margin:0 0 0 1em; z-index:1010; position:absolute; right:13.5em; } +#trash { height:17px; margin: 0 1em; z-index:1010; float: right; } #upload { height:27px; padding:0; margin-left:0.2em; overflow:hidden; @@ -44,7 +44,7 @@ z-index:20; position:relative; cursor:pointer; overflow:hidden; } -#uploadprogresswrapper { position:absolute; right:13.5em; top:0em; } +#uploadprogresswrapper { float: right; position: relative; } #uploadprogresswrapper #uploadprogressbar { position:relative; display:inline-block; width:10em; height:1.5em; top:.4em; } /* FILE TABLE */ @@ -55,7 +55,7 @@ font-size:1.5em; font-weight:bold; color:#888; text-shadow:#fff 0 1px 0; } -table { position:relative; top:37px; width:100%; } +table { position:relative; width:100%; } tbody tr { background-color:#fff; height:2.5em; } tbody tr:hover, tbody tr:active, tbody tr.selected { background-color:#f8f8f8; } tbody tr.selected { background-color:#eee; } diff --git a/apps/files/js/fileactions.js b/apps/files/js/fileactions.js index c30f1bcddd..af3fc48391 100644 --- a/apps/files/js/fileactions.js +++ b/apps/files/js/fileactions.js @@ -115,6 +115,8 @@ var FileActions = { // NOTE: Temporary fix to allow unsharing of files in root of Shared folder if ($('#dir').val() == '/Shared') { var html = ''; + } else if (typeof trashBinApp !== 'undefined' && trashBinApp) { + var html = ''; } else { var html = ''; } diff --git a/apps/files/l10n/es.php b/apps/files/l10n/es.php index bc5046767c..201e731179 100644 --- a/apps/files/l10n/es.php +++ b/apps/files/l10n/es.php @@ -20,9 +20,12 @@ "replaced {new_name}" => "reemplazado {new_name}", "undo" => "deshacer", "replaced {new_name} with {old_name}" => "reemplazado {new_name} con {old_name}", +"perform delete operation" => "Eliminar", "'.' is an invalid file name." => "'.' es un nombre de archivo inválido.", "File name cannot be empty." => "El nombre de archivo no puede estar vacío.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nombre Invalido, \"\\\", \"/\", \"<\", \">\", \":\", \"\", \"|\" \"?\" y \"*\" no están permitidos ", +"Your storage is full, files can not be updated or synced anymore!" => "Su almacenamiento esta lleno, los archivos no pueden ser mas actualizados o sincronizados!", +"Your storage is almost full ({usedSpacePercent}%)" => "Su almacenamiento esta lleno en un ({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "Tu descarga esta siendo preparada. Esto puede tardar algun tiempo si los archivos son muy grandes.", "Unable to upload your file as it is a directory or has 0 bytes" => "No ha sido posible subir tu archivo porque es un directorio o tiene 0 bytes", "Upload Error" => "Error al subir el archivo", @@ -54,11 +57,13 @@ "Text file" => "Archivo de texto", "Folder" => "Carpeta", "From link" => "Desde el enlace", +"Trash" => "Basura", "Cancel upload" => "Cancelar subida", "Nothing in here. Upload something!" => "Aquí no hay nada. ¡Sube algo!", "Download" => "Descargar", "Upload too large" => "El archivo es demasiado 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 por este servidor.", "Files are being scanned, please wait." => "Se están escaneando los archivos, por favor espere.", -"Current scanning" => "Ahora escaneando" +"Current scanning" => "Ahora escaneando", +"Upgrading filesystem cache..." => "Actualizando cache de archivos de sistema" ); diff --git a/apps/files/l10n/es_AR.php b/apps/files/l10n/es_AR.php index ea8352e325..7c4e8220c7 100644 --- a/apps/files/l10n/es_AR.php +++ b/apps/files/l10n/es_AR.php @@ -20,6 +20,7 @@ "replaced {new_name}" => "reemplazado {new_name}", "undo" => "deshacer", "replaced {new_name} with {old_name}" => "reemplazado {new_name} con {old_name}", +"perform delete operation" => "Eliminar", "'.' is an invalid file name." => "'.' es un nombre de archivo inválido.", "File name cannot be empty." => "El nombre del archivo no puede quedar vacío.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nombre invalido, '\\', '/', '<', '>', ':', '\"', '|', '?' y '*' no están permitidos.", @@ -56,11 +57,13 @@ "Text file" => "Archivo de texto", "Folder" => "Carpeta", "From link" => "Desde enlace", +"Trash" => "Papelera", "Cancel upload" => "Cancelar subida", "Nothing in here. Upload something!" => "No hay nada. ¡Subí contenido!", "Download" => "Descargar", "Upload too large" => "El archivo es demasiado grande", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Los archivos que intentás subir sobrepasan el tamaño máximo ", "Files are being scanned, please wait." => "Se están escaneando los archivos, por favor esperá.", -"Current scanning" => "Escaneo actual" +"Current scanning" => "Escaneo actual", +"Upgrading filesystem cache..." => "Actualizando el cache del sistema de archivos" ); diff --git a/apps/files/l10n/ru.php b/apps/files/l10n/ru.php index 716afa5f29..52bc439512 100644 --- a/apps/files/l10n/ru.php +++ b/apps/files/l10n/ru.php @@ -20,9 +20,13 @@ "replaced {new_name}" => "заменено {new_name}", "undo" => "отмена", "replaced {new_name} with {old_name}" => "заменено {new_name} на {old_name}", +"perform delete operation" => "выполняется операция удаления", "'.' is an invalid file name." => "'.' - неправильное имя файла.", "File name cannot be empty." => "Имя файла не может быть пустым.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Неправильное имя, '\\', '/', '<', '>', ':', '\"', '|', '?' и '*' недопустимы.", +"Your storage is full, files can not be updated or synced anymore!" => "Ваше дисковое пространство полностью заполнено, произведите очистку перед загрузкой новых файлов.", +"Your storage is almost full ({usedSpacePercent}%)" => "Ваше хранилище почти заполнено ({usedSpacePercent}%)", +"Your download is being prepared. This might take some time if the files are big." => "Загрузка началась. Это может потребовать много времени, если файл большого размера.", "Unable to upload your file as it is a directory or has 0 bytes" => "Не удается загрузить файл размером 0 байт в каталог", "Upload Error" => "Ошибка загрузки", "Close" => "Закрыть", @@ -53,11 +57,13 @@ "Text file" => "Текстовый файл", "Folder" => "Папка", "From link" => "Из ссылки", +"Trash" => "Корзина", "Cancel upload" => "Отмена загрузки", "Nothing in here. Upload something!" => "Здесь ничего нет. Загрузите что-нибудь!", "Download" => "Скачать", "Upload too large" => "Файл слишком большой", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Файлы, которые Вы пытаетесь загрузить, превышают лимит для файлов на этом сервере.", "Files are being scanned, please wait." => "Подождите, файлы сканируются.", -"Current scanning" => "Текущее сканирование" +"Current scanning" => "Текущее сканирование", +"Upgrading filesystem cache..." => "Обновление кеша файловой системы..." ); diff --git a/apps/files/templates/index.php b/apps/files/templates/index.php index 2d4ed9ab2d..0b4aa21eac 100644 --- a/apps/files/templates/index.php +++ b/apps/files/templates/index.php @@ -59,7 +59,7 @@
t('Nothing in here. Upload something!')?>
- +
diff --git a/apps/files_encryption/appinfo/app.php b/apps/files_encryption/appinfo/app.php index e426f237bb..f83109a18e 100644 --- a/apps/files_encryption/appinfo/app.php +++ b/apps/files_encryption/appinfo/app.php @@ -12,7 +12,7 @@ OC_FileProxy::register( new OCA\Encryption\Proxy() ); // User-related hooks OCP\Util::connectHook( 'OC_User', 'post_login', 'OCA\Encryption\Hooks', 'login' ); -OCP\Util::connectHook( 'OC_User', 'post_setPassword','OCA\Encryption\Hooks', 'setPassphrase' ); +OCP\Util::connectHook( 'OC_User', 'pre_setPassword','OCA\Encryption\Hooks', 'setPassphrase' ); // Sharing-related hooks OCP\Util::connectHook( 'OCP\Share', 'post_shared', 'OCA\Encryption\Hooks', 'postShared' ); diff --git a/apps/files_encryption/hooks/hooks.php b/apps/files_encryption/hooks/hooks.php index 065ef9d241..8bdeee0937 100644 --- a/apps/files_encryption/hooks/hooks.php +++ b/apps/files_encryption/hooks/hooks.php @@ -38,12 +38,15 @@ class Hooks { */ public static function login( $params ) { + // Manually initialise Filesystem{} singleton with correct + // fake root path, in order to avoid fatal webdav errors \OC\Files\Filesystem::init( $params['uid'] . '/' . 'files' . '/' ); $view = new \OC_FilesystemView( '/' ); $util = new Util( $view, $params['uid'] ); + // Check files_encryption infrastructure is ready for action if ( ! $util->ready() ) { \OC_Log::write( 'Encryption library', 'User account "' . $params['uid'] . '" is not ready for encryption; configuration started', \OC_Log::DEBUG ); @@ -104,14 +107,16 @@ class Hooks { * @param array $params keys: uid, password */ public static function setPassphrase( $params ) { - + // Only attempt to change passphrase if server-side encryption // is in use (client-side encryption does not have access to // the necessary keys) if ( Crypt::mode() == 'server' ) { + $session = new Session(); + // Get existing decrypted private key - $privateKey = $_SESSION['privateKey']; + $privateKey = $session->getPrivateKey(); // Encrypt private key with new user pwd as passphrase $encryptedPrivateKey = Crypt::symmetricEncryptFileContent( $privateKey, $params['password'] ); diff --git a/apps/files_encryption/l10n/ar.php b/apps/files_encryption/l10n/ar.php index f08585e485..375fbd9a9a 100644 --- a/apps/files_encryption/l10n/ar.php +++ b/apps/files_encryption/l10n/ar.php @@ -1,5 +1,4 @@ "التشفير", -"Exclude the following file types from encryption" => "استبعد أنواع الملفات التالية من التشفير", "None" => "لا شيء" ); diff --git a/apps/files_encryption/l10n/bg_BG.php b/apps/files_encryption/l10n/bg_BG.php index 4ceee127af..07a97f5f8a 100644 --- a/apps/files_encryption/l10n/bg_BG.php +++ b/apps/files_encryption/l10n/bg_BG.php @@ -1,5 +1,4 @@ "Криптиране", -"Exclude the following file types from encryption" => "Изключване на следните файлови типове от криптирането", "None" => "Няма" ); diff --git a/apps/files_encryption/l10n/bn_BD.php b/apps/files_encryption/l10n/bn_BD.php index 29c486b8ca..43767d5651 100644 --- a/apps/files_encryption/l10n/bn_BD.php +++ b/apps/files_encryption/l10n/bn_BD.php @@ -1,5 +1,4 @@ "সংকেতায়ন", -"Exclude the following file types from encryption" => "সংকেতায়ন থেকে নিম্নোক্ত ধরণসমূহ বাদ দাও", "None" => "কোনটিই নয়" ); diff --git a/apps/files_encryption/l10n/ca.php b/apps/files_encryption/l10n/ca.php index 56c81e747f..1b888f7714 100644 --- a/apps/files_encryption/l10n/ca.php +++ b/apps/files_encryption/l10n/ca.php @@ -4,13 +4,9 @@ "Change encryption password to login password" => "Canvia la contrasenya d'encriptació per la d'accés", "Please check your passwords and try again." => "Comproveu les contrasenyes i proveu-ho de nou.", "Could not change your file encryption password to your login password" => "No s'ha pogut canviar la contrasenya d'encriptació de fitxers per la d'accés", -"Choose encryption mode:" => "Escolliu el mode d'encriptació:", -"Client side encryption (most secure but makes it impossible to access your data from the web interface)" => "Encriptació per part del client (més segura però fa impossible l'accés a les dades des de la interfície web)", -"Server side encryption (allows you to access your files from the web interface and the desktop client)" => "Encriptació per part del servidor (permet accedir als fitxers des de la interfície web i des del client d'escriptori)", -"None (no encryption at all)" => "Cap (sense encriptació)", -"Important: Once you selected an encryption mode there is no way to change it back" => "Important: quan seleccioneu un mode d'encriptació no hi ha manera de canviar-lo de nou", -"User specific (let the user decide)" => "Específic per usuari (permet que l'usuari ho decideixi)", "Encryption" => "Encriptatge", -"Exclude the following file types from encryption" => "Exclou els tipus de fitxers següents de l'encriptatge", +"File encryption is enabled." => "L'encriptació de fitxers està activada.", +"The following file types will not be encrypted:" => "Els tipus de fitxers següents no s'encriptaran:", +"Exclude the following file types from encryption:" => "Exclou els tipus de fitxers següents de l'encriptatge:", "None" => "Cap" ); diff --git a/apps/files_encryption/l10n/cs_CZ.php b/apps/files_encryption/l10n/cs_CZ.php index 5948a9b82e..3278f13920 100644 --- a/apps/files_encryption/l10n/cs_CZ.php +++ b/apps/files_encryption/l10n/cs_CZ.php @@ -4,13 +4,9 @@ "Change encryption password to login password" => "Změnit šifrovací heslo na přihlašovací", "Please check your passwords and try again." => "Zkontrolujte, prosím, své heslo a zkuste to znovu.", "Could not change your file encryption password to your login password" => "Nelze změnit šifrovací heslo na přihlašovací.", -"Choose encryption mode:" => "Vyberte režim šifrování:", -"Client side encryption (most secure but makes it impossible to access your data from the web interface)" => "Šifrování na straně klienta (nejbezpečnější ale neumožňuje vám přistupovat k souborům z webového rozhraní)", -"Server side encryption (allows you to access your files from the web interface and the desktop client)" => "Šifrování na straně serveru (umožňuje vám přistupovat k souborům pomocí webového rozhraní i aplikací)", -"None (no encryption at all)" => "Žádný (vůbec žádné šifrování)", -"Important: Once you selected an encryption mode there is no way to change it back" => "Důležité: jak si jednou vyberete režim šifrování nelze jej opětovně změnit", -"User specific (let the user decide)" => "Definován uživatelem (umožní uživateli si vybrat)", "Encryption" => "Šifrování", -"Exclude the following file types from encryption" => "Při šifrování vynechat následující typy souborů", +"File encryption is enabled." => "Šifrování je povoleno.", +"The following file types will not be encrypted:" => "Následující typy souborů nebudou šifrovány:", +"Exclude the following file types from encryption:" => "Vyjmout následující typy souborů ze šifrování:", "None" => "Žádné" ); diff --git a/apps/files_encryption/l10n/da.php b/apps/files_encryption/l10n/da.php index d65963f46b..c9255759cb 100644 --- a/apps/files_encryption/l10n/da.php +++ b/apps/files_encryption/l10n/da.php @@ -4,13 +4,6 @@ "Change encryption password to login password" => "Udskift krypteringskode til login-adgangskode", "Please check your passwords and try again." => "Check adgangskoder og forsøg igen.", "Could not change your file encryption password to your login password" => "Kunne ikke udskifte krypteringskode med login-adgangskode", -"Choose encryption mode:" => "Vælg krypteringsform:", -"Client side encryption (most secure but makes it impossible to access your data from the web interface)" => "Kryptering på klientsiden (mere sikker, men udelukker adgang til dataene fra webinterfacet)", -"Server side encryption (allows you to access your files from the web interface and the desktop client)" => "Kryptering på serversiden (gør det muligt at tilgå filer fra webinterfacet såvel som desktopklienten)", -"None (no encryption at all)" => "Ingen (ingen kryptering)", -"Important: Once you selected an encryption mode there is no way to change it back" => "Vigtigt: Når der er valgt krypteringsform, kan det ikke ændres tilbage igen.", -"User specific (let the user decide)" => "Brugerspecifik (lad brugeren bestemme)", "Encryption" => "Kryptering", -"Exclude the following file types from encryption" => "Ekskluder følgende filtyper fra kryptering", "None" => "Ingen" ); diff --git a/apps/files_encryption/l10n/de.php b/apps/files_encryption/l10n/de.php index e187f72ab5..c3c69e0900 100644 --- a/apps/files_encryption/l10n/de.php +++ b/apps/files_encryption/l10n/de.php @@ -4,13 +4,6 @@ "Change encryption password to login password" => "Ändern des Verschlüsselungspasswortes zum Anmeldepasswort", "Please check your passwords and try again." => "Bitte überprüfen sie Ihr Passwort und versuchen Sie es erneut.", "Could not change your file encryption password to your login password" => "Ihr Verschlüsselungspasswort konnte nicht als Anmeldepasswort gesetzt werden.", -"Choose encryption mode:" => "Wählen Sie die Verschlüsselungsart:", -"Client side encryption (most secure but makes it impossible to access your data from the web interface)" => "Clientseitige Verschlüsselung (am sichersten, aber macht es unmöglich auf ihre Daten über das Webinterface zuzugreifen)", -"Server side encryption (allows you to access your files from the web interface and the desktop client)" => "Serverseitige Verschlüsselung (erlaubt es ihnen auf ihre Daten über das Webinterface und den Desktop-Client zuzugreifen)", -"None (no encryption at all)" => "Keine (ohne Verschlüsselung)", -"Important: Once you selected an encryption mode there is no way to change it back" => "Wichtig: Sobald sie eine Verschlüsselungsmethode gewählt haben, können Sie diese nicht ändern!", -"User specific (let the user decide)" => "Benutzerspezifisch (der Benutzer kann entscheiden)", "Encryption" => "Verschlüsselung", -"Exclude the following file types from encryption" => "Die folgenden Dateitypen von der Verschlüsselung ausnehmen", "None" => "Keine" ); diff --git a/apps/files_encryption/l10n/de_DE.php b/apps/files_encryption/l10n/de_DE.php index be4369ebf0..c3c69e0900 100644 --- a/apps/files_encryption/l10n/de_DE.php +++ b/apps/files_encryption/l10n/de_DE.php @@ -4,13 +4,6 @@ "Change encryption password to login password" => "Ändern des Verschlüsselungspasswortes zum Anmeldepasswort", "Please check your passwords and try again." => "Bitte überprüfen sie Ihr Passwort und versuchen Sie es erneut.", "Could not change your file encryption password to your login password" => "Ihr Verschlüsselungspasswort konnte nicht als Anmeldepasswort gesetzt werden.", -"Choose encryption mode:" => "Wählen Sie die Verschlüsselungsmethode:", -"Client side encryption (most secure but makes it impossible to access your data from the web interface)" => "Clientseitige Verschlüsselung (am sichersten, aber macht es unmöglich auf ihre Daten über das Webinterface zuzugreifen)", -"Server side encryption (allows you to access your files from the web interface and the desktop client)" => "Serverseitige Verschlüsselung (erlaubt es ihnen auf ihre Daten über das Webinterface und den Desktop-Client zuzugreifen)", -"None (no encryption at all)" => "Keine (ohne Verschlüsselung)", -"Important: Once you selected an encryption mode there is no way to change it back" => "Wichtig: Sobald sie eine Verschlüsselungsmethode gewählt haben, können Sie diese nicht ändern!", -"User specific (let the user decide)" => "Benutzerspezifisch (der Benutzer kann entscheiden)", "Encryption" => "Verschlüsselung", -"Exclude the following file types from encryption" => "Die folgenden Dateitypen von der Verschlüsselung ausnehmen", "None" => "Keine" ); diff --git a/apps/files_encryption/l10n/el.php b/apps/files_encryption/l10n/el.php index 50b812c82d..94bb68bcbc 100644 --- a/apps/files_encryption/l10n/el.php +++ b/apps/files_encryption/l10n/el.php @@ -2,8 +2,6 @@ "Change encryption password to login password" => "Αλλαγή συνθηματικού κρυπτογράφησης στο συνθηματικό εισόδου ", "Please check your passwords and try again." => "Παρακαλώ ελέγξτε το συνθηματικό σας και προσπαθήστε ξανά.", "Could not change your file encryption password to your login password" => "Αδυναμία αλλαγής συνθηματικού κρυπτογράφησης αρχείων στο συνθηματικό εισόδου σας", -"Choose encryption mode:" => "Επιλογή κατάστασης κρυπτογράφησης:", "Encryption" => "Κρυπτογράφηση", -"Exclude the following file types from encryption" => "Εξαίρεση των παρακάτω τύπων αρχείων από την κρυπτογράφηση", "None" => "Καμία" ); diff --git a/apps/files_encryption/l10n/eo.php b/apps/files_encryption/l10n/eo.php index c6f82dcb8a..50847062c3 100644 --- a/apps/files_encryption/l10n/eo.php +++ b/apps/files_encryption/l10n/eo.php @@ -1,5 +1,4 @@ "Ĉifrado", -"Exclude the following file types from encryption" => "Malinkluzivigi la jenajn dosiertipojn el ĉifrado", "None" => "Nenio" ); diff --git a/apps/files_encryption/l10n/es.php b/apps/files_encryption/l10n/es.php index 2c6b650960..73b5f273d1 100644 --- a/apps/files_encryption/l10n/es.php +++ b/apps/files_encryption/l10n/es.php @@ -4,13 +4,9 @@ "Change encryption password to login password" => "Cambie la clave de cifrado para su contraseña de inicio de sesión", "Please check your passwords and try again." => "Por favor revise su contraseña e intentelo de nuevo.", "Could not change your file encryption password to your login password" => "No se pudo cambiar la contraseña de cifrado de archivos de su contraseña de inicio de sesión", -"Choose encryption mode:" => "Elegir el modo de cifrado:", -"Client side encryption (most secure but makes it impossible to access your data from the web interface)" => "Cifrado del lado del Cliente ( es el más seguro, pero hace que sea imposible acceder a sus datos desde la interfaz web)", -"Server side encryption (allows you to access your files from the web interface and the desktop client)" => "Cifrado del lado del Servidor (le permite acceder a sus archivos desde la interfaz web y el cliente de escritorio)", -"None (no encryption at all)" => "Ninguno (ningún cifrado en absoluto)", -"Important: Once you selected an encryption mode there is no way to change it back" => "Importante: Una vez que haya seleccionado un modo de cifrado no existe forma de cambiarlo de nuevo", -"User specific (let the user decide)" => "Específico del usuario (dejar que el usuario decida)", "Encryption" => "Cifrado", -"Exclude the following file types from encryption" => "Excluir del cifrado los siguientes tipos de archivo", +"File encryption is enabled." => "La encriptacion de archivo esta activada.", +"The following file types will not be encrypted:" => "Los siguientes tipos de archivo no seran encriptados:", +"Exclude the following file types from encryption:" => "Excluir los siguientes tipos de archivo de la encriptacion:", "None" => "Ninguno" ); diff --git a/apps/files_encryption/l10n/es_AR.php b/apps/files_encryption/l10n/es_AR.php index 5cf0b8e4ad..8160db10df 100644 --- a/apps/files_encryption/l10n/es_AR.php +++ b/apps/files_encryption/l10n/es_AR.php @@ -4,13 +4,6 @@ "Change encryption password to login password" => "Cambiá la clave de encriptado para tu contraseña de inicio de sesión", "Please check your passwords and try again." => "Por favor, revisá tu contraseña e intentalo de nuevo.", "Could not change your file encryption password to your login password" => "No se pudo cambiar la contraseña de encriptación de archivos de tu contraseña de inicio de sesión", -"Choose encryption mode:" => "Elegir el modo de encriptación:", -"Client side encryption (most secure but makes it impossible to access your data from the web interface)" => "Encriptación por parte del cliente (es el modo más seguro, pero hace que sea imposible acceder a tus datos desde la interfaz web)", -"Server side encryption (allows you to access your files from the web interface and the desktop client)" => "Encriptación por parte del servidor (te permite acceder a tus archivos desde la interfaz web y desde el cliente de escritorio)", -"None (no encryption at all)" => "Ninguno (ninguna encriptación en absoluto)", -"Important: Once you selected an encryption mode there is no way to change it back" => "Importante: Una vez que haya seleccionado un modo de encriptación, no existe forma de cambiarlo nuevamente", -"User specific (let the user decide)" => "Específico por usuario (deja que el usuario decida)", "Encryption" => "Encriptación", -"Exclude the following file types from encryption" => "Exceptuar de la encriptación los siguientes tipos de archivo", "None" => "Ninguno" ); diff --git a/apps/files_encryption/l10n/et_EE.php b/apps/files_encryption/l10n/et_EE.php index 0c0ef23114..07f1a48fb0 100644 --- a/apps/files_encryption/l10n/et_EE.php +++ b/apps/files_encryption/l10n/et_EE.php @@ -1,5 +1,4 @@ "Krüpteerimine", -"Exclude the following file types from encryption" => "Järgnevaid failitüüpe ära krüpteeri", "None" => "Pole" ); diff --git a/apps/files_encryption/l10n/eu.php b/apps/files_encryption/l10n/eu.php index e7372937e4..a2368816f5 100644 --- a/apps/files_encryption/l10n/eu.php +++ b/apps/files_encryption/l10n/eu.php @@ -1,9 +1,5 @@ "Mesedez egiaztatu zure pasahitza eta saia zaitez berriro:", -"Choose encryption mode:" => "Hautatu enkriptazio modua:", -"None (no encryption at all)" => "Bat ere ez (enkriptaziorik gabe)", -"User specific (let the user decide)" => "Erabiltzaileak zehaztuta (utzi erabiltzaileari hautatzen)", "Encryption" => "Enkriptazioa", -"Exclude the following file types from encryption" => "Ez enkriptatu hurrengo fitxategi motak", "None" => "Bat ere ez" ); diff --git a/apps/files_encryption/l10n/fa.php b/apps/files_encryption/l10n/fa.php index 0cdee74f5a..2186c9025b 100644 --- a/apps/files_encryption/l10n/fa.php +++ b/apps/files_encryption/l10n/fa.php @@ -1,5 +1,5 @@ "لطفا گذرواژه خود را بررسی کنید و دوباره امتحان کنید.", "Encryption" => "رمزگذاری", -"Exclude the following file types from encryption" => "نادیده گرفتن فایل های زیر برای رمز گذاری", "None" => "هیچ‌کدام" ); diff --git a/apps/files_encryption/l10n/fi_FI.php b/apps/files_encryption/l10n/fi_FI.php index 33756c2831..8a9dd30e67 100644 --- a/apps/files_encryption/l10n/fi_FI.php +++ b/apps/files_encryption/l10n/fi_FI.php @@ -1,9 +1,5 @@ "Tarkista salasanasi ja yritä uudelleen.", -"Choose encryption mode:" => "Choose encryption mode:", -"None (no encryption at all)" => "Ei mitään (ei lainkaan salausta)", -"Important: Once you selected an encryption mode there is no way to change it back" => "Tärkeä huomautus: Kun olet valinnut salaustatavan, sitä ei ole mahdollista vaihtaa", "Encryption" => "Salaus", -"Exclude the following file types from encryption" => "Jätä seuraavat tiedostotyypit salaamatta", "None" => "Ei mitään" ); diff --git a/apps/files_encryption/l10n/fr.php b/apps/files_encryption/l10n/fr.php index 41e37134d4..608778b2ec 100644 --- a/apps/files_encryption/l10n/fr.php +++ b/apps/files_encryption/l10n/fr.php @@ -4,13 +4,6 @@ "Change encryption password to login password" => "Convertir le mot de passe de chiffrement en mot de passe de connexion", "Please check your passwords and try again." => "Veuillez vérifier vos mots de passe et réessayer.", "Could not change your file encryption password to your login password" => "Impossible de convertir votre mot de passe de chiffrement en mot de passe de connexion", -"Choose encryption mode:" => "Choix du type de chiffrement :", -"Client side encryption (most secure but makes it impossible to access your data from the web interface)" => "Chiffrement côté client (plus sécurisé, mais ne permet pas l'accès à vos données depuis l'interface web)", -"Server side encryption (allows you to access your files from the web interface and the desktop client)" => "Chiffrement côté serveur (vous permet d'accéder à vos fichiers depuis l'interface web et depuis le client de synchronisation)", -"None (no encryption at all)" => "Aucun (pas de chiffrement)", -"Important: Once you selected an encryption mode there is no way to change it back" => "Important : Une fois le mode de chiffrement choisi, il est impossible de revenir en arrière", -"User specific (let the user decide)" => "Propre à l'utilisateur (laisse le choix à l'utilisateur)", "Encryption" => "Chiffrement", -"Exclude the following file types from encryption" => "Ne pas chiffrer les fichiers dont les types sont les suivants", "None" => "Aucun" ); diff --git a/apps/files_encryption/l10n/gl.php b/apps/files_encryption/l10n/gl.php index 42fcfce1cc..b240990f3d 100644 --- a/apps/files_encryption/l10n/gl.php +++ b/apps/files_encryption/l10n/gl.php @@ -1,5 +1,4 @@ "Cifrado", -"Exclude the following file types from encryption" => "Excluír os seguintes tipos de ficheiro do cifrado", "None" => "Nada" ); diff --git a/apps/files_encryption/l10n/he.php b/apps/files_encryption/l10n/he.php index 9adb6d2b92..cbb74bfee9 100644 --- a/apps/files_encryption/l10n/he.php +++ b/apps/files_encryption/l10n/he.php @@ -1,5 +1,4 @@ "הצפנה", -"Exclude the following file types from encryption" => "הוצא את סוגי הקבצים הבאים מהצפנה", "None" => "כלום" ); diff --git a/apps/files_encryption/l10n/hu_HU.php b/apps/files_encryption/l10n/hu_HU.php index e32de01f97..fa62ae75fb 100644 --- a/apps/files_encryption/l10n/hu_HU.php +++ b/apps/files_encryption/l10n/hu_HU.php @@ -4,13 +4,6 @@ "Change encryption password to login password" => "Titkosítási jelszó módosítása a bejelentkezési jelszóra", "Please check your passwords and try again." => "Kérjük, ellenőrizze a jelszavait, és próbálja meg újra.", "Could not change your file encryption password to your login password" => "Nem módosíthatja a fájltitkosítási jelszavát a bejelentkezési jelszavára", -"Choose encryption mode:" => "Válassza ki a titkosítási módot:", -"Client side encryption (most secure but makes it impossible to access your data from the web interface)" => "Kliens oldali titkosítás (biztonságosabb, de lehetetlenné teszi a fájlok elérését a böngészőből)", -"Server side encryption (allows you to access your files from the web interface and the desktop client)" => "Kiszolgáló oldali titkosítás (lehetővé teszi a fájlok elérését úgy böngészőből mint az asztali kliensből)", -"None (no encryption at all)" => "Semmi (semmilyen titkosítás)", -"Important: Once you selected an encryption mode there is no way to change it back" => "Fontos: Ha egyszer kiválasztotta a titkosítás módját, többé már nem lehet megváltoztatni", -"User specific (let the user decide)" => "Felhasználó specifikus (a felhasználó választhat)", "Encryption" => "Titkosítás", -"Exclude the following file types from encryption" => "A következő fájltípusok kizárása a titkosításból", "None" => "Egyik sem" ); diff --git a/apps/files_encryption/l10n/id.php b/apps/files_encryption/l10n/id.php index 20f33b8782..3f9a6c7d07 100644 --- a/apps/files_encryption/l10n/id.php +++ b/apps/files_encryption/l10n/id.php @@ -1,5 +1,4 @@ "enkripsi", -"Exclude the following file types from encryption" => "pengecualian untuk tipe file berikut dari enkripsi", "None" => "tidak ada" ); diff --git a/apps/files_encryption/l10n/is.php b/apps/files_encryption/l10n/is.php index a2559cf2b7..bd964185c4 100644 --- a/apps/files_encryption/l10n/is.php +++ b/apps/files_encryption/l10n/is.php @@ -1,5 +1,4 @@ "Dulkóðun", -"Exclude the following file types from encryption" => "Undanskilja eftirfarandi skráartegundir frá dulkóðun", "None" => "Ekkert" ); diff --git a/apps/files_encryption/l10n/it.php b/apps/files_encryption/l10n/it.php index 0c394564e0..ffa20b718d 100644 --- a/apps/files_encryption/l10n/it.php +++ b/apps/files_encryption/l10n/it.php @@ -4,13 +4,9 @@ "Change encryption password to login password" => "Converti la password di cifratura nella password di accesso", "Please check your passwords and try again." => "Controlla la password e prova ancora.", "Could not change your file encryption password to your login password" => "Impossibile convertire la password di cifratura nella password di accesso", -"Choose encryption mode:" => "Scegli la modalità di cifratura.", -"Client side encryption (most secure but makes it impossible to access your data from the web interface)" => "Cifratura lato client (più sicura ma rende impossibile accedere ai propri dati dall'interfaccia web)", -"Server side encryption (allows you to access your files from the web interface and the desktop client)" => "Cifratura lato server (ti consente di accedere ai tuoi file dall'interfaccia web e dal client desktop)", -"None (no encryption at all)" => "Nessuna (senza alcuna cifratura)", -"Important: Once you selected an encryption mode there is no way to change it back" => "Importante: una volta selezionata la modalità di cifratura non sarà possibile tornare indietro", -"User specific (let the user decide)" => "Specificato dall'utente (lascia decidere all'utente)", "Encryption" => "Cifratura", -"Exclude the following file types from encryption" => "Escludi i seguenti tipi di file dalla cifratura", +"File encryption is enabled." => "La cifratura dei file è abilitata.", +"The following file types will not be encrypted:" => "I seguenti tipi di file non saranno cifrati:", +"Exclude the following file types from encryption:" => "Escludi i seguenti tipi di file dalla cifratura:", "None" => "Nessuna" ); diff --git a/apps/files_encryption/l10n/ja_JP.php b/apps/files_encryption/l10n/ja_JP.php index 4100908e00..8d3df1f06a 100644 --- a/apps/files_encryption/l10n/ja_JP.php +++ b/apps/files_encryption/l10n/ja_JP.php @@ -4,13 +4,6 @@ "Change encryption password to login password" => "暗号化パスワードをログインパスワードに変更", "Please check your passwords and try again." => "パスワードを確認してもう一度行なってください。", "Could not change your file encryption password to your login password" => "ファイル暗号化パスワードをログインパスワードに変更できませんでした。", -"Choose encryption mode:" => "暗号化モードを選択:", -"Client side encryption (most secure but makes it impossible to access your data from the web interface)" => "クライアントサイドの暗号化(最もセキュアですが、WEBインターフェースからデータにアクセスできなくなります)", -"Server side encryption (allows you to access your files from the web interface and the desktop client)" => "サーバサイド暗号化(WEBインターフェースおよびデスクトップクライアントからファイルにアクセスすることができます)", -"None (no encryption at all)" => "暗号化無し(何も暗号化しません)", -"Important: Once you selected an encryption mode there is no way to change it back" => "重要: 一度暗号化を選択してしまうと、もとに戻す方法はありません", -"User specific (let the user decide)" => "ユーザ指定(ユーザが選べるようにする)", "Encryption" => "暗号化", -"Exclude the following file types from encryption" => "暗号化から除外するファイルタイプ", "None" => "なし" ); diff --git a/apps/files_encryption/l10n/ko.php b/apps/files_encryption/l10n/ko.php index 901c41e12e..625906d89d 100644 --- a/apps/files_encryption/l10n/ko.php +++ b/apps/files_encryption/l10n/ko.php @@ -4,13 +4,6 @@ "Change encryption password to login password" => "암호화 암호를 로그인 암호로 변경", "Please check your passwords and try again." => "암호를 확인한 다음 다시 시도하십시오.", "Could not change your file encryption password to your login password" => "암호화 암호를 로그인 암호로 변경할 수 없습니다", -"Choose encryption mode:" => "암호화 모드 선택:", -"Client side encryption (most secure but makes it impossible to access your data from the web interface)" => "클라이언트 암호화 (안전하지만 웹에서 데이터에 접근할 수 없음)", -"Server side encryption (allows you to access your files from the web interface and the desktop client)" => "서버 암호화 (웹 및 데스크톱 클라이언트에서 데이터에 접근할 수 있음)", -"None (no encryption at all)" => "없음 (암호화하지 않음)", -"Important: Once you selected an encryption mode there is no way to change it back" => "알림: 암호화 모드를 선택하면 다른 것으로 변경할 수 없습니다", -"User specific (let the user decide)" => "사용자 지정 (사용자별 설정)", "Encryption" => "암호화", -"Exclude the following file types from encryption" => "다음 파일 형식은 암호화하지 않음", "None" => "없음" ); diff --git a/apps/files_encryption/l10n/ku_IQ.php b/apps/files_encryption/l10n/ku_IQ.php index 06bb9b9325..02c030014f 100644 --- a/apps/files_encryption/l10n/ku_IQ.php +++ b/apps/files_encryption/l10n/ku_IQ.php @@ -1,5 +1,4 @@ "نهێنیکردن", -"Exclude the following file types from encryption" => "به‌ربه‌ست کردنی ئه‌م جۆره‌ په‌ڕگانه له‌ نهێنیکردن", "None" => "هیچ" ); diff --git a/apps/files_encryption/l10n/lt_LT.php b/apps/files_encryption/l10n/lt_LT.php index 22cbe7a4ff..67769c8f36 100644 --- a/apps/files_encryption/l10n/lt_LT.php +++ b/apps/files_encryption/l10n/lt_LT.php @@ -1,5 +1,4 @@ "Šifravimas", -"Exclude the following file types from encryption" => "Nešifruoti pasirinkto tipo failų", "None" => "Nieko" ); diff --git a/apps/files_encryption/l10n/lv.php b/apps/files_encryption/l10n/lv.php index 7eb21037bb..1aae137751 100644 --- a/apps/files_encryption/l10n/lv.php +++ b/apps/files_encryption/l10n/lv.php @@ -4,13 +4,9 @@ "Change encryption password to login password" => "Mainīt šifrēšanas paroli uz ierakstīšanās paroli", "Please check your passwords and try again." => "Lūdzu, pārbaudiet savas paroles un mēģiniet vēlreiz.", "Could not change your file encryption password to your login password" => "Nevarēja mainīt datņu šifrēšanas paroli uz ierakstīšanās paroli", -"Choose encryption mode:" => "Izvēlieties šifrēšanas režīmu:", -"Client side encryption (most secure but makes it impossible to access your data from the web interface)" => "Klienta puses šifrēšana (visdrošākā, bet nav iespējams piekļūt saviem datiem no tīmekļa saskarnes)", -"Server side encryption (allows you to access your files from the web interface and the desktop client)" => "Servera puses šifrēšana (ļauj piekļūt datnēm ar tīmekļa saskarni un ar darbvirsmas klientu)", -"None (no encryption at all)" => "Nav (nekādas šifrēšanas)", -"Important: Once you selected an encryption mode there is no way to change it back" => "Svarīgi — kad esat izvēlējies šifrēšanas režīmu, to nekādi nevar mainīt atpakaļ", -"User specific (let the user decide)" => "Lietotājam specifiski (ļauj lietotājam izlemt)", "Encryption" => "Šifrēšana", -"Exclude the following file types from encryption" => "Sekojošos datņu tipus nešifrēt", +"File encryption is enabled." => "Datņu šifrēšana ir aktivēta.", +"The following file types will not be encrypted:" => "Sekojošās datnes netiks šifrētas:", +"Exclude the following file types from encryption:" => "Sekojošos datņu tipus izslēgt no šifrēšanas:", "None" => "Nav" ); diff --git a/apps/files_encryption/l10n/mk.php b/apps/files_encryption/l10n/mk.php index 7ccf8ac2d5..513606fadc 100644 --- a/apps/files_encryption/l10n/mk.php +++ b/apps/files_encryption/l10n/mk.php @@ -1,5 +1,4 @@ "Енкрипција", -"Exclude the following file types from encryption" => "Исклучи ги следните типови на датотеки од енкрипција", "None" => "Ништо" ); diff --git a/apps/files_encryption/l10n/nb_NO.php b/apps/files_encryption/l10n/nb_NO.php index 2ec6670e92..e52ecb868a 100644 --- a/apps/files_encryption/l10n/nb_NO.php +++ b/apps/files_encryption/l10n/nb_NO.php @@ -1,5 +1,4 @@ "Kryptering", -"Exclude the following file types from encryption" => "Ekskluder følgende filer fra kryptering", "None" => "Ingen" ); diff --git a/apps/files_encryption/l10n/nl.php b/apps/files_encryption/l10n/nl.php index 02cb0d970f..fc8a7954a9 100644 --- a/apps/files_encryption/l10n/nl.php +++ b/apps/files_encryption/l10n/nl.php @@ -3,10 +3,6 @@ "Change encryption password to login password" => "Verander encryptie wachtwoord naar login wachtwoord", "Please check your passwords and try again." => "Controleer uw wachtwoorden en probeer het opnieuw.", "Could not change your file encryption password to your login password" => "Kon het bestandsencryptie wachtwoord niet veranderen naar het login wachtwoord", -"Choose encryption mode:" => "Kies encryptie mode:", -"None (no encryption at all)" => "Geen (zonder encryptie)", -"Important: Once you selected an encryption mode there is no way to change it back" => "Belangrijk: Zodra er voor een encryptie mode is gekozen kan deze niet meer worden gewijzigd.", "Encryption" => "Versleuteling", -"Exclude the following file types from encryption" => "Versleutel de volgende bestand types niet", "None" => "Geen" ); diff --git a/apps/files_encryption/l10n/pl.php b/apps/files_encryption/l10n/pl.php index 896086108e..505e8659f0 100644 --- a/apps/files_encryption/l10n/pl.php +++ b/apps/files_encryption/l10n/pl.php @@ -1,5 +1,4 @@ "Szyfrowanie", -"Exclude the following file types from encryption" => "Wyłącz następujące typy plików z szyfrowania", "None" => "Brak" ); diff --git a/apps/files_encryption/l10n/pt_BR.php b/apps/files_encryption/l10n/pt_BR.php index 8bd6492a8f..356419e0e7 100644 --- a/apps/files_encryption/l10n/pt_BR.php +++ b/apps/files_encryption/l10n/pt_BR.php @@ -4,13 +4,6 @@ "Change encryption password to login password" => "Mudar senha de criptografia para senha de login", "Please check your passwords and try again." => "Por favor, verifique suas senhas e tente novamente.", "Could not change your file encryption password to your login password" => "Não foi possível mudar sua senha de criptografia de arquivos para sua senha de login", -"Choose encryption mode:" => "Escolha o modo de criptografia:", -"Client side encryption (most secure but makes it impossible to access your data from the web interface)" => "Criptografia por parte do cliente (mais segura, mas torna impossível acessar seus dados a partir da interface web)", -"Server side encryption (allows you to access your files from the web interface and the desktop client)" => "Criptografia por parte do servidor (permite que você acesse seus arquivos da interface web e do cliente desktop)", -"None (no encryption at all)" => "Nenhuma (sem qualquer criptografia)", -"Important: Once you selected an encryption mode there is no way to change it back" => "Importante: Uma vez que tiver escolhido um modo de criptografia, não há um meio de voltar atrás", -"User specific (let the user decide)" => "Específico por usuário (deixa o usuário decidir)", "Encryption" => "Criptografia", -"Exclude the following file types from encryption" => "Excluir os seguintes tipos de arquivo da criptografia", "None" => "Nenhuma" ); diff --git a/apps/files_encryption/l10n/pt_PT.php b/apps/files_encryption/l10n/pt_PT.php index b6eedcdc50..4dac4d2273 100644 --- a/apps/files_encryption/l10n/pt_PT.php +++ b/apps/files_encryption/l10n/pt_PT.php @@ -4,13 +4,6 @@ "Change encryption password to login password" => "Alterar a password de encriptação para a password de login", "Please check your passwords and try again." => "Por favor verifique as suas paswords e tente de novo.", "Could not change your file encryption password to your login password" => "Não foi possível alterar a password de encriptação de ficheiros para a sua password de login", -"Choose encryption mode:" => "Escolha o método de encriptação", -"Client side encryption (most secure but makes it impossible to access your data from the web interface)" => "Encriptação do lado do cliente (mais seguro mas torna possível o acesso aos dados através do interface web)", -"Server side encryption (allows you to access your files from the web interface and the desktop client)" => "Encriptação do lado do servidor (permite o acesso aos seus ficheiros através do interface web e do cliente de sincronização)", -"None (no encryption at all)" => "Nenhuma (sem encriptação)", -"Important: Once you selected an encryption mode there is no way to change it back" => "Importante: Uma vez escolhido o modo de encriptação, não existe maneira de o alterar!", -"User specific (let the user decide)" => "Escolhido pelo utilizador", "Encryption" => "Encriptação", -"Exclude the following file types from encryption" => "Excluir da encriptação os seguintes tipo de ficheiros", "None" => "Nenhum" ); diff --git a/apps/files_encryption/l10n/ro.php b/apps/files_encryption/l10n/ro.php index f958692dd8..9a3acc18dd 100644 --- a/apps/files_encryption/l10n/ro.php +++ b/apps/files_encryption/l10n/ro.php @@ -4,13 +4,6 @@ "Change encryption password to login password" => "Schimbă parola de ecriptare în parolă de acces", "Please check your passwords and try again." => "Verifică te rog parolele și înceracă din nou.", "Could not change your file encryption password to your login password" => "Nu s-a putut schimba parola de encripție a fișierelor ca parolă de acces", -"Choose encryption mode:" => "Alege tipul de ecripție", -"Client side encryption (most secure but makes it impossible to access your data from the web interface)" => "Encripție locală (cea mai sigură, dar face ca datele să nu mai fie accesibile din interfața web)", -"Server side encryption (allows you to access your files from the web interface and the desktop client)" => "Encripție pe server (permite să accesezi datele tale din interfața web și din clientul pentru calculator)", -"None (no encryption at all)" => "Fără (nici un fel de ecriptare)", -"Important: Once you selected an encryption mode there is no way to change it back" => "Important: Din moment ce ai setat un mod de encriptare, nu mai există metode de a-l schimba înapoi", -"User specific (let the user decide)" => "Spefic fiecărui utilizator (lasă utilizatorul să decidă)", "Encryption" => "Încriptare", -"Exclude the following file types from encryption" => "Exclude următoarele tipuri de fișiere de la încriptare", "None" => "Niciuna" ); diff --git a/apps/files_encryption/l10n/ru.php b/apps/files_encryption/l10n/ru.php index 14115c1268..c11cf74ecf 100644 --- a/apps/files_encryption/l10n/ru.php +++ b/apps/files_encryption/l10n/ru.php @@ -1,5 +1,4 @@ "Шифрование", -"Exclude the following file types from encryption" => "Исключить шифрование следующих типов файлов", "None" => "Ничего" ); diff --git a/apps/files_encryption/l10n/ru_RU.php b/apps/files_encryption/l10n/ru_RU.php index 1149ac64f3..dbbb22ed9c 100644 --- a/apps/files_encryption/l10n/ru_RU.php +++ b/apps/files_encryption/l10n/ru_RU.php @@ -2,13 +2,6 @@ "Please switch to your ownCloud client and change your encryption password to complete the conversion." => "Пожалуйста, переключитесь на ownCloud-клиент и измените Ваш пароль шифрования для завершения конвертации.", "switched to client side encryption" => "переключено на шифрование на клиентской стороне", "Please check your passwords and try again." => "Пожалуйста, проверьте Ваш пароль и попробуйте снова", -"Choose encryption mode:" => "Выберите способ шифрования:", -"Client side encryption (most secure but makes it impossible to access your data from the web interface)" => "Шифрование на стороне клиента (наиболее безопасно, но делает невозможным получение доступа к Вашим данным по вэб-интерфейсу)", -"Server side encryption (allows you to access your files from the web interface and the desktop client)" => "Шифрование на стороне сервера (позволяет Вам получить доступ к Вашим файлам по вэб-интерфейсу и десктопному клиенту)", -"None (no encryption at all)" => "Нет (шифрование полностью отсутствует)", -"Important: Once you selected an encryption mode there is no way to change it back" => "Важно: Невозможно будет изменить выбранный способ шифрования", -"User specific (let the user decide)" => "Специфика пользователя (позволено решить пользователю)", "Encryption" => "Шифрование", -"Exclude the following file types from encryption" => "Исключите следующие типы файлов из шифрования", "None" => "Ни один" ); diff --git a/apps/files_encryption/l10n/si_LK.php b/apps/files_encryption/l10n/si_LK.php index 2d61bec45b..d9cec4b722 100644 --- a/apps/files_encryption/l10n/si_LK.php +++ b/apps/files_encryption/l10n/si_LK.php @@ -1,5 +1,4 @@ "ගුප්ත කේතනය", -"Exclude the following file types from encryption" => "මෙම ගොනු වර්ග ගුප්ත කේතනය කිරීමෙන් බැහැරව තබන්න", "None" => "කිසිවක් නැත" ); diff --git a/apps/files_encryption/l10n/sk_SK.php b/apps/files_encryption/l10n/sk_SK.php index 355b45a4ce..3a1e4c7e19 100644 --- a/apps/files_encryption/l10n/sk_SK.php +++ b/apps/files_encryption/l10n/sk_SK.php @@ -4,13 +4,6 @@ "Change encryption password to login password" => "Zmeniť šifrovacie heslo na prihlasovacie", "Please check your passwords and try again." => "Skontrolujte si heslo a skúste to znovu.", "Could not change your file encryption password to your login password" => "Nie je možné zmeniť šifrovacie heslo na prihlasovacie", -"Choose encryption mode:" => "Vyberte režim šifrovania:", -"Client side encryption (most secure but makes it impossible to access your data from the web interface)" => "Šifrovanie prostredníctvom klienta (najbezpečnejšia voľba, neumožňuje však prístup k súborom z webového rozhrania)", -"Server side encryption (allows you to access your files from the web interface and the desktop client)" => "Šifrovanie na serveri (umožňuje pristupovať k súborom z webového rozhrania a desktopového klienta)", -"None (no encryption at all)" => "Žiadne (žiadne šifrovanie)", -"Important: Once you selected an encryption mode there is no way to change it back" => "Dôležité: ak si zvolíte režim šifrovania, nie je možné ho znovu zrušiť", -"User specific (let the user decide)" => "Definovaný používateľom (umožňuje používateľovi vybrať si)", "Encryption" => "Šifrovanie", -"Exclude the following file types from encryption" => "Vynechať nasledujúce súbory pri šifrovaní", "None" => "Žiadne" ); diff --git a/apps/files_encryption/l10n/sl.php b/apps/files_encryption/l10n/sl.php index db963ef2f8..45272f1ee0 100644 --- a/apps/files_encryption/l10n/sl.php +++ b/apps/files_encryption/l10n/sl.php @@ -1,5 +1,4 @@ "Šifriranje", -"Exclude the following file types from encryption" => "Navedene vrste datotek naj ne bodo šifrirane", "None" => "Brez" ); diff --git a/apps/files_encryption/l10n/sr.php b/apps/files_encryption/l10n/sr.php index 198bcc94ef..91f7fc62a9 100644 --- a/apps/files_encryption/l10n/sr.php +++ b/apps/files_encryption/l10n/sr.php @@ -1,5 +1,4 @@ "Шифровање", -"Exclude the following file types from encryption" => "Не шифруј следеће типове датотека", "None" => "Ништа" ); diff --git a/apps/files_encryption/l10n/sv.php b/apps/files_encryption/l10n/sv.php index 9b6ce14178..e5294974e4 100644 --- a/apps/files_encryption/l10n/sv.php +++ b/apps/files_encryption/l10n/sv.php @@ -4,13 +4,9 @@ "Change encryption password to login password" => "Ändra krypteringslösenord till loginlösenord", "Please check your passwords and try again." => "Kontrollera dina lösenord och försök igen.", "Could not change your file encryption password to your login password" => "Kunde inte ändra ditt filkrypteringslösenord till ditt loginlösenord", -"Choose encryption mode:" => "Välj krypteringsläge:", -"Client side encryption (most secure but makes it impossible to access your data from the web interface)" => "Kryptering på klientsidan (säkraste men gör det omöjligt att komma åt dina filer med en webbläsare)", -"Server side encryption (allows you to access your files from the web interface and the desktop client)" => "Kryptering på serversidan (kan komma åt dina filer från webbläsare och datorklient)", -"None (no encryption at all)" => "Ingen (ingen kryptering alls)", -"Important: Once you selected an encryption mode there is no way to change it back" => "Viktigt: När du har valt ett krypteringsläge finns det inget sätt att ändra tillbaka", -"User specific (let the user decide)" => "Användarspecifik (låter användaren bestämma)", "Encryption" => "Kryptering", -"Exclude the following file types from encryption" => "Exkludera följande filtyper från kryptering", +"File encryption is enabled." => "Filkryptering är aktiverat.", +"The following file types will not be encrypted:" => "Följande filtyper kommer inte att krypteras:", +"Exclude the following file types from encryption:" => "Exkludera följande filtyper från kryptering:", "None" => "Ingen" ); diff --git a/apps/files_encryption/l10n/ta_LK.php b/apps/files_encryption/l10n/ta_LK.php index aab628b551..152e631d0f 100644 --- a/apps/files_encryption/l10n/ta_LK.php +++ b/apps/files_encryption/l10n/ta_LK.php @@ -1,5 +1,4 @@ "மறைக்குறியீடு", -"Exclude the following file types from encryption" => "மறைக்குறியாக்கலில் பின்வரும் கோப்பு வகைகளை நீக்கவும்", "None" => "ஒன்றுமில்லை" ); diff --git a/apps/files_encryption/l10n/th_TH.php b/apps/files_encryption/l10n/th_TH.php index f8c19456ab..28d9e30864 100644 --- a/apps/files_encryption/l10n/th_TH.php +++ b/apps/files_encryption/l10n/th_TH.php @@ -4,13 +4,6 @@ "Change encryption password to login password" => "เปลี่ยนรหัสผ่านสำหรับเข้ารหัสไปเป็นรหัสผ่านสำหรับการเข้าสู่ระบบ", "Please check your passwords and try again." => "กรุณาตรวจสอบรหัสผ่านของคุณแล้วลองใหม่อีกครั้ง", "Could not change your file encryption password to your login password" => "ไม่สามารถเปลี่ยนรหัสผ่านสำหรับการเข้ารหัสไฟล์ของคุณไปเป็นรหัสผ่านสำหรับการเข้าสู่ระบบของคุณได้", -"Choose encryption mode:" => "เลือกรูปแบบการเข้ารหัส:", -"Client side encryption (most secure but makes it impossible to access your data from the web interface)" => "การเข้ารหัสด้วยโปรแกรมไคลเอนต์ (ปลอดภัยที่สุด แต่จะทำให้คุณไม่สามารถเข้าถึงข้อมูลต่างๆจากหน้าจอเว็บไซต์ได้)", -"Server side encryption (allows you to access your files from the web interface and the desktop client)" => "การเข้ารหัสจากทางฝั่งเซิร์ฟเวอร์ (อนุญาตให้คุณเข้าถึงไฟล์ของคุณจากหน้าจอเว็บไซต์ และโปรแกรมไคลเอนต์จากเครื่องเดสก์ท็อปได้)", -"None (no encryption at all)" => "ไม่ต้อง (ไม่มีการเข้ารหัสเลย)", -"Important: Once you selected an encryption mode there is no way to change it back" => "ข้อความสำคัญ: หลังจากที่คุณได้เลือกรูปแบบการเข้ารหัสแล้ว จะไม่สามารถเปลี่ยนกลับมาใหม่ได้อีก", -"User specific (let the user decide)" => "ให้ผู้ใช้งานเลือกเอง (ปล่อยให้ผู้ใช้งานตัดสินใจเอง)", "Encryption" => "การเข้ารหัส", -"Exclude the following file types from encryption" => "ไม่ต้องรวมชนิดของไฟล์ดังต่อไปนี้จากการเข้ารหัส", "None" => "ไม่ต้อง" ); diff --git a/apps/files_encryption/l10n/tr.php b/apps/files_encryption/l10n/tr.php index 07f78d148c..0868d0a690 100644 --- a/apps/files_encryption/l10n/tr.php +++ b/apps/files_encryption/l10n/tr.php @@ -1,5 +1,4 @@ "Şifreleme", -"Exclude the following file types from encryption" => "Aşağıdaki dosya tiplerini şifrelemeye dahil etme", "None" => "Hiçbiri" ); diff --git a/apps/files_encryption/l10n/uk.php b/apps/files_encryption/l10n/uk.php index e358921565..8236c5afef 100644 --- a/apps/files_encryption/l10n/uk.php +++ b/apps/files_encryption/l10n/uk.php @@ -1,5 +1,4 @@ "Шифрування", -"Exclude the following file types from encryption" => "Не шифрувати файли наступних типів", "None" => "Жоден" ); diff --git a/apps/files_encryption/l10n/vi.php b/apps/files_encryption/l10n/vi.php index 218285b675..b86cd83978 100644 --- a/apps/files_encryption/l10n/vi.php +++ b/apps/files_encryption/l10n/vi.php @@ -1,5 +1,4 @@ "Mã hóa", -"Exclude the following file types from encryption" => "Loại trừ các loại tập tin sau đây từ mã hóa", "None" => "Không có gì hết" ); diff --git a/apps/files_encryption/l10n/zh_CN.GB2312.php b/apps/files_encryption/l10n/zh_CN.GB2312.php index 31a3d3b49b..12d903e656 100644 --- a/apps/files_encryption/l10n/zh_CN.GB2312.php +++ b/apps/files_encryption/l10n/zh_CN.GB2312.php @@ -1,5 +1,4 @@ "加密", -"Exclude the following file types from encryption" => "从加密中排除如下文件类型", "None" => "无" ); diff --git a/apps/files_encryption/l10n/zh_CN.php b/apps/files_encryption/l10n/zh_CN.php index aa4817b590..867d000f2e 100644 --- a/apps/files_encryption/l10n/zh_CN.php +++ b/apps/files_encryption/l10n/zh_CN.php @@ -1,5 +1,4 @@ "加密", -"Exclude the following file types from encryption" => "从加密中排除列出的文件类型", "None" => "None" ); diff --git a/apps/files_encryption/l10n/zh_TW.php b/apps/files_encryption/l10n/zh_TW.php index 146724def0..bd8257ed60 100644 --- a/apps/files_encryption/l10n/zh_TW.php +++ b/apps/files_encryption/l10n/zh_TW.php @@ -4,13 +4,6 @@ "Change encryption password to login password" => "將加密密碼修改為登入密碼", "Please check your passwords and try again." => "請檢查您的密碼並再試一次。", "Could not change your file encryption password to your login password" => "無法變更您的檔案加密密碼為登入密碼", -"Choose encryption mode:" => "選擇加密模式:", -"Client side encryption (most secure but makes it impossible to access your data from the web interface)" => "客戶端加密 (最安全但是會使您無法從網頁界面存取您的檔案)", -"Server side encryption (allows you to access your files from the web interface and the desktop client)" => "伺服器端加密 (您可以從網頁界面及客戶端程式存取您的檔案)", -"None (no encryption at all)" => "無 (不加密)", -"Important: Once you selected an encryption mode there is no way to change it back" => "重要:一旦您選擇了加密就無法再改回來", -"User specific (let the user decide)" => "使用者自訂 (讓使用者自己決定)", "Encryption" => "加密", -"Exclude the following file types from encryption" => "下列的檔案類型不加密", "None" => "無" ); diff --git a/apps/files_encryption/lib/crypt.php b/apps/files_encryption/lib/crypt.php index e3ffacabc9..d00f71b614 100755 --- a/apps/files_encryption/lib/crypt.php +++ b/apps/files_encryption/lib/crypt.php @@ -45,24 +45,6 @@ class Crypt { * @return string 'client' or 'server' */ public static function mode( $user = null ) { - -// $mode = \OC_Appconfig::getValue( 'files_encryption', 'mode', 'none' ); -// -// if ( $mode == 'user') { -// if ( !$user ) { -// $user = \OCP\User::getUser(); -// } -// $mode = 'none'; -// if ( $user ) { -// $query = \OC_DB::prepare( "SELECT mode FROM *PREFIX*encryption WHERE uid = ?" ); -// $result = $query->execute(array($user)); -// if ($row = $result->fetchRow()){ -// $mode = $row['mode']; -// } -// } -// } -// -// return $mode; return 'server'; @@ -133,12 +115,6 @@ class Crypt { * @note see also OCA\Encryption\Util->isEncryptedPath() */ public static function isCatfile( $content ) { - - if ( !$content ) { - - return false; - - } $noPadding = self::removePadding( $content ); diff --git a/apps/files_encryption/lib/util.php b/apps/files_encryption/lib/util.php index 355ffb90ef..52bc74db27 100644 --- a/apps/files_encryption/lib/util.php +++ b/apps/files_encryption/lib/util.php @@ -69,11 +69,6 @@ class Util { //// DONE: add method to fetch legacy key //// DONE: add method to decrypt legacy encrypted data - //// TODO: add method to encrypt all user files using new system - //// TODO: add method to decrypt all user files using new system - //// TODO: add method to encrypt all user files using old system - //// TODO: add method to decrypt all user files using old system - // Admin UI: @@ -93,7 +88,6 @@ class Util { // Integration testing: - //// TODO: test new encryption with webdav //// TODO: test new encryption with versioning //// TODO: test new encryption with sharing //// TODO: test new encryption with proxies @@ -278,7 +272,7 @@ class Util { // will eat server resources :( if ( Keymanager::getFileKey( $this->view, $this->userId, $file ) - && Crypt::isCatfile( $filePath ) + && Crypt::isCatfile( $data ) ) { $found['encrypted'][] = array( 'name' => $file, 'path' => $filePath ); @@ -391,7 +385,6 @@ class Util { } - // FIXME: Legacy recrypting here isn't finished yet // Encrypt legacy encrypted files if ( ! empty( $legacyPassphrase ) @@ -437,6 +430,11 @@ class Util { } + /** + * @brief Return important encryption related paths + * @param string $pathName Name of the directory to return the path of + * @return string path + */ public function getPath( $pathName ) { switch ( $pathName ) { diff --git a/apps/files_sharing/l10n/sr.php b/apps/files_sharing/l10n/sr.php index 7a922b8900..6e277f6771 100644 --- a/apps/files_sharing/l10n/sr.php +++ b/apps/files_sharing/l10n/sr.php @@ -1,3 +1,5 @@ "Пошаљи" +"Password" => "Лозинка", +"Submit" => "Пошаљи", +"Download" => "Преузми" ); diff --git a/apps/files_trashbin/ajax/delete.php b/apps/files_trashbin/ajax/delete.php new file mode 100644 index 0000000000..a166ce55c8 --- /dev/null +++ b/apps/files_trashbin/ajax/delete.php @@ -0,0 +1,24 @@ + array("filename" => $file))); +} else { + OCP\JSON::error(array("data" => array("message" => "Couldn't delete ".$file. " permanently"))); +} + diff --git a/apps/files_trashbin/js/disableDefaultActions.js b/apps/files_trashbin/js/disableDefaultActions.js index 56b95407dd..27c3e13db4 100644 --- a/apps/files_trashbin/js/disableDefaultActions.js +++ b/apps/files_trashbin/js/disableDefaultActions.js @@ -1,3 +1,4 @@ /* disable download and sharing actions */ var disableDownloadActions = true; var disableSharing = true; +var trashBinApp = true; \ No newline at end of file diff --git a/apps/files_trashbin/js/trash.js b/apps/files_trashbin/js/trash.js index f1241fce51..6c810e4c2b 100644 --- a/apps/files_trashbin/js/trash.js +++ b/apps/files_trashbin/js/trash.js @@ -22,6 +22,31 @@ $(document).ready(function() { }); }; + FileActions.register('all', 'Delete', OC.PERMISSION_READ, function () { + return OC.imagePath('core', 'actions/delete'); + }, function (filename) { + $('.tipsy').remove(); + + var tr=$('tr').filterAttr('data-file', filename); + var deleteAction = $('tr').filterAttr('data-file',filename).children("td.date").children(".action.delete"); + var oldHTML = deleteAction[0].outerHTML; + var newHTML = ''; + deleteAction[0].outerHTML = newHTML; + + $.post(OC.filePath('files_trashbin','ajax','delete.php'), + {file:tr.attr('data-file') }, + function(result){ + if ( result.status == 'success' ) { + var row = document.getElementById(result.data.filename); + row.parentNode.removeChild(row); + } else { + deleteAction[0].outerHTML = oldHTML; + OC.dialogs.alert(result.data.message, 'Error'); + } + }); + + }); + // Sets the select_all checkbox behaviour : $('#select_all').click(function() { if($(this).attr('checked')){ diff --git a/apps/files_trashbin/l10n/es.php b/apps/files_trashbin/l10n/es.php index 798322cab2..b191ffc424 100644 --- a/apps/files_trashbin/l10n/es.php +++ b/apps/files_trashbin/l10n/es.php @@ -1,8 +1,11 @@ "Restaurar", "Name" => "Nombre", +"Deleted" => "Eliminado", "1 folder" => "1 carpeta", "{count} folders" => "{count} carpetas", "1 file" => "1 archivo", "{count} files" => "{count} archivos", +"Nothing in here. Your trash bin is empty!" => "Nada aqui. La papelera esta vacia!", "Restore" => "Recuperar" ); diff --git a/apps/files_trashbin/l10n/sv.php b/apps/files_trashbin/l10n/sv.php index ca4dba0496..5bde85e705 100644 --- a/apps/files_trashbin/l10n/sv.php +++ b/apps/files_trashbin/l10n/sv.php @@ -1,4 +1,5 @@ "utför återställning", "Name" => "Namn", "Deleted" => "Raderad", "1 folder" => "1 mapp", diff --git a/apps/files_trashbin/lib/trash.php b/apps/files_trashbin/lib/trash.php index a7eff3d44e..e41dcb096c 100644 --- a/apps/files_trashbin/lib/trash.php +++ b/apps/files_trashbin/lib/trash.php @@ -150,6 +150,45 @@ class Trashbin { return false; } + /** + * delete file from trash bin permanently + * @param $filename path to the file + * @param $timestamp of deletion time + * @return true/false + */ + public static function delete($filename, $timestamp=null) { + + $user = \OCP\User::getUser(); + $view = new \OC_FilesystemView('/'.$user); + + if ( $timestamp ) { + $query = \OC_DB::prepare('DELETE FROM *PREFIX*files_trash WHERE user=? AND id=? AND timestamp=?'); + $query->execute(array($user,$filename,$timestamp)); + $file = $filename.'.d'.$timestamp; + } else { + $file = $filename; + } + + if ( \OCP\App::isEnabled('files_versions') ) { + if ($view->is_dir('versions_trashbin/'.$file)) { + $view->unlink('versions_trashbin/'.$file); + } else if ( $versions = self::getVersionsFromTrash($file, $timestamp) ) { + foreach ($versions as $v) { + if ($timestamp ) { + $view->unlink('versions_trashbin/'.$filename.'.v'.$v.'.d'.$timestamp); + } else { + $view->unlink('versions_trashbin/'.$file.'.v'.$v); + } + } + } + } + + $view->unlink('/files_trashbin/'.$file); + + return true; + } + + /** * clean up the trash bin */ diff --git a/apps/files_versions/ajax/getVersions.php b/apps/files_versions/ajax/getVersions.php index 600e69cf79..53fc04625c 100644 --- a/apps/files_versions/ajax/getVersions.php +++ b/apps/files_versions/ajax/getVersions.php @@ -5,7 +5,7 @@ $userDirectory = "/".OCP\USER::getUser()."/files"; $source = $_GET['source']; $count = 5; //show the newest revisions -if( ($versions = OCA_Versions\Storage::getVersions( $source, $count)) ) { +if( ($versions = OCA\Files_Versions\Storage::getVersions( $source, $count)) ) { $versionsFormatted = array(); diff --git a/apps/files_versions/ajax/rollbackVersion.php b/apps/files_versions/ajax/rollbackVersion.php index f2c211d9c1..dc5a59cb4a 100644 --- a/apps/files_versions/ajax/rollbackVersion.php +++ b/apps/files_versions/ajax/rollbackVersion.php @@ -8,7 +8,7 @@ $userDirectory = "/".OCP\USER::getUser()."/files"; $file = $_GET['file']; $revision=(int)$_GET['revision']; -if(OCA_Versions\Storage::rollback( $file, $revision )) { +if(OCA\Files_Versions\Storage::rollback( $file, $revision )) { OCP\JSON::success(array("data" => array( "revision" => $revision, "file" => $file ))); }else{ OCP\JSON::error(array("data" => array( "message" => "Could not revert:" . $file ))); diff --git a/apps/files_versions/appinfo/app.php b/apps/files_versions/appinfo/app.php index edd0a2f702..f7c6989ce2 100644 --- a/apps/files_versions/appinfo/app.php +++ b/apps/files_versions/appinfo/app.php @@ -1,8 +1,8 @@ assign( 'path', $path ); - $versions = new OCA_Versions\Storage(); + $versions = new OCA\Files_Versions\Storage(); // roll back to old version if button clicked if( isset( $_GET['revert'] ) ) { @@ -52,7 +52,7 @@ if ( isset( $_GET['path'] ) ) { // show the history only if there is something to show $count = 999; //show the newest revisions - if( ($versions = OCA_Versions\Storage::getVersions( $path, $count)) ) { + if( ($versions = OCA\Files_Versions\Storage::getVersions( $path, $count)) ) { $tmpl->assign( 'versions', array_reverse( $versions ) ); diff --git a/apps/files_versions/lib/hooks.php b/apps/files_versions/lib/hooks.php index 5cefc53289..dc02c605c4 100644 --- a/apps/files_versions/lib/hooks.php +++ b/apps/files_versions/lib/hooks.php @@ -10,7 +10,7 @@ * This class contains all hooks. */ -namespace OCA_Versions; +namespace OCA\Files_Versions; class Hooks { diff --git a/apps/files_versions/lib/versions.php b/apps/files_versions/lib/versions.php index 003d548d2b..b54bc4a442 100644 --- a/apps/files_versions/lib/versions.php +++ b/apps/files_versions/lib/versions.php @@ -13,7 +13,7 @@ * A class to handle the versioning of files. */ -namespace OCA_Versions; +namespace OCA\Files_Versions; class Storage { @@ -195,6 +195,7 @@ class Storage { $files_view = new \OC_FilesystemView('/'.$uid.'/files'); $local_file = $files_view->getLocalFile($filename); + $local_file_md5 = \md5_file( $local_file ); foreach( $matches as $ma ) { $parts = explode( '.v', $ma ); @@ -206,7 +207,7 @@ class Storage { $versions[$key]['size'] = $versions_fileview->filesize($filename.'.v'.$version); // if file with modified date exists, flag it in array as currently enabled version - ( \md5_file( $ma ) == \md5_file( $local_file ) ? $versions[$key]['fileMatch'] = 1 : $versions[$key]['fileMatch'] = 0 ); + ( \md5_file( $ma ) == $local_file_md5 ? $versions[$key]['fileMatch'] = 1 : $versions[$key]['fileMatch'] = 0 ); } @@ -333,7 +334,8 @@ class Storage { } // calculate available space for version history - $rootInfo = \OC_FileCache::get('', '/'. $uid . '/files'); + $files_view = new \OC_FilesystemView('/'.$uid.'/files'); + $rootInfo = $files_view->getFileInfo('/'); $free = $quota-$rootInfo['size']; // remaining free space for user if ( $free > 0 ) { $availableSpace = ($free * self::DEFAULTMAXSIZE / 100) - $versionsSize; // how much space can be used for versions diff --git a/apps/user_ldap/l10n/es.php b/apps/user_ldap/l10n/es.php index a6d1d9d260..3740d13e22 100644 --- a/apps/user_ldap/l10n/es.php +++ b/apps/user_ldap/l10n/es.php @@ -4,6 +4,7 @@ "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 look in the ownCloud log for further details." => "La configuración no es válida. Por favor, busque en el log de ownCloud para más detalles.", "Deletion failed" => "Falló el borrado", +"Take over settings from recent server configuration?" => "Hacerse cargo de los ajustes de configuración del servidor reciente?", "Keep settings?" => "Mantener la configuración?", "Cannot add server configuration" => "No se puede añadir la configuración del servidor", "Connection test succeeded" => "La prueba de conexión fue exitosa", @@ -13,6 +14,7 @@ "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "Advertencia: Los Apps user_ldap y user_webdavauth son incompatibles. Puede que experimente un comportamiento inesperado. Pregunte al administrador del sistema para desactivar uno de ellos.", "Warning: The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." => "Advertencia: El módulo LDAP de PHP no está instalado, el sistema no funcionará. Por favor consulte al administrador del sistema para instalarlo.", "Server configuration" => "Configuración del Servidor", +"Add Server Configuration" => "Agregar configuracion del servidor", "Host" => "Máquina", "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://", "Base DN" => "DN base", @@ -31,7 +33,15 @@ "Group Filter" => "Filtro de grupo", "Defines the filter to apply, when retrieving groups." => "Define el filtro a aplicar, cuando se obtienen grupos.", "without any placeholder, e.g. \"objectClass=posixGroup\"." => "Con cualquier placeholder, ej: \"objectClass=posixGroup\".", +"Connection Settings" => "Configuracion de coneccion", +"Configuration Active" => "Configuracion activa", +"When unchecked, this configuration will be skipped." => "Cuando deseleccione, esta configuracion sera omitida.", "Port" => "Puerto", +"Backup (Replica) Host" => "Host para backup (Replica)", +"Give an optional backup host. It must be a replica of the main LDAP/AD server." => "Dar un host de copia de seguridad opcional. Debe ser una réplica del servidor principal LDAP / AD.", +"Backup (Replica) Port" => "Puerto para backup (Replica)", +"Disable Main Server" => "Deshabilitar servidor principal", +"When switched on, ownCloud will only connect to the replica server." => "Cuando se inicie, ownCloud unicamente estara conectado al servidor replica", "Use TLS" => "Usar TLS", "Do not use it for SSL connections, it will fail." => "No usarlo para SSL, habrá error.", "Case insensitve LDAP server (Windows)" => "Servidor de LDAP sensible a mayúsculas/minúsculas (Windows)", @@ -39,15 +49,20 @@ "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Si la conexión sólo funciona con esta opción, importe el certificado SSL del servidor LDAP en su servidor ownCloud.", "Not recommended, use for testing only." => "No recomendado, sólo para pruebas.", "in seconds. A change empties the cache." => "en segundos. Un cambio vacía la cache.", +"Directory Settings" => "Configuracion de directorio", "User Display Name Field" => "Campo de nombre de usuario a mostrar", "The LDAP attribute to use to generate the user`s ownCloud name." => "El atributo LDAP a usar para generar el nombre de usuario de ownCloud.", "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 ownCloud name." => "El atributo LDAP a usar para generar el nombre de los grupos de ownCloud.", "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", "in bytes" => "en bytes", "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.", "Help" => "Ayuda" diff --git a/apps/user_ldap/l10n/es_AR.php b/apps/user_ldap/l10n/es_AR.php index dce2321e6b..28bc318a52 100644 --- a/apps/user_ldap/l10n/es_AR.php +++ b/apps/user_ldap/l10n/es_AR.php @@ -1,7 +1,17 @@ "Fallo al borrar la configuración del servidor", +"The configuration is valid and the connection could be established!" => "La configuración es valida y la conexión pudo ser establecida.", "Deletion failed" => "Error al borrar", +"Keep settings?" => "¿Mantener preferencias?", +"Cannot add server configuration" => "No se pudo añadir la configuración del servidor", +"Connection test succeeded" => "El este de conexión ha sido completado satisfactoriamente", +"Connection test failed" => "Falló es test de conexión", +"Do you really want to delete the current Server Configuration?" => "¿Realmente desea borrar la configuración actual del servidor?", +"Confirm Deletion" => "Confirmar borrado", "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "Advertencia: Los Apps user_ldap y user_webdavauth son incompatibles. Puede que experimente un comportamiento inesperado. Pregunte al administrador del sistema para desactivar uno de ellos.", "Warning: The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." => "Atención: El módulo PHP LDAP no está instalado, este elemento no va a funcionar. Por favor, pedile al administrador que lo instale.", +"Server configuration" => "Configuración del Servidor", +"Add Server Configuration" => "Añadir Configuración del Servidor", "Host" => "Servidor", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "Podés omitir el protocolo, excepto si SSL es requerido. En ese caso, empezá con ldaps://", "Base DN" => "DN base", @@ -20,7 +30,10 @@ "Group Filter" => "Filtro de grupo", "Defines the filter to apply, when retrieving groups." => "Define el filtro a aplicar cuando se obtienen grupos.", "without any placeholder, e.g. \"objectClass=posixGroup\"." => "Sin ninguna plantilla, p. ej.: \"objectClass=posixGroup\".", +"Connection Settings" => "Configuración de Conección", +"Configuration Active" => "Configuración activa", "Port" => "Puerto", +"Disable Main Server" => "Deshabilitar el Servidor Principal", "Use TLS" => "Usar TLS", "Do not use it for SSL connections, it will fail." => "No usarlo para SSL, dará error.", "Case insensitve LDAP server (Windows)" => "Servidor de LDAP sensible a mayúsculas/minúsculas (Windows)", @@ -28,6 +41,7 @@ "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Si la conexión sólo funciona con esta opción, importá el certificado SSL del servidor LDAP en tu servidor ownCloud.", "Not recommended, use for testing only." => "No recomendado, sólo para pruebas.", "in seconds. A change empties the cache." => "en segundos. Cambiarlo vacía la cache.", +"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 ownCloud name." => "El atributo LDAP a usar para generar el nombre de usuario de ownCloud.", "Base User Tree" => "Árbol base de usuario", @@ -37,6 +51,7 @@ "Base Group Tree" => "Árbol base de grupo", "One Group Base DN per line" => "Una DN base de grupo por línea", "Group-Member association" => "Asociación Grupo-Miembro", +"Special Attributes" => "Atributos Especiales", "in bytes" => "en bytes", "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Vacío para el nombre de usuario (por defecto). En otro caso, especificá un atributo LDAP/AD.", "Help" => "Ayuda" diff --git a/apps/user_ldap/l10n/fa.php b/apps/user_ldap/l10n/fa.php index e3955d3f32..7ddd7dad5c 100644 --- a/apps/user_ldap/l10n/fa.php +++ b/apps/user_ldap/l10n/fa.php @@ -1,5 +1,6 @@ "حذف کردن انجام نشد", +"Keep settings?" => "آیا تنظیمات ذخیره شود ؟", "Host" => "میزبانی", "Password" => "رمز عبور", "Port" => "درگاه", diff --git a/apps/user_ldap/l10n/fr.php b/apps/user_ldap/l10n/fr.php index a2879b4fa0..9bb350ea23 100644 --- a/apps/user_ldap/l10n/fr.php +++ b/apps/user_ldap/l10n/fr.php @@ -33,6 +33,7 @@ "Group Filter" => "Filtre de groupes", "Defines the filter to apply, when retrieving groups." => "Définit le filtre à appliquer lors de la récupération des groupes.", "without any placeholder, e.g. \"objectClass=posixGroup\"." => "sans élément de substitution, par exemple \"objectClass=posixGroup\".", +"Connection Settings" => "Paramètres de connexion", "Configuration Active" => "Configuration active", "When unchecked, this configuration will be skipped." => "Lorsque non cochée, la configuration sera ignorée.", "Port" => "Port", @@ -48,6 +49,7 @@ "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Si la connexion ne fonctionne qu'avec cette option, importez le certificat SSL du serveur LDAP dans le serveur ownCloud.", "Not recommended, use for testing only." => "Non recommandé, utilisation pour tests uniquement.", "in seconds. A change empties the cache." => "en secondes. Tout changement vide le cache.", +"Directory Settings" => "Paramètres du répertoire", "User Display Name Field" => "Champ \"nom d'affichage\" de l'utilisateur", "The LDAP attribute to use to generate the user`s ownCloud name." => "L'attribut LDAP utilisé pour générer les noms d'utilisateurs d'ownCloud.", "Base User Tree" => "DN racine de l'arbre utilisateurs", @@ -60,6 +62,7 @@ "One Group Base DN per line" => "Un DN racine groupe par ligne", "Group Search Attributes" => "Recherche des attributs du groupe", "Group-Member association" => "Association groupe-membre", +"Special Attributes" => "Attributs spéciaux", "in bytes" => "en octets", "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Laisser vide ", "Help" => "Aide" diff --git a/apps/user_ldap/l10n/sr.php b/apps/user_ldap/l10n/sr.php index f16e59273c..418d94afca 100644 --- a/apps/user_ldap/l10n/sr.php +++ b/apps/user_ldap/l10n/sr.php @@ -1,4 +1,36 @@ "Брисање није успело", +"Host" => "Домаћин", +"You can omit the protocol, except you require SSL. Then start with ldaps://" => "Можете да изоставите протокол, осим ако захтевате SSL. У том случају почните са ldaps://.", +"Base DN" => "База DN", +"User DN" => "Корисник DN", +"The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." => "DN корисника клијента са којим треба да се успостави веза, нпр. uid=agent,dc=example,dc=com. За анониман приступ, оставите поља DN и лозинка празним.", +"Password" => "Лозинка", +"For anonymous access, leave DN and Password empty." => "За анониман приступ, оставите поља DN и лозинка празним.", +"User Login Filter" => "Филтер за пријаву корисника", +"Defines the filter to apply, when login is attempted. %%uid replaces the username in the login action." => "Одређује филтер за примењивање при покушају пријаве. %%uid замењује корисничко име.", +"use %%uid placeholder, e.g. \"uid=%%uid\"" => "користите чувар места %%uid, нпр. „uid=%%uid\"", +"User List Filter" => "Филтер за списак корисника", +"Defines the filter to apply, when retrieving users." => "Одређује филтер за примењивање при прибављању корисника.", +"without any placeholder, e.g. \"objectClass=person\"." => "без икаквог чувара места, нпр. „objectClass=person“.", +"Group Filter" => "Филтер групе", +"Defines the filter to apply, when retrieving groups." => "Одређује филтер за примењивање при прибављању група.", +"without any placeholder, e.g. \"objectClass=posixGroup\"." => "без икаквог чувара места, нпр. „objectClass=posixGroup“.", +"Port" => "Порт", +"Use TLS" => "Користи TLS", +"Do not use it for SSL connections, it will fail." => "Не користите за SSL везе јер неће радити.", +"Case insensitve LDAP server (Windows)" => "LDAP сервер осетљив на велика и мала слова (Windows)", +"Turn off SSL certificate validation." => "Искључите потврду SSL сертификата.", +"If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Увезите SSL сертификат LDAP сервера у свој ownCloud ако веза ради само са овом опцијом.", +"Not recommended, use for testing only." => "Не препоручује се; користите само за тестирање.", +"in seconds. A change empties the cache." => "у секундама. Промена испражњава кеш меморију.", +"User Display Name Field" => "Име приказа корисника", +"The LDAP attribute to use to generate the user`s ownCloud name." => "LDAP атрибут за стварање имена ownCloud-а корисника.", +"Base User Tree" => "Основно стабло корисника", +"Group Display Name Field" => "Име приказа групе", +"The LDAP attribute to use to generate the groups`s ownCloud name." => "LDAP атрибут за стварање имена ownCloud-а групе.", +"Base Group Tree" => "Основна стабло група", +"Group-Member association" => "Придруживање чланова у групу", +"in bytes" => "у бајтовима", "Help" => "Помоћ" ); diff --git a/apps/user_ldap/l10n/sv.php b/apps/user_ldap/l10n/sv.php index b1da09ad3e..509906934c 100644 --- a/apps/user_ldap/l10n/sv.php +++ b/apps/user_ldap/l10n/sv.php @@ -1,8 +1,10 @@ "Misslyckades med att radera serverinställningen", "The configuration is valid and the connection could be established!" => "Inställningen är giltig och anslutningen kunde upprättas!", +"The configuration is valid, but the Bind failed. Please check the server settings and credentials." => "Konfigurationen är riktig, men Bind felade. Var vänlig och kontrollera serverinställningar och logininformation.", "The configuration is invalid. Please look in the ownCloud log for further details." => "Inställningen är ogiltig. Vänligen se ownCloud-loggen för fler detaljer.", "Deletion failed" => "Raderingen misslyckades", +"Take over settings from recent server configuration?" => "Ta över inställningar från tidigare serverkonfiguration?", "Keep settings?" => "Behåll inställningarna?", "Cannot add server configuration" => "Kunde inte lägga till serverinställning", "Connection test succeeded" => "Anslutningstestet lyckades", @@ -31,8 +33,15 @@ "Group Filter" => "Gruppfilter", "Defines the filter to apply, when retrieving groups." => "Definierar filter att tillämpa vid listning av grupper.", "without any placeholder, e.g. \"objectClass=posixGroup\"." => "utan platshållare, t.ex. \"objectClass=posixGroup\".", +"Connection Settings" => "Uppkopplingsinställningar", +"Configuration Active" => "Konfiguration aktiv", +"When unchecked, this configuration will be skipped." => "Ifall denna är avbockad så kommer konfigurationen att skippas.", "Port" => "Port", +"Backup (Replica) Host" => "Säkerhetskopierings-värd (Replika)", +"Give an optional backup host. It must be a replica of the main LDAP/AD server." => "Ange en valfri värd för säkerhetskopiering. Den måste vara en replika av den huvudsakliga LDAP/AD-servern", +"Backup (Replica) Port" => "Säkerhetskopierins-port (Replika)", "Disable Main Server" => "Inaktivera huvudserver", +"When switched on, ownCloud will only connect to the replica server." => "När denna är påkopplad kommer ownCloud att koppla upp till replika-servern, endast.", "Use TLS" => "Använd TLS", "Do not use it for SSL connections, it will fail." => "Använd inte för SSL-anslutningar, det kommer inte att fungera.", "Case insensitve LDAP server (Windows)" => "LDAP-servern är okänslig för gemener och versaler (Windows)", @@ -40,15 +49,20 @@ "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Om anslutningen bara fungerar med det här alternativet, importera LDAP-serverns SSL-certifikat i din ownCloud-server.", "Not recommended, use for testing only." => "Rekommenderas inte, använd bara för test. ", "in seconds. A change empties the cache." => "i sekunder. En förändring tömmer cache.", +"Directory Settings" => "Mappinställningar", "User Display Name Field" => "Attribut för användarnamn", "The LDAP attribute to use to generate the user`s ownCloud name." => "Attribut som används för att generera användarnamn i ownCloud.", "Base User Tree" => "Bas för användare i katalogtjänst", "One User Base DN per line" => "En Användare start DN per rad", +"User Search Attributes" => "Användarsökningsattribut", +"Optional; one attribute per line" => "Valfritt; ett attribut per rad", "Group Display Name Field" => "Attribut för gruppnamn", "The LDAP attribute to use to generate the groups`s ownCloud name." => "Attribut som används för att generera gruppnamn i ownCloud.", "Base Group Tree" => "Bas för grupper i katalogtjänst", "One Group Base DN per line" => "En Grupp start DN per rad", +"Group Search Attributes" => "Gruppsökningsattribut", "Group-Member association" => "Attribut för gruppmedlemmar", +"Special Attributes" => "Specialattribut", "in bytes" => "i bytes", "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Lämnas tomt för användarnamn (standard). Ange annars ett LDAP/AD-attribut.", "Help" => "Hjälp" diff --git a/autotest.cmd b/autotest.cmd new file mode 100644 index 0000000000..053860db54 --- /dev/null +++ b/autotest.cmd @@ -0,0 +1,117 @@ +:: +:: ownCloud +:: +:: @author Thomas Müller +:: @author Tobias Ramforth (translated into Windows batch file) +:: +:: @copyright 2012 Thomas Müller thomas.mueller@tmit.eu +:: +@echo off + +set DATADIR=data-autotest +set BASEDIR=%~dp0 + +:: create autoconfig for sqlite, mysql and postgresql +echo ^ .\tests\autoconfig-sqlite.php +echo $AUTOCONFIG ^= array ^( >> .\tests\autoconfig-sqlite.php +echo 'installed' ^=^> false^, >> .\tests\autoconfig-sqlite.php +echo 'dbtype' ^=^> 'sqlite'^, >> .\tests\autoconfig-sqlite.php +echo 'dbtableprefix' ^=^> 'oc_'^, >> .\tests\autoconfig-sqlite.php +echo 'adminlogin' ^=^> 'admin'^, >> .\tests\autoconfig-sqlite.php +echo 'adminpass' ^=^> 'admin'^, >> .\tests\autoconfig-sqlite.php +echo 'directory' ^=^> '%BASEDIR%%DATADIR%'^, >> .\tests\autoconfig-sqlite.php +echo ^)^; >> .\tests\autoconfig-sqlite.php + +echo ^ .\tests\autoconfig-mysql.php +echo $AUTOCONFIG ^= array ^( >> .\tests\autoconfig-mysql.php +echo 'installed' ^=^> false^, >> .\tests\autoconfig-mysql.php +echo 'dbtype' ^=^> 'mysql'^, >> .\tests\autoconfig-mysql.php +echo 'dbtableprefix' ^=^> 'oc_'^, >> .\tests\autoconfig-mysql.php +echo 'adminlogin' ^=^> 'admin'^, >> .\tests\autoconfig-mysql.php +echo 'adminpass' ^=^> 'admin'^, >> .\tests\autoconfig-mysql.php +echo 'directory' ^=^> '%BASEDIR%%DATADIR%'^, >> .\tests\autoconfig-mysql.php +echo 'dbuser' ^=^> 'oc_autotest'^, >> .\tests\autoconfig-mysql.php +echo 'dbname' ^=^> 'oc_autotest'^, >> .\tests\autoconfig-mysql.php +echo 'dbhost' ^=^> 'localhost'^, >> .\tests\autoconfig-mysql.php +echo 'dbpass' ^=^> 'owncloud'^, >> .\tests\autoconfig-mysql.php +echo ^)^; >> .\tests\autoconfig-mysql.php + +echo ^ .\tests\autoconfig-pgsql.php +echo $AUTOCONFIG ^= array ^( >> .\tests\autoconfig-pgsql.php +echo 'installed' ^=^> false^, >> .\tests\autoconfig-pgsql.php +echo 'dbtype' ^=^> 'pgsql'^, >> .\tests\autoconfig-pgsql.php +echo 'dbtableprefix' ^=^> 'oc_'^, >> .\tests\autoconfig-pgsql.php +echo 'adminlogin' ^=^> 'admin'^, >> .\tests\autoconfig-pgsql.php +echo 'adminpass' ^=^> 'admin'^, >> .\tests\autoconfig-pgsql.php +echo 'directory' ^=^> '%BASEDIR%%DATADIR%'^, >> .\tests\autoconfig-pgsql.php +echo 'dbuser' ^=^> 'oc_autotest'^, >> .\tests\autoconfig-pgsql.php +echo 'dbname' ^=^> 'oc_autotest'^, >> .\tests\autoconfig-pgsql.php +echo 'dbhost' ^=^> 'localhost'^, >> .\tests\autoconfig-pgsql.php +echo 'dbpass' ^=^> 'owncloud'^, >> .\tests\autoconfig-pgsql.php +echo ^)^; >> .\tests\autoconfig-pgsql.php + +echo localhost:5432:*:oc_autotest:owncloud > %APPDATA%\postgresql\pgpass.conf + +:: +:: start test execution +:: +::call:execute_tests "sqlite" +call:execute_tests "mysql" +::call:execute_tests "mssql" +::call:execute_tests "ora" +::call:execute_tests "pgsql" + +goto:eof + +:execute_tests + echo "Setup environment for %~1 testing ..." + :: back to root folder + cd %BASEDIR% + + :: revert changes to tests\data + git checkout tests\data\* + + :: reset data directory + rmdir /s /q %DATADIR% + md %DATADIR% + + :: remove the old config file + :: del /q /f config\config.php + copy /y tests\preseed-config.php config\config.php + + :: drop database + if "%~1" == "mysql" mysql -u oc_autotest -powncloud -e "DROP DATABASE oc_autotest" + + if "%~1" == "pgsql" dropdb -h localhost -p 5432 -U oc_autotest -w oc_autotest + + :: copy autoconfig + copy /y %BASEDIR%\tests\autoconfig-%~1.php %BASEDIR%\config\autoconfig.php + + :: trigger installation + php -f index.php + + ::test execution + echo "Testing with %~1 ..." + cd tests + rmdir /s /q coverage-html-%~1 + md coverage-html-%~1 + php -f enable_all.php + ::phpunit --log-junit autotest-results-%~1.xml --coverage-clover autotest-clover-%~1.xml --coverage-html coverage-html-%~1 + ::phpunit --bootstrap bootstrap.php --configuration phpunit.xml + php win32-phpunit.php --bootstrap bootstrap.php --configuration phpunit.xml --log-junit autotest-results-%~1.xml --coverage-clover autotest-clover-%~1.xml --coverage-html coverage-html-%~1 + echo "Done with testing %~1 ..." + cd %BASEDIR% +goto:eof + +:: +:: NOTES on mysql: +:: - CREATE USER 'oc_autotest'@'localhost' IDENTIFIED BY 'owncloud'; +:: - grant access permissions: grant all on oc_autotest.* to 'oc_autotest'@'localhost'; +:: +:: NOTES on pgsql: +:: - su - postgres +:: - createuser -P (enter username and password and enable superuser) +:: - to enable dropdb I decided to add following line to pg_hba.conf (this is not the safest way but I don't care for the testing machine): +:: local all all trust +:: + diff --git a/autotest.sh b/autotest.sh index 744bcdbe8f..fdf6d2fe09 100755 --- a/autotest.sh +++ b/autotest.sh @@ -90,7 +90,7 @@ function execute_tests { rm -rf coverage-html-$1 mkdir coverage-html-$1 php -f enable_all.php - phpunit --log-junit autotest-results-$1.xml --coverage-clover autotest-clover-$1.xml --coverage-html coverage-html-$1 + phpunit --configuration phpunit-autotest.xml --log-junit autotest-results-$1.xml --coverage-clover autotest-clover-$1.xml --coverage-html coverage-html-$1 } # diff --git a/config/config.sample.php b/config/config.sample.php index 9ac39c439d..cfef3d5117 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -161,5 +161,9 @@ $CONFIG = array( 'class'=>'OC_User_IMAP', 'arguments'=>array('{imap.gmail.com:993/imap/ssl}INBOX') ) -) +), +//links to custom clients +'customclient_desktop' => '', //http://owncloud.org/sync-clients/ +'customclient_android' => '', //https://play.google.com/store/apps/details?id=com.owncloud.android +'customclient_ios' => '' //https://itunes.apple.com/us/app/owncloud/id543672169?mt=8 ); diff --git a/core/css/styles.css b/core/css/styles.css index 481443a19b..268040525b 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -119,18 +119,26 @@ input[type="submit"].enabled { background:#66f866; border:1px solid #5e5; -moz-b #select_all{ margin-top:.4em !important;} /* CONTENT ------------------------------------------------------------------ */ -#controls { padding:0 0.5em; width:100%; top:3.5em; height:2.8em; margin:0; background:#f7f7f7; border-bottom:1px solid #eee; position:fixed; z-index:50; -moz-box-shadow:0 -3px 7px #000; -webkit-box-shadow:0 -3px 7px #000; box-shadow:0 -3px 7px #000; } +#controls { + position:fixed; + height:2.8em; width:100%; + padding:0 70px 0 0.5em; margin:0; + -moz-box-sizing:border-box; box-sizing:border-box; + -moz-box-shadow:0 -3px 7px #000; -webkit-box-shadow:0 -3px 7px #000; box-shadow:0 -3px 7px #000; + background:#f7f7f7; border-bottom:1px solid #eee; z-index:50; +} #controls .button { display:inline-block; } #content { position:relative; height:100%; width:100%; } +#content .hascontrols { position: relative; top: 2.9em; } #content-wrapper { position:absolute; height:100%; width:100%; padding-top:3.5em; padding-left:64px; -moz-box-sizing:border-box; box-sizing:border-box; } #leftcontent, .leftcontent { - position:fixed; overflow:auto; top:0; width:20em; height:100%; + position:relative; overflow:auto; width:20em; height:100%; background:#f8f8f8; border-right:1px solid #ddd; - -moz-box-sizing:border-box; box-sizing:border-box; padding-top:6.4em; + -moz-box-sizing:border-box; box-sizing:border-box; } #leftcontent li, .leftcontent li { background:#f8f8f8; padding:.5em .8em; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; -webkit-transition:background-color 200ms; -moz-transition:background-color 200ms; -o-transition:background-color 200ms; transition:background-color 200ms; } #leftcontent li:hover, #leftcontent li:active, #leftcontent li.active, .leftcontent li:hover, .leftcontent li:active, .leftcontent li.active { background:#eee; } @@ -191,7 +199,7 @@ input[name="password-clone"] { padding-left:1.8em; width:11.7em !important; } /* NEEDED FOR INFIELD LABELS */ p.infield { position:relative; } label.infield { cursor:text !important; top:1.05em; left:.85em; } -#login form label.infield { position:absolute; font-size:19px; color:#aaa; white-space:nowrap; padding-left:1.2em; } +#login form label.infield { position:absolute; font-size:19px; color:#aaa; white-space:nowrap; padding-left:1.4em; } #login form input[type="checkbox"]+label { position:relative; margin:0; font-size:1em; text-shadow:#fff 0 1px 0; } #login form .errors { background:#fed7d7; border:1px solid #f00; list-style-indent:inside; margin:0 0 2em; padding:1em; } @@ -211,6 +219,10 @@ fieldset.warning { } fieldset.warning legend { color:#b94a48 !important; } +/* Alternative Logins */ +#alternative-logins legend { margin-bottom:10px; } +#alternative-logins li { height:40px; display:inline-block; white-space:nowrap; } + /* NAVIGATION ------------------------------------------------------------- */ #navigation { @@ -234,7 +246,10 @@ fieldset.warning legend { color:#b94a48 !important; } #expand:hover, #expand:focus, #expand:active { color:#fff; } #expand img { opacity:.7; margin-bottom:-2px; } #expand:hover img, #expand:focus img, #expand:active img { opacity:1; } -#expanddiv { position:absolute; right:0; top:45px; background-color:#444; border-bottom-left-radius:7px; box-shadow: 0 0 20px rgb(29,45,68); z-index:76; } +#expanddiv { + position:absolute; right:0; top:45px; z-index:76; display:none; + background-color:#444; border-bottom-left-radius:7px; box-shadow: 0 0 20px rgb(29,45,68); +} #expanddiv a { display:block; color:#fff; text-shadow:0 -1px 0 #000; padding:0 8px; opacity:.7; } #expanddiv a img { margin-bottom:-3px; } #expanddiv a:hover, #expanddiv a:focus, #expanddiv a:active { opacity:1; } diff --git a/core/l10n/ru.php b/core/l10n/ru.php index 7b11ea43a4..2aebf73498 100644 --- a/core/l10n/ru.php +++ b/core/l10n/ru.php @@ -54,6 +54,7 @@ "The app name is not specified." => "Имя приложения не указано", "The required file {file} is not installed!" => "Необходимый файл {file} не установлен!", "Share" => "Открыть доступ", +"Shared" => "Общие", "Error while sharing" => "Ошибка при открытии доступа", "Error while unsharing" => "Ошибка при закрытии доступа", "Error while changing permissions" => "Ошибка при смене разрешений", @@ -83,6 +84,8 @@ "Error setting expiration date" => "Ошибка при установке срока доступа", "Sending ..." => "Отправляется ...", "Email sent" => "Письмо отправлено", +"The update was unsuccessful. Please report this issue to the ownCloud community." => "При обновлении произошла ошибка. Пожалуйста сообщите об этом в ownCloud сообщество.", +"The update was successful. Redirecting you to ownCloud now." => "Обновление прошло успешно. Перенаправляемся в Ваш ownCloud...", "ownCloud password reset" => "Сброс пароля ", "Use the following link to reset your password: {link}" => "Используйте следующую ссылку чтобы сбросить пароль: {link}", "You will receive a link to reset your password via Email." => "На ваш адрес Email выслана ссылка для сброса пароля.", diff --git a/core/templates/layout.user.php b/core/templates/layout.user.php index de505486f7..2547278547 100644 --- a/core/templates/layout.user.php +++ b/core/templates/layout.user.php @@ -35,7 +35,7 @@ -
> +
  • class="active"> diff --git a/core/templates/login.php b/core/templates/login.php index 59b685eabf..e66d27f6d6 100644 --- a/core/templates/login.php +++ b/core/templates/login.php @@ -43,5 +43,19 @@ - + +
    +
    + t('Alternative Logins') ?> + +
    +
    + + +\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -571,6 +571,10 @@ msgstr "onthou" msgid "Log in" msgstr "Teken aan" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "vorige" diff --git a/l10n/af_ZA/files.po b/l10n/af_ZA/files.po index 3814f1cfa0..243d6a0e53 100644 --- a/l10n/af_ZA/files.po +++ b/l10n/af_ZA/files.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2011-08-13 02:19+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,46 +17,46 @@ msgstr "" "Language: af_ZA\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -68,11 +68,15 @@ msgstr "" msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "" @@ -177,31 +181,31 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "" diff --git a/l10n/af_ZA/files_encryption.po b/l10n/af_ZA/files_encryption.po index c2b5564d0c..7bdb33d2fc 100644 --- a/l10n/af_ZA/files_encryption.po +++ b/l10n/af_ZA/files_encryption.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-02-06 00:05+0100\n" +"PO-Revision-Date: 2013-02-05 23:05+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -39,44 +39,22 @@ msgstr "" msgid "Could not change your file encryption password to your login password" msgstr "" -#: templates/settings-personal.php:3 templates/settings.php:5 -msgid "Choose encryption mode:" -msgstr "" - -#: templates/settings-personal.php:20 templates/settings.php:24 -msgid "" -"Client side encryption (most secure but makes it impossible to access your " -"data from the web interface)" -msgstr "" - -#: templates/settings-personal.php:30 templates/settings.php:36 -msgid "" -"Server side encryption (allows you to access your files from the web " -"interface and the desktop client)" -msgstr "" - -#: templates/settings-personal.php:41 templates/settings.php:60 -msgid "None (no encryption at all)" -msgstr "" - -#: templates/settings.php:10 -msgid "" -"Important: Once you selected an encryption mode there is no way to change it" -" back" -msgstr "" - -#: templates/settings.php:48 -msgid "User specific (let the user decide)" -msgstr "" - -#: templates/settings.php:65 +#: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" msgstr "" -#: templates/settings.php:67 -msgid "Exclude the following file types from encryption" +#: templates/settings-personal.php:7 +msgid "File encryption is enabled." msgstr "" -#: templates/settings.php:71 +#: templates/settings-personal.php:11 +msgid "The following file types will not be encrypted:" +msgstr "" + +#: templates/settings.php:7 +msgid "Exclude the following file types from encryption:" +msgstr "" + +#: templates/settings.php:12 msgid "None" msgstr "" diff --git a/l10n/af_ZA/files_trashbin.po b/l10n/af_ZA/files_trashbin.po index ca4278cffc..0ac05a625a 100644 --- a/l10n/af_ZA/files_trashbin.po +++ b/l10n/af_ZA/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ msgstr "" "Language: af_ZA\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "" diff --git a/l10n/af_ZA/settings.po b/l10n/af_ZA/settings.po index f621a8914b..a768c32d6c 100644 --- a/l10n/af_ZA/settings.po +++ b/l10n/af_ZA/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-05 00:19+0100\n" -"PO-Revision-Date: 2013-02-04 17:00+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -21,6 +21,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "" @@ -45,10 +54,6 @@ msgstr "" msgid "Unable to delete group" msgstr "" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "" @@ -111,7 +116,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "" @@ -188,67 +193,83 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Wagwoord" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Nuwe wagwoord" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -161,55 +161,55 @@ msgstr "كانون الاول" msgid "Settings" msgstr "تعديلات" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "منذ ثواني" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "منذ دقيقة" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "{minutes} منذ دقائق" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "اليوم" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "" @@ -564,14 +564,18 @@ msgstr "الرجاء إعادة تعيين كلمة السر لتأمين حسا msgid "Lost your password?" msgstr "هل نسيت كلمة السر؟" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "تذكر" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "أدخل" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "السابق" diff --git a/l10n/ar/files.po b/l10n/ar/files.po index eefbee4f65..76278a3e1a 100644 --- a/l10n/ar/files.po +++ b/l10n/ar/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -18,46 +18,46 @@ msgstr "" "Language: ar\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "تم ترفيع الملفات بنجاح." -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "حجم الملف الذي تريد ترفيعه أعلى مما MAX_FILE_SIZE يسمح به في واجهة ال HTML." -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "تم ترفيع جزء من الملفات الذي تريد ترفيعها فقط" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "لم يتم ترفيع أي من الملفات" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "المجلد المؤقت غير موجود" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -69,11 +69,15 @@ msgstr "الملفات" msgid "Unshare" msgstr "إلغاء مشاركة" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "محذوف" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "" @@ -178,31 +182,31 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "الاسم" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "حجم" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "معدل" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "" diff --git a/l10n/ar/files_encryption.po b/l10n/ar/files_encryption.po index a3c4ed8931..59f5adcf60 100644 --- a/l10n/ar/files_encryption.po +++ b/l10n/ar/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-23 00:05+0100\n" -"PO-Revision-Date: 2013-01-22 23:05+0000\n" +"POT-Creation-Date: 2013-02-06 00:05+0100\n" +"PO-Revision-Date: 2013-02-05 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -40,44 +40,22 @@ msgstr "" msgid "Could not change your file encryption password to your login password" msgstr "" -#: templates/settings-personal.php:3 templates/settings.php:5 -msgid "Choose encryption mode:" -msgstr "" - -#: templates/settings-personal.php:20 templates/settings.php:24 -msgid "" -"Client side encryption (most secure but makes it impossible to access your " -"data from the web interface)" -msgstr "" - -#: templates/settings-personal.php:30 templates/settings.php:36 -msgid "" -"Server side encryption (allows you to access your files from the web " -"interface and the desktop client)" -msgstr "" - -#: templates/settings-personal.php:41 templates/settings.php:60 -msgid "None (no encryption at all)" -msgstr "" - -#: templates/settings.php:10 -msgid "" -"Important: Once you selected an encryption mode there is no way to change it" -" back" -msgstr "" - -#: templates/settings.php:48 -msgid "User specific (let the user decide)" -msgstr "" - -#: templates/settings.php:65 +#: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" msgstr "التشفير" -#: templates/settings.php:67 -msgid "Exclude the following file types from encryption" -msgstr "استبعد أنواع الملفات التالية من التشفير" +#: templates/settings-personal.php:7 +msgid "File encryption is enabled." +msgstr "" -#: templates/settings.php:71 +#: templates/settings-personal.php:11 +msgid "The following file types will not be encrypted:" +msgstr "" + +#: templates/settings.php:7 +msgid "Exclude the following file types from encryption:" +msgstr "" + +#: templates/settings.php:12 msgid "None" msgstr "لا شيء" diff --git a/l10n/ar/files_trashbin.po b/l10n/ar/files_trashbin.po index d892fd2a98..6b11eb74a1 100644 --- a/l10n/ar/files_trashbin.po +++ b/l10n/ar/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ msgstr "" "Language: ar\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "اسم" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "" diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index c3a3312345..e3785a9b5a 100644 --- a/l10n/ar/settings.po +++ b/l10n/ar/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -24,6 +24,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "فشل تحميل القائمة من الآب ستور" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "لم يتم التأكد من الشخصية بنجاح" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "المجموعة موجودة مسبقاً" @@ -48,10 +57,6 @@ msgstr "البريد الإلكتروني غير صالح" msgid "Unable to delete group" msgstr "فشل إزالة المجموعة" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "لم يتم التأكد من الشخصية بنجاح" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "فشل إزالة المستخدم" @@ -114,7 +119,7 @@ msgstr "خطأ" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "حفظ" @@ -191,67 +196,83 @@ msgstr "تحميل عميل آندرويد" msgid "Download iOS Client" msgstr "تحميل عميل آي أو أس" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "كلمات السر" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "لقد تم تغيير كلمة السر" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "لم يتم تعديل كلمة السر بنجاح" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "كلمات السر الحالية" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "كلمات سر جديدة" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "أظهر" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "عدل كلمة السر" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "العنوان البريدي" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "عنوانك البريدي" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "أدخل عنوانك البريدي لتفعيل استرجاع كلمة المرور" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "اللغة" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "ساعد في الترجمه" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "إستخدم هذا العنوان للإتصال بـ ownCloud في مدير الملفات" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "إصدار" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -163,55 +163,55 @@ msgstr "" msgid "Settings" msgstr "Настройки" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "преди секунди" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "преди 1 минута" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "преди 1 час" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "днес" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "вчера" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "последният месец" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "последната година" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "последните години" @@ -566,14 +566,18 @@ msgstr "" msgid "Lost your password?" msgstr "" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "" diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po index b1a38c33db..ef076ab4f3 100644 --- a/l10n/bg_BG/files.po +++ b/l10n/bg_BG/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -19,46 +19,46 @@ msgstr "" "Language: bg_BG\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Липсва временна папка" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -70,11 +70,15 @@ msgstr "Файлове" msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Изтриване" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Преименуване" @@ -179,31 +183,31 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Име" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Размер" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Променено" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "" diff --git a/l10n/bg_BG/files_encryption.po b/l10n/bg_BG/files_encryption.po index 8e5aeda084..6faf2d1a51 100644 --- a/l10n/bg_BG/files_encryption.po +++ b/l10n/bg_BG/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-23 00:05+0100\n" -"PO-Revision-Date: 2013-01-22 23:05+0000\n" +"POT-Creation-Date: 2013-02-06 00:05+0100\n" +"PO-Revision-Date: 2013-02-05 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -40,44 +40,22 @@ msgstr "" msgid "Could not change your file encryption password to your login password" msgstr "" -#: templates/settings-personal.php:3 templates/settings.php:5 -msgid "Choose encryption mode:" -msgstr "" - -#: templates/settings-personal.php:20 templates/settings.php:24 -msgid "" -"Client side encryption (most secure but makes it impossible to access your " -"data from the web interface)" -msgstr "" - -#: templates/settings-personal.php:30 templates/settings.php:36 -msgid "" -"Server side encryption (allows you to access your files from the web " -"interface and the desktop client)" -msgstr "" - -#: templates/settings-personal.php:41 templates/settings.php:60 -msgid "None (no encryption at all)" -msgstr "" - -#: templates/settings.php:10 -msgid "" -"Important: Once you selected an encryption mode there is no way to change it" -" back" -msgstr "" - -#: templates/settings.php:48 -msgid "User specific (let the user decide)" -msgstr "" - -#: templates/settings.php:65 +#: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" msgstr "Криптиране" -#: templates/settings.php:67 -msgid "Exclude the following file types from encryption" -msgstr "Изключване на следните файлови типове от криптирането" +#: templates/settings-personal.php:7 +msgid "File encryption is enabled." +msgstr "" -#: templates/settings.php:71 +#: templates/settings-personal.php:11 +msgid "The following file types will not be encrypted:" +msgstr "" + +#: templates/settings.php:7 +msgid "Exclude the following file types from encryption:" +msgstr "" + +#: templates/settings.php:12 msgid "None" msgstr "Няма" diff --git a/l10n/bg_BG/files_trashbin.po b/l10n/bg_BG/files_trashbin.po index 61fe9f67ef..f759ccb5bd 100644 --- a/l10n/bg_BG/files_trashbin.po +++ b/l10n/bg_BG/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ msgstr "" "Language: bg_BG\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Име" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "" diff --git a/l10n/bg_BG/settings.po b/l10n/bg_BG/settings.po index f056463c57..4cef09976a 100644 --- a/l10n/bg_BG/settings.po +++ b/l10n/bg_BG/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -24,6 +24,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Възникна проблем с идентификацията" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "" @@ -48,10 +57,6 @@ msgstr "" msgid "Unable to delete group" msgstr "" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Възникна проблем с идентификацията" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "" @@ -114,7 +119,7 @@ msgstr "Грешка" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "" @@ -191,67 +196,83 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Парола" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "E-mail" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -161,55 +161,55 @@ msgstr "ডিসেম্বর" msgid "Settings" msgstr "নিয়ামকসমূহ" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "সেকেন্ড পূর্বে" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "1 মিনিট পূর্বে" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "{minutes} মিনিট পূর্বে" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "1 ঘন্টা পূর্বে" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "{hours} ঘন্টা পূর্বে" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "আজ" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "গতকাল" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "{days} দিন পূর্বে" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "গতমাস" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "{months} মাস পূর্বে" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "মাস পূর্বে" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "গত বছর" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "বছর পূর্বে" @@ -564,14 +564,18 @@ msgstr "" msgid "Lost your password?" msgstr "কূটশব্দ হারিয়েছেন?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "মনে রাখ" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "প্রবেশ" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "পূর্ববর্তী" diff --git a/l10n/bn_BD/files.po b/l10n/bn_BD/files.po index 8192e6fedf..c2ccab5b33 100644 --- a/l10n/bn_BD/files.po +++ b/l10n/bn_BD/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -18,46 +18,46 @@ msgstr "" "Language: bn_BD\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "কোন ফাইল আপলোড করা হয় নি। সমস্যা অজ্ঞাত।" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "কোন সমস্যা নেই, ফাইল আপলোড সুসম্পন্ন হয়েছে" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "আপলোড করা ফাইলটি php.ini তে বর্ণিত upload_max_filesize নির্দেশিত আয়তন অতিক্রম করছেঃ" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "আপলোড করা ফাইলটি HTML ফর্মে নির্ধারিত MAX_FILE_SIZE নির্দেশিত সর্বোচ্চ আকার অতিক্রম করেছে " -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "আপলোড করা ফাইলটি আংশিক আপলোড করা হয়েছে" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "কোন ফাইল আপলোড করা হয় নি" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "অস্থায়ী ফোল্ডার খোয়া গিয়েছে" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "ডিস্কে লিখতে ব্যর্থ" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "যথেষ্ঠ পরিমাণ স্থান নেই" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "ভুল ডিরেক্টরি" @@ -69,11 +69,15 @@ msgstr "ফাইল" msgid "Unshare" msgstr "ভাগাভাগি বাতিল " -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "মুছে ফেল" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "পূনঃনামকরণ" @@ -178,31 +182,31 @@ msgstr "URL ফাঁকা রাখা যাবে না।" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "ফোল্ডারের নামটি সঠিক নয়। 'ভাগাভাগি করা' শুধুমাত্র Owncloud এর জন্য সংরক্ষিত।" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "নাম" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "আকার" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "পরিবর্তিত" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "১টি ফোল্ডার" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} টি ফোল্ডার" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "১টি ফাইল" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} টি ফাইল" diff --git a/l10n/bn_BD/files_encryption.po b/l10n/bn_BD/files_encryption.po index 4be08a9e00..aa9ec98462 100644 --- a/l10n/bn_BD/files_encryption.po +++ b/l10n/bn_BD/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-23 00:05+0100\n" -"PO-Revision-Date: 2013-01-22 23:05+0000\n" +"POT-Creation-Date: 2013-02-06 00:05+0100\n" +"PO-Revision-Date: 2013-02-05 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -39,44 +39,22 @@ msgstr "" msgid "Could not change your file encryption password to your login password" msgstr "" -#: templates/settings-personal.php:3 templates/settings.php:5 -msgid "Choose encryption mode:" -msgstr "" - -#: templates/settings-personal.php:20 templates/settings.php:24 -msgid "" -"Client side encryption (most secure but makes it impossible to access your " -"data from the web interface)" -msgstr "" - -#: templates/settings-personal.php:30 templates/settings.php:36 -msgid "" -"Server side encryption (allows you to access your files from the web " -"interface and the desktop client)" -msgstr "" - -#: templates/settings-personal.php:41 templates/settings.php:60 -msgid "None (no encryption at all)" -msgstr "" - -#: templates/settings.php:10 -msgid "" -"Important: Once you selected an encryption mode there is no way to change it" -" back" -msgstr "" - -#: templates/settings.php:48 -msgid "User specific (let the user decide)" -msgstr "" - -#: templates/settings.php:65 +#: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" msgstr "সংকেতায়ন" -#: templates/settings.php:67 -msgid "Exclude the following file types from encryption" -msgstr "সংকেতায়ন থেকে নিম্নোক্ত ধরণসমূহ বাদ দাও" +#: templates/settings-personal.php:7 +msgid "File encryption is enabled." +msgstr "" -#: templates/settings.php:71 +#: templates/settings-personal.php:11 +msgid "The following file types will not be encrypted:" +msgstr "" + +#: templates/settings.php:7 +msgid "Exclude the following file types from encryption:" +msgstr "" + +#: templates/settings.php:12 msgid "None" msgstr "কোনটিই নয়" diff --git a/l10n/bn_BD/files_trashbin.po b/l10n/bn_BD/files_trashbin.po index 8cb4d9688e..e3052a641a 100644 --- a/l10n/bn_BD/files_trashbin.po +++ b/l10n/bn_BD/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ msgstr "" "Language: bn_BD\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "রাম" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "১টি ফোল্ডার" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} টি ফোল্ডার" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "১টি ফাইল" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} টি ফাইল" diff --git a/l10n/bn_BD/settings.po b/l10n/bn_BD/settings.po index e591160330..946bd8cd25 100644 --- a/l10n/bn_BD/settings.po +++ b/l10n/bn_BD/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -22,6 +22,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "অ্যাপস্টোর থেকে তালিকা লোড করতে সক্ষম নয়" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "অনুমোদন ঘটিত সমস্যা" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "গোষ্ঠীটি পূর্ব থেকেই বিদ্যমান" @@ -46,10 +55,6 @@ msgstr "ই-মেইলটি সঠিক নয়" msgid "Unable to delete group" msgstr "গোষ্ঠী মুছে ফেলা সম্ভব হলো না " -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "অনুমোদন ঘটিত সমস্যা" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "ব্যবহারকারী মুছে ফেলা সম্ভব হলো না " @@ -112,7 +117,7 @@ msgstr "সমস্যা" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "সংরক্ষণ করা হচ্ছে.." @@ -189,67 +194,83 @@ msgstr "অ্যান্ড্রয়েড ক্লায়েন্ট ডা msgid "Download iOS Client" msgstr "iOS ক্লায়েন্ট ডাউনলোড করুন" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "কূটশব্দ" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "আপনার কূটশব্দটি পরিবর্তন করা হয়েছে " -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "আপনার কূটশব্দটি পরিবর্তন করতে সক্ষম নয়" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "বর্তমান কূটশব্দ" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "নতুন কূটশব্দ" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "প্রদর্শন" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "কূটশব্দ পরিবর্তন করুন" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "ই-মেইল " -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "আপনার ই-মেইল ঠিকানা" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "কূটশব্দ পূনরূদ্ধার সক্রিয় করার জন্য ই-মেইল ঠিকানাটি পূরণ করুন" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "ভাষা" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "অনুবাদ করতে সহায়তা করুন" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "আপনার ownCloud এ সংযুক্ত হতে এই ঠিকানাটি আপনার ফাইল ব্যবস্থাপকে ব্যবহার করুন" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "ভার্সন" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:07+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -162,55 +162,55 @@ msgstr "Desembre" msgid "Settings" msgstr "Arranjament" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "segons enrere" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "fa 1 minut" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "fa {minutes} minuts" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "fa 1 hora" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "fa {hours} hores" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "avui" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "ahir" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "fa {days} dies" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "el mes passat" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "fa {months} mesos" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "mesos enrere" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "l'any passat" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "anys enrere" @@ -565,14 +565,18 @@ msgstr "Canvieu la contrasenya de nou per assegurar el vostre compte." msgid "Lost your password?" msgstr "Heu perdut la contrasenya?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "recorda'm" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Inici de sessió" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "anterior" diff --git a/l10n/ca/files.po b/l10n/ca/files.po index 758bde167a..78422f41e6 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 08:40+0000\n" -"Last-Translator: rogerc \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,46 +24,46 @@ msgstr "" "Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "No s'ha carregat cap fitxer. Error desconegut" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "El fitxer s'ha pujat correctament" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "L’arxiu que voleu carregar supera el màxim definit en la directiva upload_max_filesize del php.ini:" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "El fitxer de pujada excedeix la directiva MAX_FILE_SIZE especificada al formulari HTML" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "El fitxer només s'ha pujat parcialment" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "El fitxer no s'ha pujat" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "S'ha perdut un fitxer temporal" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Ha fallat en escriure al disc" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "No hi ha prou espai disponible" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Directori no vàlid." @@ -75,11 +75,15 @@ msgstr "Fitxers" msgid "Unshare" msgstr "Deixa de compartir" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Suprimeix" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Reanomena" @@ -184,31 +188,31 @@ msgstr "La URL no pot ser buida" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nom de carpeta no vàlid. L'ús de 'Shared' està reservat per Owncloud" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Nom" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Mida" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Modificat" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 carpeta" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} carpetes" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 fitxer" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} fitxers" diff --git a/l10n/ca/files_encryption.po b/l10n/ca/files_encryption.po index 78e847f6e1..481b00ceee 100644 --- a/l10n/ca/files_encryption.po +++ b/l10n/ca/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-26 00:09+0100\n" -"PO-Revision-Date: 2013-01-25 08:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 07:20+0000\n" "Last-Translator: rogerc \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -41,44 +41,22 @@ msgstr "Comproveu les contrasenyes i proveu-ho de nou." msgid "Could not change your file encryption password to your login password" msgstr "No s'ha pogut canviar la contrasenya d'encriptació de fitxers per la d'accés" -#: templates/settings-personal.php:3 templates/settings.php:5 -msgid "Choose encryption mode:" -msgstr "Escolliu el mode d'encriptació:" - -#: templates/settings-personal.php:20 templates/settings.php:24 -msgid "" -"Client side encryption (most secure but makes it impossible to access your " -"data from the web interface)" -msgstr "Encriptació per part del client (més segura però fa impossible l'accés a les dades des de la interfície web)" - -#: templates/settings-personal.php:30 templates/settings.php:36 -msgid "" -"Server side encryption (allows you to access your files from the web " -"interface and the desktop client)" -msgstr "Encriptació per part del servidor (permet accedir als fitxers des de la interfície web i des del client d'escriptori)" - -#: templates/settings-personal.php:41 templates/settings.php:60 -msgid "None (no encryption at all)" -msgstr "Cap (sense encriptació)" - -#: templates/settings.php:10 -msgid "" -"Important: Once you selected an encryption mode there is no way to change it" -" back" -msgstr "Important: quan seleccioneu un mode d'encriptació no hi ha manera de canviar-lo de nou" - -#: templates/settings.php:48 -msgid "User specific (let the user decide)" -msgstr "Específic per usuari (permet que l'usuari ho decideixi)" - -#: templates/settings.php:65 +#: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" msgstr "Encriptatge" -#: templates/settings.php:67 -msgid "Exclude the following file types from encryption" -msgstr "Exclou els tipus de fitxers següents de l'encriptatge" +#: templates/settings-personal.php:7 +msgid "File encryption is enabled." +msgstr "L'encriptació de fitxers està activada." -#: templates/settings.php:71 +#: templates/settings-personal.php:11 +msgid "The following file types will not be encrypted:" +msgstr "Els tipus de fitxers següents no s'encriptaran:" + +#: templates/settings.php:7 +msgid "Exclude the following file types from encryption:" +msgstr "Exclou els tipus de fitxers següents de l'encriptatge:" + +#: templates/settings.php:12 msgid "None" msgstr "Cap" diff --git a/l10n/ca/files_trashbin.po b/l10n/ca/files_trashbin.po index 3bb530ebc6..2563d256cc 100644 --- a/l10n/ca/files_trashbin.po +++ b/l10n/ca/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -18,31 +18,35 @@ msgstr "" "Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "executa l'operació de restauració" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Nom" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "Eliminat" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 carpeta" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} carpetes" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 fitxer" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} fitxers" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index 4ad389d707..4f2bbf05a0 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/settings.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 16:48+0000\n" -"Last-Translator: rogerc \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,6 +27,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "No s'ha pogut carregar la llista des de l'App Store" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Error d'autenticació" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "El grup ja existeix" @@ -51,10 +60,6 @@ msgstr "El correu electrònic no és vàlid" msgid "Unable to delete group" msgstr "No es pot eliminar el grup" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Error d'autenticació" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "No es pot eliminar l'usuari" @@ -117,7 +122,7 @@ msgstr "Error" msgid "Updated" msgstr "Actualitzada" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "S'està desant..." @@ -194,67 +199,83 @@ msgstr " Baixa el client per Android" msgid "Download iOS Client" msgstr "Baixa el client per iOS" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Contrasenya" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "La seva contrasenya s'ha canviat" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "No s'ha pogut canviar la contrasenya" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Contrasenya actual" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Contrasenya nova" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "mostra" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Canvia la contrasenya" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "Nom a mostrar" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "Correu electrònic" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Correu electrònic" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Ompliu el correu electrònic per activar la recuperació de contrasenya" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Idioma" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Ajudeu-nos amb la traducció" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Useu aquesta adreça per connectar amb ownCloud des del gestor de fitxers" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "Versió" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -163,55 +163,55 @@ msgstr "Prosinec" msgid "Settings" msgstr "Nastavení" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "před pár vteřinami" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "před minutou" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "před {minutes} minutami" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "před hodinou" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "před {hours} hodinami" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "dnes" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "včera" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "před {days} dny" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "minulý mesíc" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "před {months} měsíci" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "před měsíci" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "minulý rok" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "před lety" @@ -566,14 +566,18 @@ msgstr "Změňte, prosím, své heslo pro opětovné zabezpečení Vašeho účt msgid "Lost your password?" msgstr "Ztratili jste své heslo?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "zapamatovat si" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Přihlásit" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "předchozí" diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index 36e541de84..09eccd4644 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:40+0000\n" -"Last-Translator: Tomáš Chvátal \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,46 +20,46 @@ msgstr "" "Language: cs_CZ\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Soubor nebyl odeslán. Neznámá chyba" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Soubor byl odeslán úspěšně" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Odesílaný soubor přesahuje velikost upload_max_filesize povolenou v php.ini:" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Odeslaný soubor přesáhl svou velikostí parametr MAX_FILE_SIZE specifikovaný v formuláři HTML" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Soubor byl odeslán pouze částečně" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Žádný soubor nebyl odeslán" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Chybí adresář pro dočasné soubory" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Zápis na disk selhal" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "Nedostatek dostupného místa" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Neplatný adresář" @@ -71,11 +71,15 @@ msgstr "Soubory" msgid "Unshare" msgstr "Zrušit sdílení" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Smazat" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Přejmenovat" @@ -180,31 +184,31 @@ msgstr "URL nemůže být prázdná" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Neplatný název složky. Použití 'Shared' je rezervováno pro vnitřní potřeby Owncloud" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Název" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Velikost" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Změněno" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 složka" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} složky" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 soubor" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} soubory" diff --git a/l10n/cs_CZ/files_encryption.po b/l10n/cs_CZ/files_encryption.po index c26a7ff012..ea06c00d30 100644 --- a/l10n/cs_CZ/files_encryption.po +++ b/l10n/cs_CZ/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-24 00:06+0100\n" -"PO-Revision-Date: 2013-01-23 20:21+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 09:51+0000\n" "Last-Translator: Tomáš Chvátal \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -41,44 +41,22 @@ msgstr "Zkontrolujte, prosím, své heslo a zkuste to znovu." msgid "Could not change your file encryption password to your login password" msgstr "Nelze změnit šifrovací heslo na přihlašovací." -#: templates/settings-personal.php:3 templates/settings.php:5 -msgid "Choose encryption mode:" -msgstr "Vyberte režim šifrování:" - -#: templates/settings-personal.php:20 templates/settings.php:24 -msgid "" -"Client side encryption (most secure but makes it impossible to access your " -"data from the web interface)" -msgstr "Šifrování na straně klienta (nejbezpečnější ale neumožňuje vám přistupovat k souborům z webového rozhraní)" - -#: templates/settings-personal.php:30 templates/settings.php:36 -msgid "" -"Server side encryption (allows you to access your files from the web " -"interface and the desktop client)" -msgstr "Šifrování na straně serveru (umožňuje vám přistupovat k souborům pomocí webového rozhraní i aplikací)" - -#: templates/settings-personal.php:41 templates/settings.php:60 -msgid "None (no encryption at all)" -msgstr "Žádný (vůbec žádné šifrování)" - -#: templates/settings.php:10 -msgid "" -"Important: Once you selected an encryption mode there is no way to change it" -" back" -msgstr "Důležité: jak si jednou vyberete režim šifrování nelze jej opětovně změnit" - -#: templates/settings.php:48 -msgid "User specific (let the user decide)" -msgstr "Definován uživatelem (umožní uživateli si vybrat)" - -#: templates/settings.php:65 +#: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" msgstr "Šifrování" -#: templates/settings.php:67 -msgid "Exclude the following file types from encryption" -msgstr "Při šifrování vynechat následující typy souborů" +#: templates/settings-personal.php:7 +msgid "File encryption is enabled." +msgstr "Šifrování je povoleno." -#: templates/settings.php:71 +#: templates/settings-personal.php:11 +msgid "The following file types will not be encrypted:" +msgstr "Následující typy souborů nebudou šifrovány:" + +#: templates/settings.php:7 +msgid "Exclude the following file types from encryption:" +msgstr "Vyjmout následující typy souborů ze šifrování:" + +#: templates/settings.php:12 msgid "None" msgstr "Žádné" diff --git a/l10n/cs_CZ/files_trashbin.po b/l10n/cs_CZ/files_trashbin.po index 29c424b5de..11b7352f65 100644 --- a/l10n/cs_CZ/files_trashbin.po +++ b/l10n/cs_CZ/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -18,31 +18,35 @@ msgstr "" "Language: cs_CZ\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "provést obnovu" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Název" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "Smazáno" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 složka" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} složky" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 soubor" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} soubory" diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index c232c3b36d..88caa49b13 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 08:10+0000\n" -"Last-Translator: Tomáš Chvátal \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,6 +27,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Nelze načíst seznam z App Store" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Chyba ověření" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "Skupina již existuje" @@ -51,10 +60,6 @@ msgstr "Neplatný e-mail" msgid "Unable to delete group" msgstr "Nelze smazat skupinu" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Chyba ověření" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "Nelze smazat uživatele" @@ -117,7 +122,7 @@ msgstr "Chyba" msgid "Updated" msgstr "Aktualizováno" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Ukládám..." @@ -194,67 +199,83 @@ msgstr "Stáhnout klienta pro android" msgid "Download iOS Client" msgstr "Stáhnout klienta pro iOS" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Heslo" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "Vaše heslo bylo změněno" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Vaše heslo nelze změnit" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Současné heslo" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Nové heslo" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "zobrazit" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Změnit heslo" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "Zobrazované jméno" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "E-mail" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Vaše e-mailová adresa" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Pro povolení změny hesla vyplňte adresu e-mailu" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Jazyk" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Pomoci s překladem" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Použijte tuto adresu pro připojení k vašemu ownCloud skrze správce souborů" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "Verze" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -168,55 +168,55 @@ msgstr "December" msgid "Settings" msgstr "Indstillinger" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "sekunder siden" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "1 minut siden" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "{minutes} minutter siden" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "1 time siden" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "{hours} timer siden" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "i dag" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "i går" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "{days} dage siden" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "sidste måned" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "{months} måneder siden" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "måneder siden" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "sidste år" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "år siden" @@ -571,14 +571,18 @@ msgstr "Skift adgangskode for at sikre din konto igen." msgid "Lost your password?" msgstr "Mistet dit kodeord?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "husk" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Log ind" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "forrige" diff --git a/l10n/da/files.po b/l10n/da/files.po index 2768aaf449..9477b306d4 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -25,46 +25,46 @@ msgstr "" "Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Ingen fil blev uploadet. Ukendt fejl." -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Der er ingen fejl, filen blev uploadet med success" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Den uploadede fil overstiger upload_max_filesize direktivet i php.ini" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Den uploadede fil overskrider MAX_FILE_SIZE -direktivet som er specificeret i HTML-formularen" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Den uploadede file blev kun delvist uploadet" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Ingen fil blev uploadet" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Mangler en midlertidig mappe" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Fejl ved skrivning til disk." -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Ugyldig mappe." @@ -76,11 +76,15 @@ msgstr "Filer" msgid "Unshare" msgstr "Fjern deling" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Slet" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Omdøb" @@ -185,31 +189,31 @@ msgstr "URLen kan ikke være tom." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Ugyldigt mappenavn. Brug af \"Shared\" er forbeholdt Owncloud" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Navn" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Størrelse" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Ændret" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 mappe" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} mapper" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 fil" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} filer" diff --git a/l10n/da/files_encryption.po b/l10n/da/files_encryption.po index 78a06bdcab..2a28a291a5 100644 --- a/l10n/da/files_encryption.po +++ b/l10n/da/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-30 00:23+0100\n" -"PO-Revision-Date: 2013-01-29 12:03+0000\n" -"Last-Translator: Morten Juhl-Johansen Zölde-Fejér \n" +"POT-Creation-Date: 2013-02-06 00:05+0100\n" +"PO-Revision-Date: 2013-02-05 23:05+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -41,44 +41,22 @@ msgstr "Check adgangskoder og forsøg igen." msgid "Could not change your file encryption password to your login password" msgstr "Kunne ikke udskifte krypteringskode med login-adgangskode" -#: templates/settings-personal.php:3 templates/settings.php:5 -msgid "Choose encryption mode:" -msgstr "Vælg krypteringsform:" - -#: templates/settings-personal.php:20 templates/settings.php:24 -msgid "" -"Client side encryption (most secure but makes it impossible to access your " -"data from the web interface)" -msgstr "Kryptering på klientsiden (mere sikker, men udelukker adgang til dataene fra webinterfacet)" - -#: templates/settings-personal.php:30 templates/settings.php:36 -msgid "" -"Server side encryption (allows you to access your files from the web " -"interface and the desktop client)" -msgstr "Kryptering på serversiden (gør det muligt at tilgå filer fra webinterfacet såvel som desktopklienten)" - -#: templates/settings-personal.php:41 templates/settings.php:60 -msgid "None (no encryption at all)" -msgstr "Ingen (ingen kryptering)" - -#: templates/settings.php:10 -msgid "" -"Important: Once you selected an encryption mode there is no way to change it" -" back" -msgstr "Vigtigt: Når der er valgt krypteringsform, kan det ikke ændres tilbage igen." - -#: templates/settings.php:48 -msgid "User specific (let the user decide)" -msgstr "Brugerspecifik (lad brugeren bestemme)" - -#: templates/settings.php:65 +#: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" msgstr "Kryptering" -#: templates/settings.php:67 -msgid "Exclude the following file types from encryption" -msgstr "Ekskluder følgende filtyper fra kryptering" +#: templates/settings-personal.php:7 +msgid "File encryption is enabled." +msgstr "" -#: templates/settings.php:71 +#: templates/settings-personal.php:11 +msgid "The following file types will not be encrypted:" +msgstr "" + +#: templates/settings.php:7 +msgid "Exclude the following file types from encryption:" +msgstr "" + +#: templates/settings.php:12 msgid "None" msgstr "Ingen" diff --git a/l10n/da/files_trashbin.po b/l10n/da/files_trashbin.po index 34a7ae7131..6f1c6e6b46 100644 --- a/l10n/da/files_trashbin.po +++ b/l10n/da/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ msgstr "" "Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Navn" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 mappe" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} mapper" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 fil" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} filer" diff --git a/l10n/da/settings.po b/l10n/da/settings.po index 297100e94e..b2be1f6379 100644 --- a/l10n/da/settings.po +++ b/l10n/da/settings.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -31,6 +31,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Kunne ikke indlæse listen fra App Store" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Adgangsfejl" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "Gruppen findes allerede" @@ -55,10 +64,6 @@ msgstr "Ugyldig email adresse" msgid "Unable to delete group" msgstr "Gruppen kan ikke slettes" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Adgangsfejl" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "Bruger kan ikke slettes" @@ -121,7 +126,7 @@ msgstr "Fejl" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Gemmer..." @@ -198,67 +203,83 @@ msgstr "Hent Android Klient" msgid "Download iOS Client" msgstr "Hent iOS Klient" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Kodeord" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "Din adgangskode blev ændret" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Ude af stand til at ændre dit kodeord" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Nuværende adgangskode" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Ny adgangskode" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "vis" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Skift kodeord" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "Email" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Din emailadresse" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Indtast en emailadresse for at kunne få påmindelse om adgangskode" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Sprog" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Hjælp med oversættelsen" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Brug denne adresse til at oprette forbindelse til din ownCloud i din filstyring" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "Version" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" @@ -175,55 +175,55 @@ msgstr "Dezember" msgid "Settings" msgstr "Einstellungen" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "Gerade eben" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "vor einer Minute" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "Vor {minutes} Minuten" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "Vor einer Stunde" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "Vor {hours} Stunden" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "Heute" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "Gestern" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "Vor {days} Tag(en)" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "Letzten Monat" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "Vor {months} Monaten" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "Vor Monaten" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "Letztes Jahr" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "Vor Jahren" @@ -578,14 +578,18 @@ msgstr "Bitte ändere Dein Passwort, um Deinen Account wieder zu schützen." msgid "Lost your password?" msgstr "Passwort vergessen?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "merken" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Einloggen" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "Zurück" diff --git a/l10n/de/files.po b/l10n/de/files.po index 06930bfca5..7cf13d9caa 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -28,8 +28,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 00:10+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" @@ -38,46 +38,46 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Keine Datei hochgeladen. Unbekannter Fehler" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Datei fehlerfrei hochgeladen." -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Die hochgeladene Datei überschreitet die upload_max_filesize Vorgabe in php.ini" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Die Größe der hochzuladenden Datei überschreitet die MAX_FILE_SIZE-Richtlinie, die im HTML-Formular angegeben wurde" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Die Datei wurde nur teilweise hochgeladen." -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Es wurde keine Datei hochgeladen." -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Temporärer Ordner fehlt." -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Fehler beim Schreiben auf die Festplatte" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "Nicht genug Speicherplatz verfügbar" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Ungültiges Verzeichnis." @@ -89,11 +89,15 @@ msgstr "Dateien" msgid "Unshare" msgstr "Nicht mehr freigeben" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Löschen" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Umbenennen" @@ -198,31 +202,31 @@ msgstr "Die URL darf nicht leer sein." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Ungültiger Verzeichnisname. Die Nutzung von \"Shared\" ist ownCloud vorbehalten." -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Name" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Größe" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Bearbeitet" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 Ordner" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} Ordner" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 Datei" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} Dateien" diff --git a/l10n/de/files_encryption.po b/l10n/de/files_encryption.po index 2407e4ec91..858ca4d692 100644 --- a/l10n/de/files_encryption.po +++ b/l10n/de/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-31 00:27+0100\n" -"PO-Revision-Date: 2013-01-30 12:47+0000\n" -"Last-Translator: Marcel Kühlhorn \n" +"POT-Creation-Date: 2013-02-06 00:05+0100\n" +"PO-Revision-Date: 2013-02-05 23:05+0000\n" +"Last-Translator: I Robot \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" @@ -41,44 +41,22 @@ msgstr "Bitte überprüfen sie Ihr Passwort und versuchen Sie es erneut." msgid "Could not change your file encryption password to your login password" msgstr "Ihr Verschlüsselungspasswort konnte nicht als Anmeldepasswort gesetzt werden." -#: templates/settings-personal.php:3 templates/settings.php:5 -msgid "Choose encryption mode:" -msgstr "Wählen Sie die Verschlüsselungsart:" - -#: templates/settings-personal.php:20 templates/settings.php:24 -msgid "" -"Client side encryption (most secure but makes it impossible to access your " -"data from the web interface)" -msgstr "Clientseitige Verschlüsselung (am sichersten, aber macht es unmöglich auf ihre Daten über das Webinterface zuzugreifen)" - -#: templates/settings-personal.php:30 templates/settings.php:36 -msgid "" -"Server side encryption (allows you to access your files from the web " -"interface and the desktop client)" -msgstr "Serverseitige Verschlüsselung (erlaubt es ihnen auf ihre Daten über das Webinterface und den Desktop-Client zuzugreifen)" - -#: templates/settings-personal.php:41 templates/settings.php:60 -msgid "None (no encryption at all)" -msgstr "Keine (ohne Verschlüsselung)" - -#: templates/settings.php:10 -msgid "" -"Important: Once you selected an encryption mode there is no way to change it" -" back" -msgstr "Wichtig: Sobald sie eine Verschlüsselungsmethode gewählt haben, können Sie diese nicht ändern!" - -#: templates/settings.php:48 -msgid "User specific (let the user decide)" -msgstr "Benutzerspezifisch (der Benutzer kann entscheiden)" - -#: templates/settings.php:65 +#: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" msgstr "Verschlüsselung" -#: templates/settings.php:67 -msgid "Exclude the following file types from encryption" -msgstr "Die folgenden Dateitypen von der Verschlüsselung ausnehmen" +#: templates/settings-personal.php:7 +msgid "File encryption is enabled." +msgstr "" -#: templates/settings.php:71 +#: templates/settings-personal.php:11 +msgid "The following file types will not be encrypted:" +msgstr "" + +#: templates/settings.php:7 +msgid "Exclude the following file types from encryption:" +msgstr "" + +#: templates/settings.php:12 msgid "None" msgstr "Keine" diff --git a/l10n/de/files_trashbin.po b/l10n/de/files_trashbin.po index ae8505b00e..6950494d02 100644 --- a/l10n/de/files_trashbin.po +++ b/l10n/de/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" @@ -19,31 +19,35 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "Wiederherstellung ausführen" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Name" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "gelöscht" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 Ordner" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} Ordner" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 Datei" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} Dateien" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index 25f769704b..701892688c 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -26,8 +26,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" @@ -40,6 +40,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Die Liste der Anwendungen im Store konnte nicht geladen werden." +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Fehler bei der Anmeldung" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "Gruppe existiert bereits" @@ -64,10 +73,6 @@ msgstr "Ungültige E-Mail Adresse" msgid "Unable to delete group" msgstr "Gruppe konnte nicht gelöscht werden" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Fehler bei der Anmeldung" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "Benutzer konnte nicht gelöscht werden" @@ -130,7 +135,7 @@ msgstr "Fehler" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Speichern..." @@ -207,67 +212,83 @@ msgstr "Android-Client herunterladen" msgid "Download iOS Client" msgstr "iOS-Client herunterladen" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Passwort" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "Dein Passwort wurde geändert." -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Passwort konnte nicht geändert werden" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Aktuelles Passwort" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Neues Passwort" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "zeigen" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Passwort ändern" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "Anzeigename" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "E-Mail" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Deine E-Mail-Adresse" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Trage eine E-Mail-Adresse ein, um die Passwort-Wiederherstellung zu aktivieren." -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Sprache" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Hilf bei der Übersetzung" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Verwende diese Adresse, um Deinen Dateimanager mit Deiner ownCloud zu verbinden" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "Version" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" @@ -176,55 +176,55 @@ msgstr "Dezember" msgid "Settings" msgstr "Einstellungen" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "Gerade eben" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "Vor 1 Minute" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "Vor {minutes} Minuten" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "Vor einer Stunde" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "Vor {hours} Stunden" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "Heute" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "Gestern" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "Vor {days} Tag(en)" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "Letzten Monat" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "Vor {months} Monaten" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "Vor Monaten" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "Letztes Jahr" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "Vor Jahren" @@ -579,14 +579,18 @@ msgstr "Bitte ändern Sie Ihr Passwort, um Ihr Konto wieder zu sichern." msgid "Lost your password?" msgstr "Passwort vergessen?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "merken" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Einloggen" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "Zurück" diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index 474d7e5ab2..20ad664318 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/files.po @@ -29,9 +29,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 19:21+0000\n" -"Last-Translator: quick_wango \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"Last-Translator: I Robot \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" @@ -39,46 +39,46 @@ msgstr "" "Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Keine Datei hochgeladen. Unbekannter Fehler" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Es sind keine Fehler aufgetreten. Die Datei wurde erfolgreich hochgeladen." -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Die hochgeladene Datei überschreitet die upload_max_filesize Vorgabe in php.ini" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Die Größe der hochzuladenden Datei überschreitet die MAX_FILE_SIZE-Richtlinie, die im HTML-Formular angegeben wurde" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Die Datei wurde nur teilweise hochgeladen." -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Es wurde keine Datei hochgeladen." -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Der temporäre Ordner fehlt." -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Fehler beim Schreiben auf die Festplatte" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "Nicht genügend Speicherplatz verfügbar" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Ungültiges Verzeichnis." @@ -90,11 +90,15 @@ msgstr "Dateien" msgid "Unshare" msgstr "Nicht mehr freigeben" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Löschen" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Umbenennen" @@ -199,31 +203,31 @@ msgstr "Die URL darf nicht leer sein." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Ungültiger Verzeichnisname. Die Nutzung von \"Shared\" ist ownCloud vorbehalten" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Name" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Größe" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Bearbeitet" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 Ordner" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} Ordner" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 Datei" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} Dateien" diff --git a/l10n/de_DE/files_encryption.po b/l10n/de_DE/files_encryption.po index daeb5466e5..8d49245d9f 100644 --- a/l10n/de_DE/files_encryption.po +++ b/l10n/de_DE/files_encryption.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-31 00:27+0100\n" -"PO-Revision-Date: 2013-01-30 12:47+0000\n" -"Last-Translator: Marcel Kühlhorn \n" +"POT-Creation-Date: 2013-02-06 00:05+0100\n" +"PO-Revision-Date: 2013-02-05 23:05+0000\n" +"Last-Translator: I Robot \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" @@ -44,44 +44,22 @@ msgstr "Bitte überprüfen sie Ihr Passwort und versuchen Sie es erneut." msgid "Could not change your file encryption password to your login password" msgstr "Ihr Verschlüsselungspasswort konnte nicht als Anmeldepasswort gesetzt werden." -#: templates/settings-personal.php:3 templates/settings.php:5 -msgid "Choose encryption mode:" -msgstr "Wählen Sie die Verschlüsselungsmethode:" - -#: templates/settings-personal.php:20 templates/settings.php:24 -msgid "" -"Client side encryption (most secure but makes it impossible to access your " -"data from the web interface)" -msgstr "Clientseitige Verschlüsselung (am sichersten, aber macht es unmöglich auf ihre Daten über das Webinterface zuzugreifen)" - -#: templates/settings-personal.php:30 templates/settings.php:36 -msgid "" -"Server side encryption (allows you to access your files from the web " -"interface and the desktop client)" -msgstr "Serverseitige Verschlüsselung (erlaubt es ihnen auf ihre Daten über das Webinterface und den Desktop-Client zuzugreifen)" - -#: templates/settings-personal.php:41 templates/settings.php:60 -msgid "None (no encryption at all)" -msgstr "Keine (ohne Verschlüsselung)" - -#: templates/settings.php:10 -msgid "" -"Important: Once you selected an encryption mode there is no way to change it" -" back" -msgstr "Wichtig: Sobald sie eine Verschlüsselungsmethode gewählt haben, können Sie diese nicht ändern!" - -#: templates/settings.php:48 -msgid "User specific (let the user decide)" -msgstr "Benutzerspezifisch (der Benutzer kann entscheiden)" - -#: templates/settings.php:65 +#: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" msgstr "Verschlüsselung" -#: templates/settings.php:67 -msgid "Exclude the following file types from encryption" -msgstr "Die folgenden Dateitypen von der Verschlüsselung ausnehmen" +#: templates/settings-personal.php:7 +msgid "File encryption is enabled." +msgstr "" -#: templates/settings.php:71 +#: templates/settings-personal.php:11 +msgid "The following file types will not be encrypted:" +msgstr "" + +#: templates/settings.php:7 +msgid "Exclude the following file types from encryption:" +msgstr "" + +#: templates/settings.php:12 msgid "None" msgstr "Keine" diff --git a/l10n/de_DE/files_trashbin.po b/l10n/de_DE/files_trashbin.po index f08dcbd004..46d04db9de 100644 --- a/l10n/de_DE/files_trashbin.po +++ b/l10n/de_DE/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" @@ -19,31 +19,35 @@ msgstr "" "Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "Führe die Wiederherstellung aus" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Name" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "Gelöscht" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 Ordner" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} Ordner" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 Datei" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} Dateien" diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index ffbcc368ff..980889f592 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.po @@ -28,9 +28,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 00:10+0000\n" -"Last-Translator: Lukas Reschke \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"Last-Translator: I Robot \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" @@ -42,6 +42,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Die Liste der Anwendungen im Store konnte nicht geladen werden." +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Fehler bei der Anmeldung" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "Die Gruppe existiert bereits" @@ -66,10 +75,6 @@ msgstr "Ungültige E-Mail-Adresse" msgid "Unable to delete group" msgstr "Die Gruppe konnte nicht gelöscht werden" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Fehler bei der Anmeldung" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "Der Benutzer konnte nicht gelöscht werden" @@ -132,7 +137,7 @@ msgstr "Fehler" msgid "Updated" msgstr "Geupdated" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Speichern..." @@ -209,67 +214,83 @@ msgstr "Android-Client herunterladen" msgid "Download iOS Client" msgstr "iOS-Client herunterladen" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Passwort" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "Ihr Passwort wurde geändert." -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Das Passwort konnte nicht geändert werden" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Aktuelles Passwort" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Neues Passwort" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "zeigen" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Passwort ändern" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "Anzeigename" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "E-Mail" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Ihre E-Mail-Adresse" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Bitte tragen Sie eine E-Mail-Adresse ein, um die Passwort-Wiederherstellung zu aktivieren." -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Sprache" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Helfen Sie bei der Übersetzung" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Verwenden Sie diese Adresse, um Ihren Dateimanager mit Ihrer ownCloud zu verbinden" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "Version" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -167,55 +167,55 @@ msgstr "Δεκέμβριος" msgid "Settings" msgstr "Ρυθμίσεις" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "δευτερόλεπτα πριν" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "1 λεπτό πριν" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "{minutes} λεπτά πριν" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "1 ώρα πριν" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "{hours} ώρες πριν" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "σήμερα" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "χτες" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "{days} ημέρες πριν" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "τελευταίο μήνα" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "{months} μήνες πριν" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "μήνες πριν" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "τελευταίο χρόνο" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "χρόνια πριν" @@ -570,14 +570,18 @@ msgstr "Παρακαλώ αλλάξτε το συνθηματικό σας γι msgid "Lost your password?" msgstr "Ξεχάσατε το συνθηματικό σας;" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "απομνημόνευση" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Είσοδος" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "προηγούμενο" diff --git a/l10n/el/files.po b/l10n/el/files.po index 233012d37c..ee4f5f3cf1 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -25,46 +25,46 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Δεν ανέβηκε κάποιο αρχείο. Άγνωστο σφάλμα" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Δεν υπάρχει σφάλμα, το αρχείο εστάλει επιτυχώς" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Το απεσταλμένο αρχείο ξεπερνά την οδηγία upload_max_filesize στο php.ini:" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Το αρχείο υπερβαίνει την οδηγία μέγιστου επιτρεπτού μεγέθους \"MAX_FILE_SIZE\" που έχει οριστεί στην HTML φόρμα" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Το αρχείο εστάλει μόνο εν μέρει" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Κανένα αρχείο δεν στάλθηκε" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Λείπει ο προσωρινός φάκελος" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Αποτυχία εγγραφής στο δίσκο" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "Δεν υπάρχει αρκετός διαθέσιμος χώρος" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Μη έγκυρος φάκελος." @@ -76,11 +76,15 @@ msgstr "Αρχεία" msgid "Unshare" msgstr "Διακοπή κοινής χρήσης" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Διαγραφή" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Μετονομασία" @@ -185,31 +189,31 @@ msgstr "Η URL δεν πρέπει να είναι κενή." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Μη έγκυρο όνομα φακέλου. Η χρήση του 'Κοινόχρηστος' χρησιμοποιείται από ο Owncloud" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Όνομα" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Μέγεθος" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Τροποποιήθηκε" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 φάκελος" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} φάκελοι" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 αρχείο" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} αρχεία" diff --git a/l10n/el/files_encryption.po b/l10n/el/files_encryption.po index 8733b3c001..fe96e9ba8a 100644 --- a/l10n/el/files_encryption.po +++ b/l10n/el/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-25 00:05+0100\n" -"PO-Revision-Date: 2013-01-24 08:32+0000\n" -"Last-Translator: Efstathios Iosifidis \n" +"POT-Creation-Date: 2013-02-06 00:05+0100\n" +"PO-Revision-Date: 2013-02-05 23:05+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -41,44 +41,22 @@ msgstr "Παρακαλώ ελέγξτε το συνθηματικό σας κα msgid "Could not change your file encryption password to your login password" msgstr "Αδυναμία αλλαγής συνθηματικού κρυπτογράφησης αρχείων στο συνθηματικό εισόδου σας" -#: templates/settings-personal.php:3 templates/settings.php:5 -msgid "Choose encryption mode:" -msgstr "Επιλογή κατάστασης κρυπτογράφησης:" - -#: templates/settings-personal.php:20 templates/settings.php:24 -msgid "" -"Client side encryption (most secure but makes it impossible to access your " -"data from the web interface)" -msgstr "" - -#: templates/settings-personal.php:30 templates/settings.php:36 -msgid "" -"Server side encryption (allows you to access your files from the web " -"interface and the desktop client)" -msgstr "" - -#: templates/settings-personal.php:41 templates/settings.php:60 -msgid "None (no encryption at all)" -msgstr "" - -#: templates/settings.php:10 -msgid "" -"Important: Once you selected an encryption mode there is no way to change it" -" back" -msgstr "" - -#: templates/settings.php:48 -msgid "User specific (let the user decide)" -msgstr "" - -#: templates/settings.php:65 +#: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" msgstr "Κρυπτογράφηση" -#: templates/settings.php:67 -msgid "Exclude the following file types from encryption" -msgstr "Εξαίρεση των παρακάτω τύπων αρχείων από την κρυπτογράφηση" +#: templates/settings-personal.php:7 +msgid "File encryption is enabled." +msgstr "" -#: templates/settings.php:71 +#: templates/settings-personal.php:11 +msgid "The following file types will not be encrypted:" +msgstr "" + +#: templates/settings.php:7 +msgid "Exclude the following file types from encryption:" +msgstr "" + +#: templates/settings.php:12 msgid "None" msgstr "Καμία" diff --git a/l10n/el/files_trashbin.po b/l10n/el/files_trashbin.po index e29ec4d6ca..21fb46b986 100644 --- a/l10n/el/files_trashbin.po +++ b/l10n/el/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Όνομα" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 φάκελος" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} φάκελοι" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 αρχείο" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} αρχεία" diff --git a/l10n/el/settings.po b/l10n/el/settings.po index ffd6028e9c..c6c5dfb10f 100644 --- a/l10n/el/settings.po +++ b/l10n/el/settings.po @@ -19,8 +19,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -33,6 +33,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Σφάλμα στην φόρτωση της λίστας από το App Store" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Σφάλμα πιστοποίησης" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "Η ομάδα υπάρχει ήδη" @@ -57,10 +66,6 @@ msgstr "Μη έγκυρο email" msgid "Unable to delete group" msgstr "Αδυναμία διαγραφής ομάδας" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Σφάλμα πιστοποίησης" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "Αδυναμία διαγραφής χρήστη" @@ -123,7 +128,7 @@ msgstr "Σφάλμα" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Αποθήκευση..." @@ -200,67 +205,83 @@ msgstr "Λήψη Προγράμματος Android" msgid "Download iOS Client" msgstr "Λήψη Προγράμματος iOS" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Συνθηματικό" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "Το συνθηματικό σας έχει αλλάξει" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Δεν ήταν δυνατή η αλλαγή του κωδικού πρόσβασης" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Τρέχων συνθηματικό" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Νέο συνθηματικό" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "εμφάνιση" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Αλλαγή συνθηματικού" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "Email" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Η διεύθυνση ηλεκτρονικού ταχυδρομείου σας" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Συμπληρώστε μια διεύθυνση ηλεκτρονικού ταχυδρομείου για να ενεργοποιηθεί η ανάκτηση συνθηματικού" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Γλώσσα" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Βοηθήστε στη μετάφραση" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Χρήση αυτής της διεύθυνσης για σύνδεση στο ownCloud με τον διαχειριστή αρχείων σας" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "Έκδοση" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -162,55 +162,55 @@ msgstr "Decembro" msgid "Settings" msgstr "Agordo" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "sekundoj antaŭe" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "antaŭ 1 minuto" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "antaŭ {minutes} minutoj" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "antaŭ 1 horo" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "antaŭ {hours} horoj" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "hodiaŭ" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "hieraŭ" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "antaŭ {days} tagoj" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "lastamonate" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "antaŭ {months} monatoj" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "monatoj antaŭe" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "lastajare" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "jaroj antaŭe" @@ -565,14 +565,18 @@ msgstr "Bonvolu ŝanĝi vian pasvorton por sekurigi vian konton ree." msgid "Lost your password?" msgstr "Ĉu vi perdis vian pasvorton?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "memori" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Ensaluti" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "maljena" diff --git a/l10n/eo/files.po b/l10n/eo/files.po index d440618513..aa88fa9c85 100644 --- a/l10n/eo/files.po +++ b/l10n/eo/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -20,46 +20,46 @@ msgstr "" "Language: eo\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Neniu dosiero alŝutiĝis. Nekonata eraro." -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Ne estas eraro, la dosiero alŝutiĝis sukcese" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "La dosiero alŝutita superas la regulon upload_max_filesize el php.ini: " -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "La dosiero alŝutita superas la regulon MAX_FILE_SIZE, kiu estas difinita en la HTML-formularo" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "La alŝutita dosiero nur parte alŝutiĝis" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Neniu dosiero estas alŝutita" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Mankas tempa dosierujo" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Malsukcesis skribo al disko" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "Ne haveblas sufiĉa spaco" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Nevalida dosierujo." @@ -71,11 +71,15 @@ msgstr "Dosieroj" msgid "Unshare" msgstr "Malkunhavigi" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Forigi" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Alinomigi" @@ -180,31 +184,31 @@ msgstr "URL ne povas esti malplena." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nevalida dosierujnomo. Uzo de “Shared” rezervatas de Owncloud." -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Nomo" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Grando" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Modifita" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 dosierujo" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} dosierujoj" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 dosiero" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} dosierujoj" diff --git a/l10n/eo/files_encryption.po b/l10n/eo/files_encryption.po index ee8d61876c..77ddc820b5 100644 --- a/l10n/eo/files_encryption.po +++ b/l10n/eo/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-23 00:05+0100\n" -"PO-Revision-Date: 2013-01-22 23:05+0000\n" +"POT-Creation-Date: 2013-02-06 00:05+0100\n" +"PO-Revision-Date: 2013-02-05 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -40,44 +40,22 @@ msgstr "" msgid "Could not change your file encryption password to your login password" msgstr "" -#: templates/settings-personal.php:3 templates/settings.php:5 -msgid "Choose encryption mode:" -msgstr "" - -#: templates/settings-personal.php:20 templates/settings.php:24 -msgid "" -"Client side encryption (most secure but makes it impossible to access your " -"data from the web interface)" -msgstr "" - -#: templates/settings-personal.php:30 templates/settings.php:36 -msgid "" -"Server side encryption (allows you to access your files from the web " -"interface and the desktop client)" -msgstr "" - -#: templates/settings-personal.php:41 templates/settings.php:60 -msgid "None (no encryption at all)" -msgstr "" - -#: templates/settings.php:10 -msgid "" -"Important: Once you selected an encryption mode there is no way to change it" -" back" -msgstr "" - -#: templates/settings.php:48 -msgid "User specific (let the user decide)" -msgstr "" - -#: templates/settings.php:65 +#: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" msgstr "Ĉifrado" -#: templates/settings.php:67 -msgid "Exclude the following file types from encryption" -msgstr "Malinkluzivigi la jenajn dosiertipojn el ĉifrado" +#: templates/settings-personal.php:7 +msgid "File encryption is enabled." +msgstr "" -#: templates/settings.php:71 +#: templates/settings-personal.php:11 +msgid "The following file types will not be encrypted:" +msgstr "" + +#: templates/settings.php:7 +msgid "Exclude the following file types from encryption:" +msgstr "" + +#: templates/settings.php:12 msgid "None" msgstr "Nenio" diff --git a/l10n/eo/files_trashbin.po b/l10n/eo/files_trashbin.po index c1491a3344..6a61ee22d0 100644 --- a/l10n/eo/files_trashbin.po +++ b/l10n/eo/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ msgstr "" "Language: eo\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Nomo" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 dosierujo" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} dosierujoj" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 dosiero" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} dosierujoj" diff --git a/l10n/eo/settings.po b/l10n/eo/settings.po index f422c12300..d48c43e7b6 100644 --- a/l10n/eo/settings.po +++ b/l10n/eo/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -24,6 +24,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Ne eblis ŝargi liston el aplikaĵovendejo" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Aŭtentiga eraro" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "La grupo jam ekzistas" @@ -48,10 +57,6 @@ msgstr "Nevalida retpoŝtadreso" msgid "Unable to delete group" msgstr "Ne eblis forigi la grupon" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Aŭtentiga eraro" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "Ne eblis forigi la uzanton" @@ -114,7 +119,7 @@ msgstr "Eraro" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Konservante..." @@ -191,67 +196,83 @@ msgstr "Elŝuti Android-klienton" msgid "Download iOS Client" msgstr "Elŝuti iOS-klienton" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Pasvorto" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "Via pasvorto ŝanĝiĝis" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Ne eblis ŝanĝi vian pasvorton" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Nuna pasvorto" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Nova pasvorto" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "montri" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Ŝanĝi la pasvorton" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "Retpoŝto" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Via retpoŝta adreso" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Enigu retpoŝtadreson por kapabligi pasvortan restaŭron" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Lingvo" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Helpu traduki" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Uzu ĉi tiun adreson por konekti al via ownCloud vian dosieradministrilon" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "Eldono" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:07+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -171,55 +171,55 @@ msgstr "Diciembre" msgid "Settings" msgstr "Ajustes" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "hace segundos" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "hace 1 minuto" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "hace {minutes} minutos" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "Hace 1 hora" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "Hace {hours} horas" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "hoy" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "ayer" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "hace {days} días" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "mes pasado" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "Hace {months} meses" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "hace meses" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "año pasado" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "hace años" @@ -574,14 +574,18 @@ msgstr "Por favor cambie su contraseña para asegurar su cuenta nuevamente." msgid "Lost your password?" msgstr "¿Has perdido tu contraseña?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "recuérdame" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Entrar" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "anterior" diff --git a/l10n/es/files.po b/l10n/es/files.po index b2bb120341..6cb15f2931 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -12,12 +12,13 @@ # Rubén Trujillo , 2012. # , 2011-2012. # , 2012. +# Vladimir Martinez Sierra , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -26,46 +27,46 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Fallo no se subió el fichero" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "No se ha producido ningún error, el archivo se ha subido con éxito" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "El archivo que intentas subir sobrepasa el tamaño definido por la variable upload_max_filesize en php.ini" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "El archivo que intentas subir sobrepasa el tamaño definido por la variable MAX_FILE_SIZE especificada en el formulario HTML" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "El archivo que intentas subir solo se subió parcialmente" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "No se ha subido ningún archivo" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Falta un directorio temporal" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "La escritura en disco ha fallado" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "No hay suficiente espacio disponible" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Directorio invalido." @@ -77,11 +78,15 @@ msgstr "Archivos" msgid "Unshare" msgstr "Dejar de compartir" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Eliminar" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Renombrar" @@ -115,7 +120,7 @@ msgstr "reemplazado {new_name} con {old_name}" #: js/filelist.js:280 msgid "perform delete operation" -msgstr "" +msgstr "Eliminar" #: js/files.js:52 msgid "'.' is an invalid file name." @@ -133,11 +138,11 @@ msgstr "Nombre Invalido, \"\\\", \"/\", \"<\", \">\", \":\", \"\", \"|\" \"?\" y #: js/files.js:78 msgid "Your storage is full, files can not be updated or synced anymore!" -msgstr "" +msgstr "Su almacenamiento esta lleno, los archivos no pueden ser mas actualizados o sincronizados!" #: js/files.js:82 msgid "Your storage is almost full ({usedSpacePercent}%)" -msgstr "" +msgstr "Su almacenamiento esta lleno en un ({usedSpacePercent}%)" #: js/files.js:224 msgid "" @@ -186,31 +191,31 @@ msgstr "La URL no puede estar vacía." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nombre de carpeta invalido. El uso de \"Shared\" esta reservado para Owncloud" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Nombre" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Tamaño" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Modificado" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 carpeta" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} carpetas" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 archivo" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} archivos" @@ -268,7 +273,7 @@ msgstr "Desde el enlace" #: templates/index.php:40 msgid "Trash" -msgstr "" +msgstr "Basura" #: templates/index.php:46 msgid "Cancel upload" @@ -302,4 +307,4 @@ msgstr "Ahora escaneando" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." -msgstr "" +msgstr "Actualizando cache de archivos de sistema" diff --git a/l10n/es/files_encryption.po b/l10n/es/files_encryption.po index fa6fcc6a7b..b7d69adaf0 100644 --- a/l10n/es/files_encryption.po +++ b/l10n/es/files_encryption.po @@ -6,13 +6,14 @@ # Felix Liberio , 2013. # , 2012. # Raul Fernandez Garcia , 2013. +# Vladimir Martinez Sierra , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-31 00:27+0100\n" -"PO-Revision-Date: 2013-01-30 14:50+0000\n" -"Last-Translator: felix.liberio \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-05 23:10+0000\n" +"Last-Translator: msvladimir \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -42,44 +43,22 @@ msgstr "Por favor revise su contraseña e intentelo de nuevo." msgid "Could not change your file encryption password to your login password" msgstr "No se pudo cambiar la contraseña de cifrado de archivos de su contraseña de inicio de sesión" -#: templates/settings-personal.php:3 templates/settings.php:5 -msgid "Choose encryption mode:" -msgstr "Elegir el modo de cifrado:" - -#: templates/settings-personal.php:20 templates/settings.php:24 -msgid "" -"Client side encryption (most secure but makes it impossible to access your " -"data from the web interface)" -msgstr "Cifrado del lado del Cliente ( es el más seguro, pero hace que sea imposible acceder a sus datos desde la interfaz web)" - -#: templates/settings-personal.php:30 templates/settings.php:36 -msgid "" -"Server side encryption (allows you to access your files from the web " -"interface and the desktop client)" -msgstr "Cifrado del lado del Servidor (le permite acceder a sus archivos desde la interfaz web y el cliente de escritorio)" - -#: templates/settings-personal.php:41 templates/settings.php:60 -msgid "None (no encryption at all)" -msgstr "Ninguno (ningún cifrado en absoluto)" - -#: templates/settings.php:10 -msgid "" -"Important: Once you selected an encryption mode there is no way to change it" -" back" -msgstr "Importante: Una vez que haya seleccionado un modo de cifrado no existe forma de cambiarlo de nuevo" - -#: templates/settings.php:48 -msgid "User specific (let the user decide)" -msgstr "Específico del usuario (dejar que el usuario decida)" - -#: templates/settings.php:65 +#: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" msgstr "Cifrado" -#: templates/settings.php:67 -msgid "Exclude the following file types from encryption" -msgstr "Excluir del cifrado los siguientes tipos de archivo" +#: templates/settings-personal.php:7 +msgid "File encryption is enabled." +msgstr "La encriptacion de archivo esta activada." -#: templates/settings.php:71 +#: templates/settings-personal.php:11 +msgid "The following file types will not be encrypted:" +msgstr "Los siguientes tipos de archivo no seran encriptados:" + +#: templates/settings.php:7 +msgid "Exclude the following file types from encryption:" +msgstr "Excluir los siguientes tipos de archivo de la encriptacion:" + +#: templates/settings.php:12 msgid "None" msgstr "Ninguno" diff --git a/l10n/es/files_trashbin.po b/l10n/es/files_trashbin.po index 81d77e8689..e0804a6ea5 100644 --- a/l10n/es/files_trashbin.po +++ b/l10n/es/files_trashbin.po @@ -3,12 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Vladimir Martinez Sierra , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -17,37 +18,41 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" +msgstr "Restaurar" + +#: js/trash.js:33 +msgid "delete file permanently" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Nombre" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" -msgstr "" +msgstr "Eliminado" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 carpeta" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} carpetas" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 archivo" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} archivos" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" -msgstr "" +msgstr "Nada aqui. La papelera esta vacia!" #: templates/index.php:20 templates/index.php:22 msgid "Restore" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index 775bcdb6d9..6c498f9b5f 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -15,12 +15,13 @@ # , 2011. # Rubén Trujillo , 2012. # , 2011-2012. +# Vladimir Martinez Sierra , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -33,6 +34,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Imposible cargar la lista desde el App Store" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Error de autenticación" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "El grupo ya existe" @@ -57,10 +67,6 @@ msgstr "Correo no válido" msgid "Unable to delete group" msgstr "No se pudo eliminar el grupo" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Error de autenticación" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "No se pudo eliminar el usuario" @@ -89,11 +95,11 @@ msgstr "Imposible eliminar al usuario del grupo %s" #: ajax/updateapp.php:13 msgid "Couldn't update app." -msgstr "" +msgstr "No se puedo actualizar la aplicacion." #: js/apps.js:30 msgid "Update to {appversion}" -msgstr "" +msgstr "Actualizado a {appversion}" #: js/apps.js:36 js/apps.js:76 msgid "Disable" @@ -105,15 +111,15 @@ msgstr "Activar" #: js/apps.js:55 msgid "Please wait...." -msgstr "" +msgstr "Espere por favor...." #: js/apps.js:84 msgid "Updating...." -msgstr "" +msgstr "Actualizando...." #: js/apps.js:87 msgid "Error while updating app" -msgstr "" +msgstr "Error mientras se actualizaba" #: js/apps.js:87 msgid "Error" @@ -121,9 +127,9 @@ msgstr "Error" #: js/apps.js:90 msgid "Updated" -msgstr "" +msgstr "Actualizado" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Guardando..." @@ -200,67 +206,83 @@ msgstr "Descargar cliente para android" msgid "Download iOS Client" msgstr "Descargar cliente para iOS" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Contraseña" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "Su contraseña ha sido cambiada" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "No se ha podido cambiar tu contraseña" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Contraseña actual" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Nueva contraseña:" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "mostrar" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Cambiar contraseña" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "Nombre a mostrar" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "Correo electrónico" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Tu dirección de correo" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Escribe una dirección de correo electrónico para restablecer la contraseña" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Idioma" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Ayúdanos a traducir" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Use esta dirección para conectarse a su cuenta de ownCloud en el administrador de archivos" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "Version" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the , 2012. # Rubén Trujillo , 2012. # , 2012. +# Vladimir Martinez Sierra , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-04 00:05+0100\n" -"PO-Revision-Date: 2013-02-03 06:10+0000\n" -"Last-Translator: felix.liberio \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-05 23:10+0000\n" +"Last-Translator: msvladimir \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" @@ -50,7 +51,7 @@ msgstr "Falló el borrado" #: js/settings.js:82 msgid "Take over settings from recent server configuration?" -msgstr "" +msgstr "Hacerse cargo de los ajustes de configuración del servidor reciente?" #: js/settings.js:83 msgid "Keep settings?" @@ -95,7 +96,7 @@ msgstr "Configuración del Servidor" #: templates/settings.php:17 msgid "Add Server Configuration" -msgstr "" +msgstr "Agregar configuracion del servidor" #: templates/settings.php:21 msgid "Host" @@ -179,15 +180,15 @@ msgstr "Con cualquier placeholder, ej: \"objectClass=posixGroup\"." #: templates/settings.php:31 msgid "Connection Settings" -msgstr "" +msgstr "Configuracion de coneccion" #: templates/settings.php:33 msgid "Configuration Active" -msgstr "" +msgstr "Configuracion activa" #: templates/settings.php:33 msgid "When unchecked, this configuration will be skipped." -msgstr "" +msgstr "Cuando deseleccione, esta configuracion sera omitida." #: templates/settings.php:34 msgid "Port" @@ -195,25 +196,25 @@ msgstr "Puerto" #: templates/settings.php:35 msgid "Backup (Replica) Host" -msgstr "" +msgstr "Host para backup (Replica)" #: templates/settings.php:35 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." -msgstr "" +msgstr "Dar un host de copia de seguridad opcional. Debe ser una réplica del servidor principal LDAP / AD." #: templates/settings.php:36 msgid "Backup (Replica) Port" -msgstr "" +msgstr "Puerto para backup (Replica)" #: templates/settings.php:37 msgid "Disable Main Server" -msgstr "" +msgstr "Deshabilitar servidor principal" #: templates/settings.php:37 msgid "When switched on, ownCloud will only connect to the replica server." -msgstr "" +msgstr "Cuando se inicie, ownCloud unicamente estara conectado al servidor replica" #: templates/settings.php:38 msgid "Use TLS" @@ -247,7 +248,7 @@ msgstr "en segundos. Un cambio vacía la cache." #: templates/settings.php:43 msgid "Directory Settings" -msgstr "" +msgstr "Configuracion de directorio" #: templates/settings.php:45 msgid "User Display Name Field" @@ -267,11 +268,11 @@ msgstr "Un DN Base de Usuario por línea" #: templates/settings.php:47 msgid "User Search Attributes" -msgstr "" +msgstr "Atributos de la busqueda de usuario" #: templates/settings.php:47 templates/settings.php:50 msgid "Optional; one attribute per line" -msgstr "" +msgstr "Opcional; un atributo por linea" #: templates/settings.php:48 msgid "Group Display Name Field" @@ -291,7 +292,7 @@ msgstr "Un DN Base de Grupo por línea" #: templates/settings.php:50 msgid "Group Search Attributes" -msgstr "" +msgstr "Atributos de busqueda de grupo" #: templates/settings.php:51 msgid "Group-Member association" @@ -299,7 +300,7 @@ msgstr "Asociación Grupo-Miembro" #: templates/settings.php:53 msgid "Special Attributes" -msgstr "" +msgstr "Atributos especiales" #: templates/settings.php:56 msgid "in bytes" diff --git a/l10n/es_AR/core.po b/l10n/es_AR/core.po index b8625fa972..2fab6ec64a 100644 --- a/l10n/es_AR/core.po +++ b/l10n/es_AR/core.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-01-31 23:30+0000\n" -"Last-Translator: cjtess \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -162,55 +162,55 @@ msgstr "Diciembre" msgid "Settings" msgstr "Ajustes" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "segundos atrás" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "hace 1 minuto" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "hace {minutes} minutos" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "Hace 1 hora" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "{hours} horas atrás" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "hoy" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "ayer" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "hace {days} días" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "el mes pasado" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "{months} meses atrás" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "meses atrás" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "el año pasado" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "años atrás" @@ -565,14 +565,18 @@ msgstr "Por favor, cambiá tu contraseña para fortalecer nuevamente la segurida msgid "Lost your password?" msgstr "¿Perdiste tu contraseña?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "recordame" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Entrar" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "anterior" diff --git a/l10n/es_AR/files.po b/l10n/es_AR/files.po index 16fb351cdf..73b58d8834 100644 --- a/l10n/es_AR/files.po +++ b/l10n/es_AR/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -20,46 +20,46 @@ msgstr "" "Language: es_AR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "El archivo no fue subido. Error desconocido" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "No se han producido errores, el archivo se ha subido con éxito" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "El archivo que intentás subir excede el tamaño definido por upload_max_filesize en el php.ini:" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "El archivo que intentás subir sobrepasa el tamaño definido por la variable MAX_FILE_SIZE especificada en el formulario HTML" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "El archivo que intentás subir solo se subió parcialmente" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "El archivo no fue subido" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Falta un directorio temporal" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Error al escribir en el disco" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "No hay suficiente espacio disponible" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Directorio invalido." @@ -71,11 +71,15 @@ msgstr "Archivos" msgid "Unshare" msgstr "Dejar de compartir" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Borrar" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Cambiar nombre" @@ -109,7 +113,7 @@ msgstr "reemplazado {new_name} con {old_name}" #: js/filelist.js:280 msgid "perform delete operation" -msgstr "" +msgstr "Eliminar" #: js/files.js:52 msgid "'.' is an invalid file name." @@ -180,31 +184,31 @@ msgstr "La URL no puede estar vacía" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nombre de carpeta inválido. El uso de 'Shared' está reservado por ownCloud" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Nombre" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Tamaño" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Modificado" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 directorio" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} directorios" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 archivo" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} archivos" @@ -262,7 +266,7 @@ msgstr "Desde enlace" #: templates/index.php:40 msgid "Trash" -msgstr "" +msgstr "Papelera" #: templates/index.php:46 msgid "Cancel upload" @@ -296,4 +300,4 @@ msgstr "Escaneo actual" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." -msgstr "" +msgstr "Actualizando el cache del sistema de archivos" diff --git a/l10n/es_AR/files_encryption.po b/l10n/es_AR/files_encryption.po index 11ac9c0c6d..0e80127a88 100644 --- a/l10n/es_AR/files_encryption.po +++ b/l10n/es_AR/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-31 00:27+0100\n" -"PO-Revision-Date: 2013-01-30 16:11+0000\n" -"Last-Translator: cjtess \n" +"POT-Creation-Date: 2013-02-06 00:05+0100\n" +"PO-Revision-Date: 2013-02-05 23:05+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -41,44 +41,22 @@ msgstr "Por favor, revisá tu contraseña e intentalo de nuevo." msgid "Could not change your file encryption password to your login password" msgstr "No se pudo cambiar la contraseña de encriptación de archivos de tu contraseña de inicio de sesión" -#: templates/settings-personal.php:3 templates/settings.php:5 -msgid "Choose encryption mode:" -msgstr "Elegir el modo de encriptación:" - -#: templates/settings-personal.php:20 templates/settings.php:24 -msgid "" -"Client side encryption (most secure but makes it impossible to access your " -"data from the web interface)" -msgstr "Encriptación por parte del cliente (es el modo más seguro, pero hace que sea imposible acceder a tus datos desde la interfaz web)" - -#: templates/settings-personal.php:30 templates/settings.php:36 -msgid "" -"Server side encryption (allows you to access your files from the web " -"interface and the desktop client)" -msgstr "Encriptación por parte del servidor (te permite acceder a tus archivos desde la interfaz web y desde el cliente de escritorio)" - -#: templates/settings-personal.php:41 templates/settings.php:60 -msgid "None (no encryption at all)" -msgstr "Ninguno (ninguna encriptación en absoluto)" - -#: templates/settings.php:10 -msgid "" -"Important: Once you selected an encryption mode there is no way to change it" -" back" -msgstr "Importante: Una vez que haya seleccionado un modo de encriptación, no existe forma de cambiarlo nuevamente" - -#: templates/settings.php:48 -msgid "User specific (let the user decide)" -msgstr "Específico por usuario (deja que el usuario decida)" - -#: templates/settings.php:65 +#: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" msgstr "Encriptación" -#: templates/settings.php:67 -msgid "Exclude the following file types from encryption" -msgstr "Exceptuar de la encriptación los siguientes tipos de archivo" +#: templates/settings-personal.php:7 +msgid "File encryption is enabled." +msgstr "" -#: templates/settings.php:71 +#: templates/settings-personal.php:11 +msgid "The following file types will not be encrypted:" +msgstr "" + +#: templates/settings.php:7 +msgid "Exclude the following file types from encryption:" +msgstr "" + +#: templates/settings.php:12 msgid "None" msgstr "Ninguno" diff --git a/l10n/es_AR/files_trashbin.po b/l10n/es_AR/files_trashbin.po index 7352752bf4..2048ce0e54 100644 --- a/l10n/es_AR/files_trashbin.po +++ b/l10n/es_AR/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ msgstr "" "Language: es_AR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Nombre" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 directorio" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} directorios" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 archivo" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} archivos" diff --git a/l10n/es_AR/settings.po b/l10n/es_AR/settings.po index 8310f58c95..a9d2e183b6 100644 --- a/l10n/es_AR/settings.po +++ b/l10n/es_AR/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -24,6 +24,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Imposible cargar la lista desde el App Store" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Error al autenticar" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "El grupo ya existe" @@ -48,10 +57,6 @@ msgstr "el e-mail no es válido " msgid "Unable to delete group" msgstr "No fue posible eliminar el grupo" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Error al autenticar" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "No fue posible eliminar el usuario" @@ -114,7 +119,7 @@ msgstr "Error" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Guardando..." @@ -191,67 +196,83 @@ msgstr "Descargar cliente de Android" msgid "Download iOS Client" msgstr "Descargar cliente de iOS" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Contraseña" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "Tu contraseña fue cambiada" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "No fue posible cambiar tu contraseña" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Contraseña actual" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Nueva contraseña:" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "mostrar" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Cambiar contraseña" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "Nombre a mostrar" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "Correo electrónico" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Tu dirección de e-mail" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Escribí una dirección de correo electrónico para restablecer la contraseña" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Idioma" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Ayudanos a traducir" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Utiliza esta dirección para conectarte con ownCloud en tu Administrador de Archivos" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "Versión" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 17:20+0000\n" +"Last-Translator: Agustin Ferrario \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,11 +22,11 @@ msgstr "" #: ajax/deleteConfiguration.php:34 msgid "Failed to delete the server configuration" -msgstr "" +msgstr "Fallo al borrar la configuración del servidor" #: ajax/testConfiguration.php:35 msgid "The configuration is valid and the connection could be established!" -msgstr "" +msgstr "La configuración es valida y la conexión pudo ser establecida." #: ajax/testConfiguration.php:37 msgid "" @@ -50,27 +50,27 @@ msgstr "" #: js/settings.js:83 msgid "Keep settings?" -msgstr "" +msgstr "¿Mantener preferencias?" #: js/settings.js:97 msgid "Cannot add server configuration" -msgstr "" +msgstr "No se pudo añadir la configuración del servidor" #: js/settings.js:121 msgid "Connection test succeeded" -msgstr "" +msgstr "El este de conexión ha sido completado satisfactoriamente" #: js/settings.js:126 msgid "Connection test failed" -msgstr "" +msgstr "Falló es test de conexión" #: js/settings.js:136 msgid "Do you really want to delete the current Server Configuration?" -msgstr "" +msgstr "¿Realmente desea borrar la configuración actual del servidor?" #: js/settings.js:137 msgid "Confirm Deletion" -msgstr "" +msgstr "Confirmar borrado" #: templates/settings.php:8 msgid "" @@ -87,11 +87,11 @@ msgstr "Atención: El módulo PHP LDAP no está instalado, este elemento #: templates/settings.php:15 msgid "Server configuration" -msgstr "" +msgstr "Configuración del Servidor" #: templates/settings.php:17 msgid "Add Server Configuration" -msgstr "" +msgstr "Añadir Configuración del Servidor" #: templates/settings.php:21 msgid "Host" @@ -175,11 +175,11 @@ msgstr "Sin ninguna plantilla, p. ej.: \"objectClass=posixGroup\"." #: templates/settings.php:31 msgid "Connection Settings" -msgstr "" +msgstr "Configuración de Conección" #: templates/settings.php:33 msgid "Configuration Active" -msgstr "" +msgstr "Configuración activa" #: templates/settings.php:33 msgid "When unchecked, this configuration will be skipped." @@ -205,7 +205,7 @@ msgstr "" #: templates/settings.php:37 msgid "Disable Main Server" -msgstr "" +msgstr "Deshabilitar el Servidor Principal" #: templates/settings.php:37 msgid "When switched on, ownCloud will only connect to the replica server." @@ -243,7 +243,7 @@ msgstr "en segundos. Cambiarlo vacía la cache." #: templates/settings.php:43 msgid "Directory Settings" -msgstr "" +msgstr "Configuración de Directorio" #: templates/settings.php:45 msgid "User Display Name Field" @@ -295,7 +295,7 @@ msgstr "Asociación Grupo-Miembro" #: templates/settings.php:53 msgid "Special Attributes" -msgstr "" +msgstr "Atributos Especiales" #: templates/settings.php:56 msgid "in bytes" diff --git a/l10n/et_EE/core.po b/l10n/et_EE/core.po index 319bddaf87..6f5386d3a7 100644 --- a/l10n/et_EE/core.po +++ b/l10n/et_EE/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-01-31 23:30+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:07+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -160,55 +160,55 @@ msgstr "Detsember" msgid "Settings" msgstr "Seaded" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "sekundit tagasi" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "1 minut tagasi" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "{minutes} minutit tagasi" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "täna" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "eile" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "{days} päeva tagasi" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "viimasel kuul" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "kuu tagasi" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "viimasel aastal" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "aastat tagasi" @@ -563,14 +563,18 @@ msgstr "Palun muuda parooli, et oma kasutajakonto uuesti turvata." msgid "Lost your password?" msgstr "Kaotasid oma parooli?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "pea meeles" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Logi sisse" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "eelm" diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index deecc6e868..b3de1b124e 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -19,46 +19,46 @@ msgstr "" "Language: et_EE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Ühtegi faili ei laetud üles. Tundmatu viga" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Ühtegi viga pole, fail on üles laetud" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Üles laetud faili suurus ületab HTML vormis määratud upload_max_filesize suuruse" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Fail laeti üles ainult osaliselt" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Ühtegi faili ei laetud üles" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Ajutiste failide kaust puudub" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Kettale kirjutamine ebaõnnestus" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -70,11 +70,15 @@ msgstr "Failid" msgid "Unshare" msgstr "Lõpeta jagamine" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Kustuta" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "ümber" @@ -179,31 +183,31 @@ msgstr "URL ei saa olla tühi." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Nimi" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Suurus" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Muudetud" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 kaust" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} kausta" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 fail" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} faili" diff --git a/l10n/et_EE/files_encryption.po b/l10n/et_EE/files_encryption.po index eb1004d7be..c7abb91cb7 100644 --- a/l10n/et_EE/files_encryption.po +++ b/l10n/et_EE/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-23 00:05+0100\n" -"PO-Revision-Date: 2013-01-22 23:05+0000\n" +"POT-Creation-Date: 2013-02-06 00:05+0100\n" +"PO-Revision-Date: 2013-02-05 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -40,44 +40,22 @@ msgstr "" msgid "Could not change your file encryption password to your login password" msgstr "" -#: templates/settings-personal.php:3 templates/settings.php:5 -msgid "Choose encryption mode:" -msgstr "" - -#: templates/settings-personal.php:20 templates/settings.php:24 -msgid "" -"Client side encryption (most secure but makes it impossible to access your " -"data from the web interface)" -msgstr "" - -#: templates/settings-personal.php:30 templates/settings.php:36 -msgid "" -"Server side encryption (allows you to access your files from the web " -"interface and the desktop client)" -msgstr "" - -#: templates/settings-personal.php:41 templates/settings.php:60 -msgid "None (no encryption at all)" -msgstr "" - -#: templates/settings.php:10 -msgid "" -"Important: Once you selected an encryption mode there is no way to change it" -" back" -msgstr "" - -#: templates/settings.php:48 -msgid "User specific (let the user decide)" -msgstr "" - -#: templates/settings.php:65 +#: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" msgstr "Krüpteerimine" -#: templates/settings.php:67 -msgid "Exclude the following file types from encryption" -msgstr "Järgnevaid failitüüpe ära krüpteeri" +#: templates/settings-personal.php:7 +msgid "File encryption is enabled." +msgstr "" -#: templates/settings.php:71 +#: templates/settings-personal.php:11 +msgid "The following file types will not be encrypted:" +msgstr "" + +#: templates/settings.php:7 +msgid "Exclude the following file types from encryption:" +msgstr "" + +#: templates/settings.php:12 msgid "None" msgstr "Pole" diff --git a/l10n/et_EE/files_trashbin.po b/l10n/et_EE/files_trashbin.po index 818c4c31a5..23d134dba9 100644 --- a/l10n/et_EE/files_trashbin.po +++ b/l10n/et_EE/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ msgstr "" "Language: et_EE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Nimi" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 kaust" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} kausta" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 fail" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} faili" diff --git a/l10n/et_EE/settings.po b/l10n/et_EE/settings.po index 1dbc6e9f6f..bd9993e5eb 100644 --- a/l10n/et_EE/settings.po +++ b/l10n/et_EE/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -23,6 +23,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "App Sotre'i nimekirja laadimine ebaõnnestus" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Autentimise viga" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "Grupp on juba olemas" @@ -47,10 +56,6 @@ msgstr "Vigane e-post" msgid "Unable to delete group" msgstr "Keela grupi kustutamine" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Autentimise viga" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "Keela kasutaja kustutamine" @@ -113,7 +118,7 @@ msgstr "Viga" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Salvestamine..." @@ -190,67 +195,83 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Parool" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "Sinu parooli on muudetud" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Sa ei saa oma parooli muuta" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Praegune parool" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Uus parool" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "näita" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Muuda parooli" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "E-post" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Sinu e-posti aadress" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Parooli taastamise sisse lülitamiseks sisesta e-posti aadress" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Keel" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Aita tõlkida" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -163,55 +163,55 @@ msgstr "Abendua" msgid "Settings" msgstr "Ezarpenak" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "segundu" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "orain dela minutu 1" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "orain dela {minutes} minutu" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "orain dela ordu bat" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "orain dela {hours} ordu" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "gaur" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "atzo" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "orain dela {days} egun" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "joan den hilabetean" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "orain dela {months} hilabete" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "hilabete" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "joan den urtean" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "urte" @@ -566,14 +566,18 @@ msgstr "Mesedez aldatu zure pasahitza zure kontua berriz segurtatzeko." msgid "Lost your password?" msgstr "Galdu duzu pasahitza?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "gogoratu" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Hasi saioa" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "aurrekoa" diff --git a/l10n/eu/files.po b/l10n/eu/files.po index 2c3f16305d..aa53f96402 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -21,46 +21,46 @@ msgstr "" "Language: eu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Ez da fitxategirik igo. Errore ezezaguna" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Ez da arazorik izan, fitxategia ongi igo da" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Igotako fitxategiak php.ini fitxategian ezarritako upload_max_filesize muga gainditu du:" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Igotako fitxategiaren tamaina HTML inprimakiko MAX_FILESIZE direktiban adierazitakoa baino handiagoa da" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Igotako fitxategiaren zati bat baino gehiago ez da igo" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Ez da fitxategirik igo" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Aldi baterako karpeta falta da" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Errore bat izan da diskoan idazterakoan" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "Ez dago leku nahikorik." -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Baliogabeko karpeta." @@ -72,11 +72,15 @@ msgstr "Fitxategiak" msgid "Unshare" msgstr "Ez elkarbanatu" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Ezabatu" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Berrizendatu" @@ -181,31 +185,31 @@ msgstr "URLa ezin da hutsik egon." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Baliogabeako karpeta izena. 'Shared' izena Owncloudek erreserbatzen du" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Izena" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Tamaina" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Aldatuta" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "karpeta bat" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} karpeta" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "fitxategi bat" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} fitxategi" diff --git a/l10n/eu/files_encryption.po b/l10n/eu/files_encryption.po index 4e6b0c18e0..8f72a0453b 100644 --- a/l10n/eu/files_encryption.po +++ b/l10n/eu/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-30 00:23+0100\n" -"PO-Revision-Date: 2013-01-29 18:40+0000\n" -"Last-Translator: asieriko \n" +"POT-Creation-Date: 2013-02-06 00:05+0100\n" +"PO-Revision-Date: 2013-02-05 23:05+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -41,44 +41,22 @@ msgstr "Mesedez egiaztatu zure pasahitza eta saia zaitez berriro:" msgid "Could not change your file encryption password to your login password" msgstr "" -#: templates/settings-personal.php:3 templates/settings.php:5 -msgid "Choose encryption mode:" -msgstr "Hautatu enkriptazio modua:" - -#: templates/settings-personal.php:20 templates/settings.php:24 -msgid "" -"Client side encryption (most secure but makes it impossible to access your " -"data from the web interface)" -msgstr "" - -#: templates/settings-personal.php:30 templates/settings.php:36 -msgid "" -"Server side encryption (allows you to access your files from the web " -"interface and the desktop client)" -msgstr "" - -#: templates/settings-personal.php:41 templates/settings.php:60 -msgid "None (no encryption at all)" -msgstr "Bat ere ez (enkriptaziorik gabe)" - -#: templates/settings.php:10 -msgid "" -"Important: Once you selected an encryption mode there is no way to change it" -" back" -msgstr "" - -#: templates/settings.php:48 -msgid "User specific (let the user decide)" -msgstr "Erabiltzaileak zehaztuta (utzi erabiltzaileari hautatzen)" - -#: templates/settings.php:65 +#: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" msgstr "Enkriptazioa" -#: templates/settings.php:67 -msgid "Exclude the following file types from encryption" -msgstr "Ez enkriptatu hurrengo fitxategi motak" +#: templates/settings-personal.php:7 +msgid "File encryption is enabled." +msgstr "" -#: templates/settings.php:71 +#: templates/settings-personal.php:11 +msgid "The following file types will not be encrypted:" +msgstr "" + +#: templates/settings.php:7 +msgid "Exclude the following file types from encryption:" +msgstr "" + +#: templates/settings.php:12 msgid "None" msgstr "Bat ere ez" diff --git a/l10n/eu/files_trashbin.po b/l10n/eu/files_trashbin.po index a0ee131403..0eecd4d06c 100644 --- a/l10n/eu/files_trashbin.po +++ b/l10n/eu/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ msgstr "" "Language: eu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Izena" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "karpeta bat" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} karpeta" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "fitxategi bat" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} fitxategi" diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po index 7b268d3a9d..b605292a8a 100644 --- a/l10n/eu/settings.po +++ b/l10n/eu/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -25,6 +25,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Ezin izan da App Dendatik zerrenda kargatu" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Autentifikazio errorea" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "Taldea dagoeneko existitzenda" @@ -49,10 +58,6 @@ msgstr "Baliogabeko eposta" msgid "Unable to delete group" msgstr "Ezin izan da taldea ezabatu" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Autentifikazio errorea" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "Ezin izan da erabiltzailea ezabatu" @@ -115,7 +120,7 @@ msgstr "Errorea" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Gordetzen..." @@ -192,67 +197,83 @@ msgstr "Deskargatu Android bezeroa" msgid "Download iOS Client" msgstr "Deskargatu iOS bezeroa" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Pasahitza" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "Zere pasahitza aldatu da" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Ezin izan da zure pasahitza aldatu" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Uneko pasahitza" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Pasahitz berria" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "erakutsi" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Aldatu pasahitza" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "Bistaratze Izena" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "E-Posta" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Zure e-posta" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Idatz ezazu e-posta bat pasahitza berreskuratu ahal izateko" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Hizkuntza" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Lagundu itzultzen" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Erabili helbide hau zure fitxategi kudeatzailean zure ownCloudera konektatzeko" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "Bertsioa" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -161,55 +161,55 @@ msgstr "دسامبر" msgid "Settings" msgstr "تنظیمات" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "ثانیه‌ها پیش" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "1 دقیقه پیش" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "{دقیقه ها} دقیقه های پیش" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "1 ساعت پیش" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "{ساعت ها} ساعت ها پیش" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "امروز" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "دیروز" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "{روزها} روزهای پیش" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "ماه قبل" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "{ماه ها} ماه ها پیش" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "ماه‌های قبل" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "سال قبل" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "سال‌های قبل" @@ -564,14 +564,18 @@ msgstr "لطفا رمز عبور خود را تغییر دهید تا مجددا msgid "Lost your password?" msgstr "آیا گذرواژه تان را به یاد نمی آورید؟" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "بیاد آوری" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "ورود" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "بازگشت" diff --git a/l10n/fa/files.po b/l10n/fa/files.po index c0c54f59a6..9739c71ab2 100644 --- a/l10n/fa/files.po +++ b/l10n/fa/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 11:20+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -21,46 +21,46 @@ msgstr "" "Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "هیچ فایلی آپلود نشد.خطای ناشناس" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "هیچ خطایی وجود ندارد فایل با موفقیت بار گذاری شد" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "پرونده آپلود شده بیش ازدستور ماکزیمم_حجم فایل_برای آپلود در php.ini استفاده کرده است." -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "حداکثر حجم مجاز برای بارگذاری از طریق HTML \nMAX_FILE_SIZE" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "مقدار کمی از فایل بارگذاری شده" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "هیچ فایلی بارگذاری نشده" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "یک پوشه موقت گم شده است" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "نوشتن بر روی دیسک سخت ناموفق بود" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "فضای کافی در دسترس نیست" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "فهرست راهنما نامعتبر می باشد." @@ -72,11 +72,15 @@ msgstr "فایل ها" msgid "Unshare" msgstr "لغو اشتراک" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "پاک کردن" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "تغییرنام" @@ -181,31 +185,31 @@ msgstr "URL نمی تواند خالی باشد." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "نام پوشه نامعتبر است. استفاده از \" به اشتراک گذاشته شده \" متعلق به سایت Owncloud است." -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "نام" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "اندازه" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "تغییر یافته" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 پوشه" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{ شمار} پوشه ها" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 پرونده" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{ شمار } فایل ها" diff --git a/l10n/fa/files_encryption.po b/l10n/fa/files_encryption.po index b5ac04c90a..586cebd200 100644 --- a/l10n/fa/files_encryption.po +++ b/l10n/fa/files_encryption.po @@ -4,13 +4,14 @@ # # Translators: # , 2012. +# mahdi Kereshteh , 2013. # Mohammad Dashtizadeh , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-23 00:05+0100\n" -"PO-Revision-Date: 2013-01-22 23:05+0000\n" +"POT-Creation-Date: 2013-02-06 00:05+0100\n" +"PO-Revision-Date: 2013-02-05 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -35,50 +36,28 @@ msgstr "" #: js/settings-personal.js:25 msgid "Please check your passwords and try again." -msgstr "" +msgstr "لطفا گذرواژه خود را بررسی کنید و دوباره امتحان کنید." #: js/settings-personal.js:25 msgid "Could not change your file encryption password to your login password" msgstr "" -#: templates/settings-personal.php:3 templates/settings.php:5 -msgid "Choose encryption mode:" -msgstr "" - -#: templates/settings-personal.php:20 templates/settings.php:24 -msgid "" -"Client side encryption (most secure but makes it impossible to access your " -"data from the web interface)" -msgstr "" - -#: templates/settings-personal.php:30 templates/settings.php:36 -msgid "" -"Server side encryption (allows you to access your files from the web " -"interface and the desktop client)" -msgstr "" - -#: templates/settings-personal.php:41 templates/settings.php:60 -msgid "None (no encryption at all)" -msgstr "" - -#: templates/settings.php:10 -msgid "" -"Important: Once you selected an encryption mode there is no way to change it" -" back" -msgstr "" - -#: templates/settings.php:48 -msgid "User specific (let the user decide)" -msgstr "" - -#: templates/settings.php:65 +#: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" msgstr "رمزگذاری" -#: templates/settings.php:67 -msgid "Exclude the following file types from encryption" -msgstr "نادیده گرفتن فایل های زیر برای رمز گذاری" +#: templates/settings-personal.php:7 +msgid "File encryption is enabled." +msgstr "" -#: templates/settings.php:71 +#: templates/settings-personal.php:11 +msgid "The following file types will not be encrypted:" +msgstr "" + +#: templates/settings.php:7 +msgid "Exclude the following file types from encryption:" +msgstr "" + +#: templates/settings.php:12 msgid "None" msgstr "هیچ‌کدام" diff --git a/l10n/fa/files_trashbin.po b/l10n/fa/files_trashbin.po index d0801cffe9..3610dde6be 100644 --- a/l10n/fa/files_trashbin.po +++ b/l10n/fa/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-04 00:05+0100\n" -"PO-Revision-Date: 2013-02-03 12:40+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ msgstr "" "Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "نام" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 پوشه" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{ شمار} پوشه ها" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 پرونده" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{ شمار } فایل ها" diff --git a/l10n/fa/settings.po b/l10n/fa/settings.po index b53e8d923b..f38f77bf14 100644 --- a/l10n/fa/settings.po +++ b/l10n/fa/settings.po @@ -5,14 +5,15 @@ # Translators: # , 2012. # Hossein nag , 2012. +# mahdi Kereshteh , 2013. # , 2012. # vahid chakoshy , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-05 00:19+0100\n" -"PO-Revision-Date: 2013-02-04 14:31+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -25,13 +26,22 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "قادر به بارگذاری لیست از فروشگاه اپ نیستم" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "خطا در اعتبار سنجی" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" -msgstr "" +msgstr "این گروه در حال حاضر موجود است" #: ajax/creategroup.php:19 msgid "Unable to add group" -msgstr "" +msgstr "افزودن گروه امکان پذیر نیست" #: ajax/enableapp.php:11 msgid "Could not enable app. " @@ -47,15 +57,11 @@ msgstr "ایمیل غیر قابل قبول" #: ajax/removegroup.php:13 msgid "Unable to delete group" -msgstr "" - -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "خطا در اعتبار سنجی" +msgstr "حذف گروه امکان پذیر نیست" #: ajax/removeuser.php:24 msgid "Unable to delete user" -msgstr "" +msgstr "حذف کاربر امکان پذیر نیست" #: ajax/setlanguage.php:15 msgid "Language changed" @@ -97,11 +103,11 @@ msgstr "فعال" #: js/apps.js:55 msgid "Please wait...." -msgstr "" +msgstr "لطفا صبر کنید ..." #: js/apps.js:84 msgid "Updating...." -msgstr "" +msgstr "در حال بروز رسانی..." #: js/apps.js:87 msgid "Error while updating app" @@ -113,9 +119,9 @@ msgstr "خطا" #: js/apps.js:90 msgid "Updated" -msgstr "" +msgstr "بروز رسانی انجام شد" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "درحال ذخیره ..." @@ -129,7 +135,7 @@ msgstr "برنامه خود را بیافزایید" #: templates/apps.php:11 msgid "More Apps" -msgstr "" +msgstr "برنامه های بیشتر" #: templates/apps.php:24 msgid "Select an App" @@ -145,7 +151,7 @@ msgstr "" #: templates/apps.php:31 msgid "Update" -msgstr "" +msgstr "به روز رسانی" #: templates/help.php:3 msgid "User Documentation" @@ -161,7 +167,7 @@ msgstr "" #: templates/help.php:7 msgid "Forum" -msgstr "" +msgstr "انجمن" #: templates/help.php:9 msgid "Bugtracker" @@ -192,67 +198,83 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "گذرواژه" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "رمز عبور شما تغییر یافت" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "ناتوان در تغییر گذرواژه" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "گذرواژه کنونی" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "گذرواژه جدید" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "نمایش" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "تغییر گذر واژه" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "پست الکترونیکی" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "پست الکترونیکی شما" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "پست الکترونیکی را پرکنید تا بازیابی گذرواژه فعال شود" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "زبان" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "به ترجمه آن کمک کنید" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" -msgstr "" +msgstr "نسخه" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the , 2013. # Mohammad Dashtizadeh , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-04 00:05+0100\n" -"PO-Revision-Date: 2013-02-03 12:00+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-02-06 00:05+0100\n" +"PO-Revision-Date: 2013-02-05 05:40+0000\n" +"Last-Translator: miki_mika1362 \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -48,7 +49,7 @@ msgstr "" #: js/settings.js:83 msgid "Keep settings?" -msgstr "" +msgstr "آیا تنظیمات ذخیره شود ؟" #: js/settings.js:97 msgid "Cannot add server configuration" diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index 34672cc2cb..734dc893ad 100644 --- a/l10n/fi_FI/core.po +++ b/l10n/fi_FI/core.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-01-31 23:30+0000\n" -"Last-Translator: Jiri Grönroos \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -166,55 +166,55 @@ msgstr "Joulukuu" msgid "Settings" msgstr "Asetukset" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "sekuntia sitten" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "1 minuutti sitten" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "{minutes} minuuttia sitten" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "1 tunti sitten" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "{hours} tuntia sitten" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "tänään" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "eilen" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "{days} päivää sitten" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "viime kuussa" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "{months} kuukautta sitten" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "kuukautta sitten" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "viime vuonna" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "vuotta sitten" @@ -569,14 +569,18 @@ msgstr "Vaihda salasanasi suojataksesi tilisi uudelleen." msgid "Lost your password?" msgstr "Unohditko salasanasi?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "muista" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Kirjaudu sisään" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "edellinen" diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index 3e3ea718bb..13f67673e0 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/files.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 13:58+0000\n" -"Last-Translator: Jiri Grönroos \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,46 +22,46 @@ msgstr "" "Language: fi_FI\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Tiedostoa ei lähetetty. Tuntematon virhe" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Ei virheitä, tiedosto lähetettiin onnistuneesti" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Lähetetty tiedosto ylittää HTML-lomakkeessa määritetyn MAX_FILE_SIZE-arvon ylärajan" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Tiedoston lähetys onnistui vain osittain" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Yhtäkään tiedostoa ei lähetetty" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Väliaikaiskansiota ei ole olemassa" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Levylle kirjoitus epäonnistui" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "Tilaa ei ole riittävästi" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Virheellinen kansio." @@ -73,11 +73,15 @@ msgstr "Tiedostot" msgid "Unshare" msgstr "Peru jakaminen" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Poista" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Nimeä uudelleen" @@ -182,31 +186,31 @@ msgstr "Verkko-osoite ei voi olla tyhjä" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Nimi" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Koko" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Muutettu" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 kansio" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} kansiota" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 tiedosto" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} tiedostoa" diff --git a/l10n/fi_FI/files_encryption.po b/l10n/fi_FI/files_encryption.po index 69b524af11..d8095a939b 100644 --- a/l10n/fi_FI/files_encryption.po +++ b/l10n/fi_FI/files_encryption.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 13:59+0000\n" -"Last-Translator: Jiri Grönroos \n" +"POT-Creation-Date: 2013-02-06 00:05+0100\n" +"PO-Revision-Date: 2013-02-05 23:05+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -40,44 +40,22 @@ msgstr "Tarkista salasanasi ja yritä uudelleen." msgid "Could not change your file encryption password to your login password" msgstr "" -#: templates/settings-personal.php:3 templates/settings.php:5 -msgid "Choose encryption mode:" -msgstr "Choose encryption mode:" - -#: templates/settings-personal.php:20 templates/settings.php:24 -msgid "" -"Client side encryption (most secure but makes it impossible to access your " -"data from the web interface)" -msgstr "" - -#: templates/settings-personal.php:30 templates/settings.php:36 -msgid "" -"Server side encryption (allows you to access your files from the web " -"interface and the desktop client)" -msgstr "" - -#: templates/settings-personal.php:41 templates/settings.php:60 -msgid "None (no encryption at all)" -msgstr "Ei mitään (ei lainkaan salausta)" - -#: templates/settings.php:10 -msgid "" -"Important: Once you selected an encryption mode there is no way to change it" -" back" -msgstr "Tärkeä huomautus: Kun olet valinnut salaustatavan, sitä ei ole mahdollista vaihtaa" - -#: templates/settings.php:48 -msgid "User specific (let the user decide)" -msgstr "" - -#: templates/settings.php:65 +#: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" msgstr "Salaus" -#: templates/settings.php:67 -msgid "Exclude the following file types from encryption" -msgstr "Jätä seuraavat tiedostotyypit salaamatta" +#: templates/settings-personal.php:7 +msgid "File encryption is enabled." +msgstr "" -#: templates/settings.php:71 +#: templates/settings-personal.php:11 +msgid "The following file types will not be encrypted:" +msgstr "" + +#: templates/settings.php:7 +msgid "Exclude the following file types from encryption:" +msgstr "" + +#: templates/settings.php:12 msgid "None" msgstr "Ei mitään" diff --git a/l10n/fi_FI/files_trashbin.po b/l10n/fi_FI/files_trashbin.po index 3543c5b119..862e93f1b7 100644 --- a/l10n/fi_FI/files_trashbin.po +++ b/l10n/fi_FI/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -18,31 +18,35 @@ msgstr "" "Language: fi_FI\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "suorita palautustoiminto" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Nimi" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "Poistettu" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 kansio" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} kansiota" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 tiedosto" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} tiedostoa" diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index eb214d6668..f31845d910 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 13:58+0000\n" -"Last-Translator: Jiri Grönroos \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,6 +24,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Ei pystytä lataamaan listaa sovellusvarastosta (App Store)" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Todennusvirhe" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "Ryhmä on jo olemassa" @@ -48,10 +57,6 @@ msgstr "Virheellinen sähköposti" msgid "Unable to delete group" msgstr "Ryhmän poisto epäonnistui" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Todennusvirhe" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "Käyttäjän poisto epäonnistui" @@ -114,7 +119,7 @@ msgstr "Virhe" msgid "Updated" msgstr "Päivitetty" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Tallennetaan..." @@ -191,67 +196,83 @@ msgstr "Lataa Android-sovellus" msgid "Download iOS Client" msgstr "Lataa iOS-sovellus" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Salasana" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "Salasanasi vaihdettiin" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Salasanaasi ei voitu vaihtaa" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Nykyinen salasana" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Uusi salasana" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "näytä" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Vaihda salasana" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "Näyttönimi" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "Sähköposti" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Sähköpostiosoitteesi" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Anna sähköpostiosoitteesi, jotta unohdettu salasana on mahdollista palauttaa" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Kieli" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Auta kääntämisessä" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Käytä tätä osoitetta yhdistäessäsi ownCloudiisi tiedostonhallintaa käyttäen" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "Versio" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:07+0000\n" +"Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -172,55 +172,55 @@ msgstr "décembre" msgid "Settings" msgstr "Paramètres" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "il y a quelques secondes" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "il y a une minute" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "il y a {minutes} minutes" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "Il y a une heure" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "Il y a {hours} heures" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "aujourd'hui" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "hier" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "il y a {days} jours" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "le mois dernier" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "Il y a {months} mois" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "il y a plusieurs mois" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "l'année dernière" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "il y a plusieurs années" @@ -575,14 +575,18 @@ msgstr "Veuillez changer votre mot de passe pour sécuriser à nouveau votre com msgid "Lost your password?" msgstr "Mot de passe perdu ?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "se souvenir de moi" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Connexion" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "précédent" diff --git a/l10n/fr/files.po b/l10n/fr/files.po index 5a5f892a67..4d48780dff 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -21,9 +21,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 14:30+0000\n" -"Last-Translator: Flywall \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -31,46 +31,46 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Aucun fichier n'a été chargé. Erreur inconnue" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Aucune erreur, le fichier a été téléversé avec succès" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Le fichier envoyé dépasse la valeur upload_max_filesize située dans le fichier php.ini:" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Le fichier téléversé excède la valeur de MAX_FILE_SIZE spécifiée dans le formulaire HTML" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Le fichier n'a été que partiellement téléversé" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Aucun fichier n'a été téléversé" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Il manque un répertoire temporaire" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Erreur d'écriture sur le disque" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "Espace disponible insuffisant" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Dossier invalide." @@ -82,11 +82,15 @@ msgstr "Fichiers" msgid "Unshare" msgstr "Ne plus partager" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Supprimer" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Renommer" @@ -191,31 +195,31 @@ msgstr "L'URL ne peut-être vide" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nom de dossier invalide. L'utilisation du mot 'Shared' est réservée à Owncloud" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Nom" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Taille" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Modifié" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 dossier" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} dossiers" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 fichier" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} fichiers" diff --git a/l10n/fr/files_encryption.po b/l10n/fr/files_encryption.po index f1305f621d..d20576ced1 100644 --- a/l10n/fr/files_encryption.po +++ b/l10n/fr/files_encryption.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-25 00:05+0100\n" -"PO-Revision-Date: 2013-01-24 01:10+0000\n" -"Last-Translator: Romain DEP. \n" +"POT-Creation-Date: 2013-02-06 00:05+0100\n" +"PO-Revision-Date: 2013-02-05 23:05+0000\n" +"Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -40,44 +40,22 @@ msgstr "Veuillez vérifier vos mots de passe et réessayer." msgid "Could not change your file encryption password to your login password" msgstr "Impossible de convertir votre mot de passe de chiffrement en mot de passe de connexion" -#: templates/settings-personal.php:3 templates/settings.php:5 -msgid "Choose encryption mode:" -msgstr "Choix du type de chiffrement :" - -#: templates/settings-personal.php:20 templates/settings.php:24 -msgid "" -"Client side encryption (most secure but makes it impossible to access your " -"data from the web interface)" -msgstr "Chiffrement côté client (plus sécurisé, mais ne permet pas l'accès à vos données depuis l'interface web)" - -#: templates/settings-personal.php:30 templates/settings.php:36 -msgid "" -"Server side encryption (allows you to access your files from the web " -"interface and the desktop client)" -msgstr "Chiffrement côté serveur (vous permet d'accéder à vos fichiers depuis l'interface web et depuis le client de synchronisation)" - -#: templates/settings-personal.php:41 templates/settings.php:60 -msgid "None (no encryption at all)" -msgstr "Aucun (pas de chiffrement)" - -#: templates/settings.php:10 -msgid "" -"Important: Once you selected an encryption mode there is no way to change it" -" back" -msgstr "Important : Une fois le mode de chiffrement choisi, il est impossible de revenir en arrière" - -#: templates/settings.php:48 -msgid "User specific (let the user decide)" -msgstr "Propre à l'utilisateur (laisse le choix à l'utilisateur)" - -#: templates/settings.php:65 +#: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" msgstr "Chiffrement" -#: templates/settings.php:67 -msgid "Exclude the following file types from encryption" -msgstr "Ne pas chiffrer les fichiers dont les types sont les suivants" +#: templates/settings-personal.php:7 +msgid "File encryption is enabled." +msgstr "" -#: templates/settings.php:71 +#: templates/settings-personal.php:11 +msgid "The following file types will not be encrypted:" +msgstr "" + +#: templates/settings.php:7 +msgid "Exclude the following file types from encryption:" +msgstr "" + +#: templates/settings.php:12 msgid "None" msgstr "Aucun" diff --git a/l10n/fr/files_trashbin.po b/l10n/fr/files_trashbin.po index d8a8b2c792..a0b95c58b5 100644 --- a/l10n/fr/files_trashbin.po +++ b/l10n/fr/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -19,31 +19,35 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "effectuer l'opération de restauration" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Nom" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "Effacé" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 dossier" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} dossiers" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 fichier" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} fichiers" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index 99f4d45ce8..926b1a0e08 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -19,12 +19,13 @@ # Robert Di Rosa <>, 2012. # , 2011, 2012. # Romain DEP. , 2012-2013. +# , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -37,6 +38,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Impossible de charger la liste depuis l'App Store" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Erreur d'authentification" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "Ce groupe existe déjà" @@ -61,10 +71,6 @@ msgstr "E-mail invalide" msgid "Unable to delete group" msgstr "Impossible de supprimer le groupe" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Erreur d'authentification" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "Impossible de supprimer l'utilisateur" @@ -113,7 +119,7 @@ msgstr "Veuillez patienter…" #: js/apps.js:84 msgid "Updating...." -msgstr "" +msgstr "Mise à jour..." #: js/apps.js:87 msgid "Error while updating app" @@ -127,7 +133,7 @@ msgstr "Erreur" msgid "Updated" msgstr "Mise à jour effectuée avec succès" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Sauvegarde..." @@ -204,67 +210,83 @@ msgstr "Télécharger le client Android" msgid "Download iOS Client" msgstr "Télécharger le client iOS" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Mot de passe" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "Votre mot de passe a été changé" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Impossible de changer votre mot de passe" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Mot de passe actuel" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Nouveau mot de passe" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "Afficher" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Changer de mot de passe" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "Nom affiché" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "E-mail" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Votre adresse e-mail" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Entrez votre adresse e-mail pour permettre la réinitialisation du mot de passe" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Langue" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Aidez à traduire" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Utiliser cette adresse pour vous connecter à ownCloud dans votre gestionnaire de fichiers" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "Version" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the , 2012. # , 2012. # Romain DEP. , 2012-2013. +# , 2013. # , 2012. # , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-02-06 00:05+0100\n" +"PO-Revision-Date: 2013-02-05 20:10+0000\n" +"Last-Translator: jiminybillybob \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" @@ -178,7 +179,7 @@ msgstr "sans élément de substitution, par exemple \"objectClass=posixGroup\"." #: templates/settings.php:31 msgid "Connection Settings" -msgstr "" +msgstr "Paramètres de connexion" #: templates/settings.php:33 msgid "Configuration Active" @@ -246,7 +247,7 @@ msgstr "en secondes. Tout changement vide le cache." #: templates/settings.php:43 msgid "Directory Settings" -msgstr "" +msgstr "Paramètres du répertoire" #: templates/settings.php:45 msgid "User Display Name Field" @@ -298,7 +299,7 @@ msgstr "Association groupe-membre" #: templates/settings.php:53 msgid "Special Attributes" -msgstr "" +msgstr "Attributs spéciaux" #: templates/settings.php:56 msgid "in bytes" diff --git a/l10n/gl/core.po b/l10n/gl/core.po index 227dd8bf06..c2a5a1d2f0 100644 --- a/l10n/gl/core.po +++ b/l10n/gl/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-01-31 23:30+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -162,55 +162,55 @@ msgstr "decembro" msgid "Settings" msgstr "Configuracións" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "segundos atrás" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "hai 1 minuto" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "hai {minutes} minutos" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "hai 1 hora" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "hai {hours} horas" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "hoxe" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "onte" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "hai {days} días" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "último mes" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "hai {months} meses" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "meses atrás" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "último ano" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "anos atrás" @@ -565,14 +565,18 @@ msgstr "Cambie de novo o seu contrasinal para asegurar a súa conta." msgid "Lost your password?" msgstr "Perdeu o contrasinal?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "lembrar" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Conectar" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "anterior" diff --git a/l10n/gl/files.po b/l10n/gl/files.po index 020232e7f3..d309fb232d 100644 --- a/l10n/gl/files.po +++ b/l10n/gl/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -19,46 +19,46 @@ msgstr "" "Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Non se subiu ningún ficheiro. Erro descoñecido." -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Non hai erros. O ficheiro enviouse correctamente" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "O ficheiro subido excede a directiva indicada polo tamaño_máximo_de_subida de php.ini" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "O ficheiro enviado supera a directiva MAX_FILE_SIZE que foi indicada no formulario HTML" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "O ficheiro enviado foi só parcialmente enviado" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Non se enviou ningún ficheiro" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Falta un cartafol temporal" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Erro ao escribir no disco" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "O espazo dispoñíbel é insuficiente" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "O directorio é incorrecto." @@ -70,11 +70,15 @@ msgstr "Ficheiros" msgid "Unshare" msgstr "Deixar de compartir" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Eliminar" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Mudar o nome" @@ -179,31 +183,31 @@ msgstr "URL non pode quedar baleiro." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nome de cartafol non válido. O uso de 'Shared' está reservado por Owncloud" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Nome" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Tamaño" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Modificado" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 cartafol" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} cartafoles" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 ficheiro" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} ficheiros" diff --git a/l10n/gl/files_encryption.po b/l10n/gl/files_encryption.po index ba0a8e899d..2d7038a124 100644 --- a/l10n/gl/files_encryption.po +++ b/l10n/gl/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-23 00:05+0100\n" -"PO-Revision-Date: 2013-01-22 23:05+0000\n" +"POT-Creation-Date: 2013-02-06 00:05+0100\n" +"PO-Revision-Date: 2013-02-05 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -40,44 +40,22 @@ msgstr "" msgid "Could not change your file encryption password to your login password" msgstr "" -#: templates/settings-personal.php:3 templates/settings.php:5 -msgid "Choose encryption mode:" -msgstr "" - -#: templates/settings-personal.php:20 templates/settings.php:24 -msgid "" -"Client side encryption (most secure but makes it impossible to access your " -"data from the web interface)" -msgstr "" - -#: templates/settings-personal.php:30 templates/settings.php:36 -msgid "" -"Server side encryption (allows you to access your files from the web " -"interface and the desktop client)" -msgstr "" - -#: templates/settings-personal.php:41 templates/settings.php:60 -msgid "None (no encryption at all)" -msgstr "" - -#: templates/settings.php:10 -msgid "" -"Important: Once you selected an encryption mode there is no way to change it" -" back" -msgstr "" - -#: templates/settings.php:48 -msgid "User specific (let the user decide)" -msgstr "" - -#: templates/settings.php:65 +#: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" msgstr "Cifrado" -#: templates/settings.php:67 -msgid "Exclude the following file types from encryption" -msgstr "Excluír os seguintes tipos de ficheiro do cifrado" +#: templates/settings-personal.php:7 +msgid "File encryption is enabled." +msgstr "" -#: templates/settings.php:71 +#: templates/settings-personal.php:11 +msgid "The following file types will not be encrypted:" +msgstr "" + +#: templates/settings.php:7 +msgid "Exclude the following file types from encryption:" +msgstr "" + +#: templates/settings.php:12 msgid "None" msgstr "Nada" diff --git a/l10n/gl/files_trashbin.po b/l10n/gl/files_trashbin.po index be7e4127d3..8f00ed2b31 100644 --- a/l10n/gl/files_trashbin.po +++ b/l10n/gl/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ msgstr "" "Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Nome" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 cartafol" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} cartafoles" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 ficheiro" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} ficheiros" diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index ccfa410e29..ca408e9994 100644 --- a/l10n/gl/settings.po +++ b/l10n/gl/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -24,6 +24,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Non foi posíbel cargar a lista desde a App Store" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Produciuse un erro de autenticación" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "O grupo xa existe" @@ -48,10 +57,6 @@ msgstr "correo incorrecto" msgid "Unable to delete group" msgstr "Non é posíbel eliminar o grupo." -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Produciuse un erro de autenticación" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "Non é posíbel eliminar o usuario" @@ -114,7 +119,7 @@ msgstr "Erro" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Gardando..." @@ -191,67 +196,83 @@ msgstr "Descargar clientes para Android" msgid "Download iOS Client" msgstr "Descargar clientes ra iOS" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Contrasinal" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "O seu contrasinal foi cambiado" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Non é posíbel cambiar o seu contrasinal" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Contrasinal actual" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Novo contrasinal" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "amosar" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Cambiar o contrasinal" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "Correo" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "O seu enderezo de correo" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Escriba un enderezo de correo para activar a recuperación do contrasinal" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Idioma" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Axude na tradución" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Utilice este enderezo para conectarse ao seu ownCloud co administrador de ficheiros" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "Versión" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -164,55 +164,55 @@ msgstr "דצמבר" msgid "Settings" msgstr "הגדרות" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "שניות" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "לפני דקה אחת" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "לפני {minutes} דקות" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "לפני שעה" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "לפני {hours} שעות" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "היום" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "אתמול" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "לפני {days} ימים" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "חודש שעבר" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "לפני {months} חודשים" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "חודשים" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "שנה שעברה" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "שנים" @@ -567,14 +567,18 @@ msgstr "נא לשנות את הססמה שלך כדי לאבטח את חשבונ msgid "Lost your password?" msgstr "שכחת את ססמתך?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "שמירת הססמה" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "כניסה" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "הקודם" diff --git a/l10n/he/files.po b/l10n/he/files.po index ed74dc9066..0c221283b6 100644 --- a/l10n/he/files.po +++ b/l10n/he/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -21,46 +21,46 @@ msgstr "" "Language: he\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "לא הועלה קובץ. טעות בלתי מזוהה." -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "לא אירעה תקלה, הקבצים הועלו בהצלחה" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "הקבצים שנשלחו חורגים מהגודל שצוין בהגדרה upload_max_filesize שבקובץ php.ini:" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "הקובץ שהועלה חרג מההנחיה MAX_FILE_SIZE שצוינה בטופס ה־HTML" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "הקובץ שהועלה הועלה בצורה חלקית" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "לא הועלו קבצים" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "תיקייה זמנית חסרה" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "הכתיבה לכונן נכשלה" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -72,11 +72,15 @@ msgstr "קבצים" msgid "Unshare" msgstr "הסר שיתוף" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "מחיקה" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "שינוי שם" @@ -181,31 +185,31 @@ msgstr "קישור אינו יכול להיות ריק." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "שם" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "גודל" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "זמן שינוי" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "תיקייה אחת" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} תיקיות" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "קובץ אחד" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} קבצים" diff --git a/l10n/he/files_encryption.po b/l10n/he/files_encryption.po index cd62f06daf..5347a271b6 100644 --- a/l10n/he/files_encryption.po +++ b/l10n/he/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-23 00:05+0100\n" -"PO-Revision-Date: 2013-01-22 23:05+0000\n" +"POT-Creation-Date: 2013-02-06 00:05+0100\n" +"PO-Revision-Date: 2013-02-05 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -40,44 +40,22 @@ msgstr "" msgid "Could not change your file encryption password to your login password" msgstr "" -#: templates/settings-personal.php:3 templates/settings.php:5 -msgid "Choose encryption mode:" -msgstr "" - -#: templates/settings-personal.php:20 templates/settings.php:24 -msgid "" -"Client side encryption (most secure but makes it impossible to access your " -"data from the web interface)" -msgstr "" - -#: templates/settings-personal.php:30 templates/settings.php:36 -msgid "" -"Server side encryption (allows you to access your files from the web " -"interface and the desktop client)" -msgstr "" - -#: templates/settings-personal.php:41 templates/settings.php:60 -msgid "None (no encryption at all)" -msgstr "" - -#: templates/settings.php:10 -msgid "" -"Important: Once you selected an encryption mode there is no way to change it" -" back" -msgstr "" - -#: templates/settings.php:48 -msgid "User specific (let the user decide)" -msgstr "" - -#: templates/settings.php:65 +#: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" msgstr "הצפנה" -#: templates/settings.php:67 -msgid "Exclude the following file types from encryption" -msgstr "הוצא את סוגי הקבצים הבאים מהצפנה" +#: templates/settings-personal.php:7 +msgid "File encryption is enabled." +msgstr "" -#: templates/settings.php:71 +#: templates/settings-personal.php:11 +msgid "The following file types will not be encrypted:" +msgstr "" + +#: templates/settings.php:7 +msgid "Exclude the following file types from encryption:" +msgstr "" + +#: templates/settings.php:12 msgid "None" msgstr "כלום" diff --git a/l10n/he/files_trashbin.po b/l10n/he/files_trashbin.po index e2f9372e88..cd56509235 100644 --- a/l10n/he/files_trashbin.po +++ b/l10n/he/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ msgstr "" "Language: he\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "שם" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "תיקייה אחת" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} תיקיות" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "קובץ אחד" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} קבצים" diff --git a/l10n/he/settings.po b/l10n/he/settings.po index cceb07b9d1..018aebd9f6 100644 --- a/l10n/he/settings.po +++ b/l10n/he/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -25,6 +25,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "לא ניתן לטעון רשימה מה־App Store" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "שגיאת הזדהות" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "הקבוצה כבר קיימת" @@ -49,10 +58,6 @@ msgstr "דוא״ל לא חוקי" msgid "Unable to delete group" msgstr "לא ניתן למחוק את הקבוצה" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "שגיאת הזדהות" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "לא ניתן למחוק את המשתמש" @@ -115,7 +120,7 @@ msgstr "שגיאה" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "שומר.." @@ -192,67 +197,83 @@ msgstr "הורד תוכנה לאנדרואיד" msgid "Download iOS Client" msgstr "הורד תוכנה לiOS" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "ססמה" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "הססמה שלך הוחלפה" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "לא ניתן לשנות את הססמה שלך" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "ססמה נוכחית" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "ססמה חדשה" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "הצגה" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "שינוי ססמה" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "דוא״ל" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "כתובת הדוא״ל שלך" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "נא למלא את כתובת הדוא״ל שלך כדי לאפשר שחזור ססמה" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "פה" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "עזרה בתרגום" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "השתמש בכתובת זאת על מנת להתחבר אל ownCloud דרך סייר קבצים." -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "גרסא" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -157,59 +157,59 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:280 templates/layout.user.php:47 templates/layout.user.php:48 +#: js/js.js:280 msgid "Settings" msgstr "" -#: js/js.js:762 +#: js/js.js:760 msgid "seconds ago" msgstr "" -#: js/js.js:763 +#: js/js.js:761 msgid "1 minute ago" msgstr "" -#: js/js.js:764 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:765 +#: js/js.js:763 msgid "1 hour ago" msgstr "" -#: js/js.js:766 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "" -#: js/js.js:767 +#: js/js.js:765 msgid "today" msgstr "" -#: js/js.js:768 +#: js/js.js:766 msgid "yesterday" msgstr "" -#: js/js.js:769 +#: js/js.js:767 msgid "{days} days ago" msgstr "" -#: js/js.js:770 +#: js/js.js:768 msgid "last month" msgstr "" -#: js/js.js:771 +#: js/js.js:769 msgid "{months} months ago" msgstr "" -#: js/js.js:772 +#: js/js.js:770 msgid "months ago" msgstr "" -#: js/js.js:773 +#: js/js.js:771 msgid "last year" msgstr "" -#: js/js.js:774 +#: js/js.js:772 msgid "years ago" msgstr "" @@ -542,7 +542,7 @@ msgstr "सेटअप समाप्त करे" msgid "web services under your control" msgstr "" -#: templates/layout.user.php:32 +#: templates/layout.user.php:49 msgid "Log out" msgstr "" @@ -564,14 +564,18 @@ msgstr "" msgid "Lost your password?" msgstr "" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "पिछला" diff --git a/l10n/hi/files.po b/l10n/hi/files.po index c56da3dc54..e0189f4da4 100644 --- a/l10n/hi/files.po +++ b/l10n/hi/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-31 17:02+0100\n" -"PO-Revision-Date: 2013-01-31 16:02+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -17,46 +17,46 @@ msgstr "" "Language: hi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -68,11 +68,15 @@ msgstr "" msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "" @@ -177,31 +181,31 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "" diff --git a/l10n/hi/files_encryption.po b/l10n/hi/files_encryption.po index 83154bdbcb..82eea01a3f 100644 --- a/l10n/hi/files_encryption.po +++ b/l10n/hi/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-23 00:05+0100\n" -"PO-Revision-Date: 2013-01-22 23:05+0000\n" +"POT-Creation-Date: 2013-02-06 00:05+0100\n" +"PO-Revision-Date: 2013-02-05 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -39,44 +39,22 @@ msgstr "" msgid "Could not change your file encryption password to your login password" msgstr "" -#: templates/settings-personal.php:3 templates/settings.php:5 -msgid "Choose encryption mode:" -msgstr "" - -#: templates/settings-personal.php:20 templates/settings.php:24 -msgid "" -"Client side encryption (most secure but makes it impossible to access your " -"data from the web interface)" -msgstr "" - -#: templates/settings-personal.php:30 templates/settings.php:36 -msgid "" -"Server side encryption (allows you to access your files from the web " -"interface and the desktop client)" -msgstr "" - -#: templates/settings-personal.php:41 templates/settings.php:60 -msgid "None (no encryption at all)" -msgstr "" - -#: templates/settings.php:10 -msgid "" -"Important: Once you selected an encryption mode there is no way to change it" -" back" -msgstr "" - -#: templates/settings.php:48 -msgid "User specific (let the user decide)" -msgstr "" - -#: templates/settings.php:65 +#: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" msgstr "" -#: templates/settings.php:67 -msgid "Exclude the following file types from encryption" +#: templates/settings-personal.php:7 +msgid "File encryption is enabled." msgstr "" -#: templates/settings.php:71 +#: templates/settings-personal.php:11 +msgid "The following file types will not be encrypted:" +msgstr "" + +#: templates/settings.php:7 +msgid "Exclude the following file types from encryption:" +msgstr "" + +#: templates/settings.php:12 msgid "None" msgstr "" diff --git a/l10n/hi/files_trashbin.po b/l10n/hi/files_trashbin.po index ecec4c0cae..fad204d073 100644 --- a/l10n/hi/files_trashbin.po +++ b/l10n/hi/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ msgstr "" "Language: hi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "" diff --git a/l10n/hi/settings.po b/l10n/hi/settings.po index 58343582a2..b0e88f95c9 100644 --- a/l10n/hi/settings.po +++ b/l10n/hi/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -21,6 +21,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "" @@ -45,10 +54,6 @@ msgstr "" msgid "Unable to delete group" msgstr "" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "" @@ -111,7 +116,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "" @@ -188,67 +193,83 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "पासवर्ड" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "नया पासवर्ड" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -163,55 +163,55 @@ msgstr "Prosinac" msgid "Settings" msgstr "Postavke" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "sekundi prije" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "danas" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "jučer" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "prošli mjesec" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "mjeseci" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "prošlu godinu" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "godina" @@ -566,14 +566,18 @@ msgstr "" msgid "Lost your password?" msgstr "Izgubili ste lozinku?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "zapamtiti" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Prijava" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "prethodan" diff --git a/l10n/hr/files.po b/l10n/hr/files.po index 7a03f6b197..d7b7d81a29 100644 --- a/l10n/hr/files.po +++ b/l10n/hr/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:30+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -20,46 +20,46 @@ msgstr "" "Language: hr\n" "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;\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Datoteka je poslana uspješno i bez pogrešaka" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Poslana datoteka izlazi iz okvira MAX_FILE_SIZE direktive postavljene u HTML obrascu" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Datoteka je poslana samo djelomično" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Ni jedna datoteka nije poslana" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Nedostaje privremena mapa" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Neuspjelo pisanje na disk" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -71,11 +71,15 @@ msgstr "Datoteke" msgid "Unshare" msgstr "Prekini djeljenje" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Briši" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Promjeni ime" @@ -180,31 +184,31 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Naziv" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Veličina" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Zadnja promjena" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "" diff --git a/l10n/hr/files_encryption.po b/l10n/hr/files_encryption.po index d284b96247..9b86d0ed1f 100644 --- a/l10n/hr/files_encryption.po +++ b/l10n/hr/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-23 00:05+0100\n" -"PO-Revision-Date: 2013-01-22 23:05+0000\n" +"POT-Creation-Date: 2013-02-06 00:05+0100\n" +"PO-Revision-Date: 2013-02-05 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -39,44 +39,22 @@ msgstr "" msgid "Could not change your file encryption password to your login password" msgstr "" -#: templates/settings-personal.php:3 templates/settings.php:5 -msgid "Choose encryption mode:" -msgstr "" - -#: templates/settings-personal.php:20 templates/settings.php:24 -msgid "" -"Client side encryption (most secure but makes it impossible to access your " -"data from the web interface)" -msgstr "" - -#: templates/settings-personal.php:30 templates/settings.php:36 -msgid "" -"Server side encryption (allows you to access your files from the web " -"interface and the desktop client)" -msgstr "" - -#: templates/settings-personal.php:41 templates/settings.php:60 -msgid "None (no encryption at all)" -msgstr "" - -#: templates/settings.php:10 -msgid "" -"Important: Once you selected an encryption mode there is no way to change it" -" back" -msgstr "" - -#: templates/settings.php:48 -msgid "User specific (let the user decide)" -msgstr "" - -#: templates/settings.php:65 +#: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" msgstr "" -#: templates/settings.php:67 -msgid "Exclude the following file types from encryption" +#: templates/settings-personal.php:7 +msgid "File encryption is enabled." msgstr "" -#: templates/settings.php:71 +#: templates/settings-personal.php:11 +msgid "The following file types will not be encrypted:" +msgstr "" + +#: templates/settings.php:7 +msgid "Exclude the following file types from encryption:" +msgstr "" + +#: templates/settings.php:12 msgid "None" msgstr "" diff --git a/l10n/hr/files_trashbin.po b/l10n/hr/files_trashbin.po index 0665783c04..6a7bfdabab 100644 --- a/l10n/hr/files_trashbin.po +++ b/l10n/hr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ msgstr "" "Language: hr\n" "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;\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Ime" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "" diff --git a/l10n/hr/settings.po b/l10n/hr/settings.po index af697fb781..062d280811 100644 --- a/l10n/hr/settings.po +++ b/l10n/hr/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -24,6 +24,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Nemogićnost učitavanja liste sa Apps Stora" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Greška kod autorizacije" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "" @@ -48,10 +57,6 @@ msgstr "Neispravan email" msgid "Unable to delete group" msgstr "" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Greška kod autorizacije" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "" @@ -114,7 +119,7 @@ msgstr "Greška" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Spremanje..." @@ -191,67 +196,83 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Lozinka" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Nemoguće promijeniti lozinku" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Trenutna lozinka" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Nova lozinka" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "prikaz" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Izmjena lozinke" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "e-mail adresa" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Vaša e-mail adresa" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Ispunite vase e-mail adresa kako bi se omogućilo oporavak lozinke" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Jezik" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Pomoć prevesti" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -164,55 +164,55 @@ msgstr "december" msgid "Settings" msgstr "Beállítások" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "pár másodperce" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "1 perce" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "{minutes} perce" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "1 órája" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "{hours} órája" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "ma" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "tegnap" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "{days} napja" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "múlt hónapban" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "{months} hónapja" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "több hónapja" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "tavaly" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "több éve" @@ -567,14 +567,18 @@ msgstr "A biztonsága érdekében változtassa meg a jelszavát!" msgid "Lost your password?" msgstr "Elfelejtette a jelszavát?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "emlékezzen" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Bejelentkezés" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "előző" diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index 595e4cd821..bc65aedf64 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/files.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -24,46 +24,46 @@ msgstr "" "Language: hu_HU\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Nem történt feltöltés. Ismeretlen hiba" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "A fájlt sikerült feltölteni" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "A feltöltött fájl mérete meghaladja a php.ini állományban megadott upload_max_filesize paraméter értékét." -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "A feltöltött fájl mérete meghaladja a MAX_FILE_SIZE paramétert, ami a HTML formban került megadásra." -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Az eredeti fájlt csak részben sikerült feltölteni." -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Nem töltődött fel semmi" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Hiányzik egy ideiglenes mappa" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Nem sikerült a lemezre történő írás" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "Nincs elég szabad hely" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Érvénytelen mappa." @@ -75,11 +75,15 @@ msgstr "Fájlok" msgid "Unshare" msgstr "Megosztás visszavonása" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Törlés" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Átnevezés" @@ -184,31 +188,31 @@ msgstr "Az URL nem lehet semmi." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Érvénytelen mappanév. A név használata csak a Owncloud számára lehetséges." -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Név" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Méret" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Módosítva" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 mappa" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} mappa" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 fájl" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} fájl" diff --git a/l10n/hu_HU/files_encryption.po b/l10n/hu_HU/files_encryption.po index 1a15c06b6f..0409118f14 100644 --- a/l10n/hu_HU/files_encryption.po +++ b/l10n/hu_HU/files_encryption.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-29 00:04+0100\n" -"PO-Revision-Date: 2013-01-28 11:15+0000\n" -"Last-Translator: akoscomp \n" +"POT-Creation-Date: 2013-02-06 00:05+0100\n" +"PO-Revision-Date: 2013-02-05 23:05+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -42,44 +42,22 @@ msgstr "Kérjük, ellenőrizze a jelszavait, és próbálja meg újra." msgid "Could not change your file encryption password to your login password" msgstr "Nem módosíthatja a fájltitkosítási jelszavát a bejelentkezési jelszavára" -#: templates/settings-personal.php:3 templates/settings.php:5 -msgid "Choose encryption mode:" -msgstr "Válassza ki a titkosítási módot:" - -#: templates/settings-personal.php:20 templates/settings.php:24 -msgid "" -"Client side encryption (most secure but makes it impossible to access your " -"data from the web interface)" -msgstr "Kliens oldali titkosítás (biztonságosabb, de lehetetlenné teszi a fájlok elérését a böngészőből)" - -#: templates/settings-personal.php:30 templates/settings.php:36 -msgid "" -"Server side encryption (allows you to access your files from the web " -"interface and the desktop client)" -msgstr "Kiszolgáló oldali titkosítás (lehetővé teszi a fájlok elérését úgy böngészőből mint az asztali kliensből)" - -#: templates/settings-personal.php:41 templates/settings.php:60 -msgid "None (no encryption at all)" -msgstr "Semmi (semmilyen titkosítás)" - -#: templates/settings.php:10 -msgid "" -"Important: Once you selected an encryption mode there is no way to change it" -" back" -msgstr "Fontos: Ha egyszer kiválasztotta a titkosítás módját, többé már nem lehet megváltoztatni" - -#: templates/settings.php:48 -msgid "User specific (let the user decide)" -msgstr "Felhasználó specifikus (a felhasználó választhat)" - -#: templates/settings.php:65 +#: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" msgstr "Titkosítás" -#: templates/settings.php:67 -msgid "Exclude the following file types from encryption" -msgstr "A következő fájltípusok kizárása a titkosításból" +#: templates/settings-personal.php:7 +msgid "File encryption is enabled." +msgstr "" -#: templates/settings.php:71 +#: templates/settings-personal.php:11 +msgid "The following file types will not be encrypted:" +msgstr "" + +#: templates/settings.php:7 +msgid "Exclude the following file types from encryption:" +msgstr "" + +#: templates/settings.php:12 msgid "None" msgstr "Egyik sem" diff --git a/l10n/hu_HU/files_trashbin.po b/l10n/hu_HU/files_trashbin.po index 5cabef3a63..ed96fa7cee 100644 --- a/l10n/hu_HU/files_trashbin.po +++ b/l10n/hu_HU/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ msgstr "" "Language: hu_HU\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Név" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 mappa" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} mappa" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 fájl" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} fájl" diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po index 4be00602dd..d544d5d95b 100644 --- a/l10n/hu_HU/settings.po +++ b/l10n/hu_HU/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -24,6 +24,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Nem tölthető le a lista az App Store-ból" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Azonosítási hiba" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "A csoport már létezik" @@ -48,10 +57,6 @@ msgstr "Hibás email" msgid "Unable to delete group" msgstr "A csoport nem törölhető" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Azonosítási hiba" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "A felhasználó nem törölhető" @@ -114,7 +119,7 @@ msgstr "Hiba" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Mentés..." @@ -191,67 +196,83 @@ msgstr "Android kliens letöltése" msgid "Download iOS Client" msgstr "iOS kliens letöltése" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Jelszó" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "A jelszava megváltozott" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "A jelszó nem változtatható meg" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "A jelenlegi jelszó" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Az új jelszó" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "lássam" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "A jelszó megváltoztatása" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "Email" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Az Ön email címe" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Adja meg az email címét, hogy jelszó-emlékeztetőt kérhessen, ha elfelejtette a jelszavát!" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Nyelv" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Segítsen a fordításban!" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Ennek a címnek a megadásával a WebDAV-protokollon keresztül saját gépének fájlkezelőjével is is elérheti az állományait." -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "Verzió" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -156,59 +156,59 @@ msgstr "Novembre" msgid "December" msgstr "Decembre" -#: js/js.js:280 templates/layout.user.php:47 templates/layout.user.php:48 +#: js/js.js:280 msgid "Settings" msgstr "Configurationes" -#: js/js.js:762 +#: js/js.js:760 msgid "seconds ago" msgstr "" -#: js/js.js:763 +#: js/js.js:761 msgid "1 minute ago" msgstr "" -#: js/js.js:764 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:765 +#: js/js.js:763 msgid "1 hour ago" msgstr "" -#: js/js.js:766 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "" -#: js/js.js:767 +#: js/js.js:765 msgid "today" msgstr "" -#: js/js.js:768 +#: js/js.js:766 msgid "yesterday" msgstr "" -#: js/js.js:769 +#: js/js.js:767 msgid "{days} days ago" msgstr "" -#: js/js.js:770 +#: js/js.js:768 msgid "last month" msgstr "" -#: js/js.js:771 +#: js/js.js:769 msgid "{months} months ago" msgstr "" -#: js/js.js:772 +#: js/js.js:770 msgid "months ago" msgstr "" -#: js/js.js:773 +#: js/js.js:771 msgid "last year" msgstr "" -#: js/js.js:774 +#: js/js.js:772 msgid "years ago" msgstr "" @@ -541,7 +541,7 @@ msgstr "" msgid "web services under your control" msgstr "servicios web sub tu controlo" -#: templates/layout.user.php:32 +#: templates/layout.user.php:49 msgid "Log out" msgstr "Clauder le session" @@ -563,14 +563,18 @@ msgstr "" msgid "Lost your password?" msgstr "Tu perdeva le contrasigno?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "memora" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Aperir session" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "prev" diff --git a/l10n/ia/files.po b/l10n/ia/files.po index 43dd321da0..8a63e7c909 100644 --- a/l10n/ia/files.po +++ b/l10n/ia/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:30+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -19,46 +19,46 @@ msgstr "" "Language: ia\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Le file incargate solmente esseva incargate partialmente" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Nulle file esseva incargate" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Manca un dossier temporari" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -70,11 +70,15 @@ msgstr "Files" msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Deler" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "" @@ -179,31 +183,31 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Nomine" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Dimension" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Modificate" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "" diff --git a/l10n/ia/files_encryption.po b/l10n/ia/files_encryption.po index bd7a38a6b1..e9ea289fb9 100644 --- a/l10n/ia/files_encryption.po +++ b/l10n/ia/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-23 00:05+0100\n" -"PO-Revision-Date: 2013-01-22 23:05+0000\n" +"POT-Creation-Date: 2013-02-06 00:05+0100\n" +"PO-Revision-Date: 2013-02-05 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -39,44 +39,22 @@ msgstr "" msgid "Could not change your file encryption password to your login password" msgstr "" -#: templates/settings-personal.php:3 templates/settings.php:5 -msgid "Choose encryption mode:" -msgstr "" - -#: templates/settings-personal.php:20 templates/settings.php:24 -msgid "" -"Client side encryption (most secure but makes it impossible to access your " -"data from the web interface)" -msgstr "" - -#: templates/settings-personal.php:30 templates/settings.php:36 -msgid "" -"Server side encryption (allows you to access your files from the web " -"interface and the desktop client)" -msgstr "" - -#: templates/settings-personal.php:41 templates/settings.php:60 -msgid "None (no encryption at all)" -msgstr "" - -#: templates/settings.php:10 -msgid "" -"Important: Once you selected an encryption mode there is no way to change it" -" back" -msgstr "" - -#: templates/settings.php:48 -msgid "User specific (let the user decide)" -msgstr "" - -#: templates/settings.php:65 +#: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" msgstr "" -#: templates/settings.php:67 -msgid "Exclude the following file types from encryption" +#: templates/settings-personal.php:7 +msgid "File encryption is enabled." msgstr "" -#: templates/settings.php:71 +#: templates/settings-personal.php:11 +msgid "The following file types will not be encrypted:" +msgstr "" + +#: templates/settings.php:7 +msgid "Exclude the following file types from encryption:" +msgstr "" + +#: templates/settings.php:12 msgid "None" msgstr "" diff --git a/l10n/ia/files_trashbin.po b/l10n/ia/files_trashbin.po index 3d86f721da..9256a728ff 100644 --- a/l10n/ia/files_trashbin.po +++ b/l10n/ia/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ msgstr "" "Language: ia\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Nomine" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "" diff --git a/l10n/ia/settings.po b/l10n/ia/settings.po index f465615a98..47c4885728 100644 --- a/l10n/ia/settings.po +++ b/l10n/ia/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -23,6 +23,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "" @@ -47,10 +56,6 @@ msgstr "" msgid "Unable to delete group" msgstr "" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "" @@ -113,7 +118,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "" @@ -190,67 +195,83 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Contrasigno" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Non pote cambiar tu contrasigno" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Contrasigno currente" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Nove contrasigno" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "monstrar" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Cambiar contrasigno" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "E-posta" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Tu adresse de e-posta" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Linguage" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Adjuta a traducer" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -163,55 +163,55 @@ msgstr "Desember" msgid "Settings" msgstr "Setelan" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "beberapa detik yang lalu" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "1 menit lalu" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "hari ini" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "kemarin" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "bulan kemarin" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "beberapa bulan lalu" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "tahun kemarin" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "beberapa tahun lalu" @@ -566,14 +566,18 @@ msgstr "mohon ubah kata kunci untuk mengamankan akun anda" msgid "Lost your password?" msgstr "Lupa password anda?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "selalu login" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Masuk" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "sebelum" diff --git a/l10n/id/files.po b/l10n/id/files.po index 67a86d94ba..7275ccf2ed 100644 --- a/l10n/id/files.po +++ b/l10n/id/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -20,46 +20,46 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Tidak ada galat, berkas sukses diunggah" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "File yang diunggah melampaui directive MAX_FILE_SIZE yang disebutan dalam form HTML." -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Berkas hanya diunggah sebagian" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Tidak ada berkas yang diunggah" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Kehilangan folder temporer" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Gagal menulis ke disk" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -71,11 +71,15 @@ msgstr "Berkas" msgid "Unshare" msgstr "batalkan berbagi" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Hapus" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "" @@ -180,31 +184,31 @@ msgstr "tautan tidak boleh kosong" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Nama" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Ukuran" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Dimodifikasi" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "" diff --git a/l10n/id/files_encryption.po b/l10n/id/files_encryption.po index d6d66e61e0..88fc1f30a5 100644 --- a/l10n/id/files_encryption.po +++ b/l10n/id/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-23 00:05+0100\n" -"PO-Revision-Date: 2013-01-22 23:05+0000\n" +"POT-Creation-Date: 2013-02-06 00:05+0100\n" +"PO-Revision-Date: 2013-02-05 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -40,44 +40,22 @@ msgstr "" msgid "Could not change your file encryption password to your login password" msgstr "" -#: templates/settings-personal.php:3 templates/settings.php:5 -msgid "Choose encryption mode:" -msgstr "" - -#: templates/settings-personal.php:20 templates/settings.php:24 -msgid "" -"Client side encryption (most secure but makes it impossible to access your " -"data from the web interface)" -msgstr "" - -#: templates/settings-personal.php:30 templates/settings.php:36 -msgid "" -"Server side encryption (allows you to access your files from the web " -"interface and the desktop client)" -msgstr "" - -#: templates/settings-personal.php:41 templates/settings.php:60 -msgid "None (no encryption at all)" -msgstr "" - -#: templates/settings.php:10 -msgid "" -"Important: Once you selected an encryption mode there is no way to change it" -" back" -msgstr "" - -#: templates/settings.php:48 -msgid "User specific (let the user decide)" -msgstr "" - -#: templates/settings.php:65 +#: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" msgstr "enkripsi" -#: templates/settings.php:67 -msgid "Exclude the following file types from encryption" -msgstr "pengecualian untuk tipe file berikut dari enkripsi" +#: templates/settings-personal.php:7 +msgid "File encryption is enabled." +msgstr "" -#: templates/settings.php:71 +#: templates/settings-personal.php:11 +msgid "The following file types will not be encrypted:" +msgstr "" + +#: templates/settings.php:7 +msgid "Exclude the following file types from encryption:" +msgstr "" + +#: templates/settings.php:12 msgid "None" msgstr "tidak ada" diff --git a/l10n/id/files_trashbin.po b/l10n/id/files_trashbin.po index 29afd3eefd..074b7145fc 100644 --- a/l10n/id/files_trashbin.po +++ b/l10n/id/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "nama" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "" diff --git a/l10n/id/settings.po b/l10n/id/settings.po index 92aab7dfbf..2787995bd7 100644 --- a/l10n/id/settings.po +++ b/l10n/id/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -25,6 +25,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "autentikasi bermasalah" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "" @@ -49,10 +58,6 @@ msgstr "Email tidak sah" msgid "Unable to delete group" msgstr "" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "autentikasi bermasalah" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "" @@ -115,7 +120,7 @@ msgstr "kesalahan" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Menyimpan..." @@ -192,67 +197,83 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Password" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Tidak dapat merubah password anda" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Password saat ini" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "kata kunci baru" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "perlihatkan" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Rubah password" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "Email" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Alamat email anda" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Masukkan alamat email untuk mengaktifkan pemulihan password" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Bahasa" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Bantu menerjemahkan" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -161,55 +161,55 @@ msgstr "Desember" msgid "Settings" msgstr "Stillingar" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "sek síðan" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "1 min síðan" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "{minutes} min síðan" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "Fyrir 1 klst." -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "fyrir {hours} klst." -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "í dag" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "í gær" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "{days} dagar síðan" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "síðasta mánuði" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "fyrir {months} mánuðum" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "mánuðir síðan" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "síðasta ári" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "árum síðan" @@ -564,14 +564,18 @@ msgstr "Vinsamlegast breyttu lykilorðinu þínu til að tryggja öryggi þitt." msgid "Lost your password?" msgstr "Týndir þú lykilorðinu?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "muna eftir mér" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Skrá inn" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "fyrra" diff --git a/l10n/is/files.po b/l10n/is/files.po index f2e66b0464..7e071bbb5d 100644 --- a/l10n/is/files.po +++ b/l10n/is/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -18,46 +18,46 @@ msgstr "" "Language: is\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Engin skrá var send inn. Óþekkt villa." -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Engin villa, innsending heppnaðist" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Innsend skrá er stærri en upload_max stillingin í php.ini:" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Innsenda skráin er stærri en MAX_FILE_SIZE sem skilgreint er í HTML sniðinu." -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Einungis hluti af innsendri skrá skilaði sér" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Engin skrá skilaði sér" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Vantar bráðabirgðamöppu" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Tókst ekki að skrifa á disk" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "Ekki nægt pláss tiltækt" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Ógild mappa." @@ -69,11 +69,15 @@ msgstr "Skrár" msgid "Unshare" msgstr "Hætta deilingu" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Eyða" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Endurskýra" @@ -178,31 +182,31 @@ msgstr "Vefslóð má ekki vera tóm." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Óleyfilegt nafn á möppu. Nafnið 'Shared' er frátekið fyrir Owncloud" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Nafn" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Stærð" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Breytt" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 mappa" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} möppur" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 skrá" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} skrár" diff --git a/l10n/is/files_encryption.po b/l10n/is/files_encryption.po index b46b5ff3c1..4d128e6b4f 100644 --- a/l10n/is/files_encryption.po +++ b/l10n/is/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-23 00:05+0100\n" -"PO-Revision-Date: 2013-01-22 23:05+0000\n" +"POT-Creation-Date: 2013-02-06 00:05+0100\n" +"PO-Revision-Date: 2013-02-05 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -40,44 +40,22 @@ msgstr "" msgid "Could not change your file encryption password to your login password" msgstr "" -#: templates/settings-personal.php:3 templates/settings.php:5 -msgid "Choose encryption mode:" -msgstr "" - -#: templates/settings-personal.php:20 templates/settings.php:24 -msgid "" -"Client side encryption (most secure but makes it impossible to access your " -"data from the web interface)" -msgstr "" - -#: templates/settings-personal.php:30 templates/settings.php:36 -msgid "" -"Server side encryption (allows you to access your files from the web " -"interface and the desktop client)" -msgstr "" - -#: templates/settings-personal.php:41 templates/settings.php:60 -msgid "None (no encryption at all)" -msgstr "" - -#: templates/settings.php:10 -msgid "" -"Important: Once you selected an encryption mode there is no way to change it" -" back" -msgstr "" - -#: templates/settings.php:48 -msgid "User specific (let the user decide)" -msgstr "" - -#: templates/settings.php:65 +#: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" msgstr "Dulkóðun" -#: templates/settings.php:67 -msgid "Exclude the following file types from encryption" -msgstr "Undanskilja eftirfarandi skráartegundir frá dulkóðun" +#: templates/settings-personal.php:7 +msgid "File encryption is enabled." +msgstr "" -#: templates/settings.php:71 +#: templates/settings-personal.php:11 +msgid "The following file types will not be encrypted:" +msgstr "" + +#: templates/settings.php:7 +msgid "Exclude the following file types from encryption:" +msgstr "" + +#: templates/settings.php:12 msgid "None" msgstr "Ekkert" diff --git a/l10n/is/files_trashbin.po b/l10n/is/files_trashbin.po index 1fc4aad571..a738a0a24a 100644 --- a/l10n/is/files_trashbin.po +++ b/l10n/is/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ msgstr "" "Language: is\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Nafn" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 mappa" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} möppur" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 skrá" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} skrár" diff --git a/l10n/is/settings.po b/l10n/is/settings.po index 07750ab9e7..fea2c37878 100644 --- a/l10n/is/settings.po +++ b/l10n/is/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -22,6 +22,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Ekki tókst að hlaða lista frá forrita síðu" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Villa við auðkenningu" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "Hópur er þegar til" @@ -46,10 +55,6 @@ msgstr "Ógilt netfang" msgid "Unable to delete group" msgstr "Ekki tókst að eyða hóp" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Villa við auðkenningu" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "Ekki tókst að eyða notenda" @@ -112,7 +117,7 @@ msgstr "Villa" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Er að vista ..." @@ -189,67 +194,83 @@ msgstr "Hlaða niður Andoid hugbúnaði" msgid "Download iOS Client" msgstr "Hlaða niður iOS hugbúnaði" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Lykilorð" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "Lykilorði þínu hefur verið breytt" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Ekki tókst að breyta lykilorðinu þínu" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Núverandi lykilorð" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Nýtt lykilorð" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "sýna" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Breyta lykilorði" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "Netfang" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Netfangið þitt" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Sláðu inn netfangið þitt til að virkja endurheimt á lykilorði" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Tungumál" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Hjálpa við þýðingu" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Notaðu þessa vefslóð til að tengjast ownCloud svæðinu þínu" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "Útgáfa" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:07+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -165,55 +165,55 @@ msgstr "Dicembre" msgid "Settings" msgstr "Impostazioni" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "secondi fa" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "Un minuto fa" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "{minutes} minuti fa" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "1 ora fa" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "{hours} ore fa" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "oggi" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "ieri" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "{days} giorni fa" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "mese scorso" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "{months} mesi fa" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "mesi fa" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "anno scorso" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "anni fa" @@ -568,14 +568,18 @@ msgstr "Cambia la password per rendere nuovamente sicuro il tuo account." msgid "Lost your password?" msgstr "Hai perso la password?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "ricorda" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Accedi" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "precedente" diff --git a/l10n/it/files.po b/l10n/it/files.po index 13d26fc18f..e419f624cc 100644 --- a/l10n/it/files.po +++ b/l10n/it/files.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,46 +21,46 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Nessun file è stato inviato. Errore sconosciuto" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Non ci sono errori, file caricato con successo" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Il file caricato supera la direttiva upload_max_filesize in php.ini:" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Il file caricato supera il valore MAX_FILE_SIZE definito nel form HTML" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Il file è stato parzialmente caricato" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Nessun file è stato caricato" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Cartella temporanea mancante" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Scrittura su disco non riuscita" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "Spazio disponibile insufficiente" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Cartella non valida." @@ -72,11 +72,15 @@ msgstr "File" msgid "Unshare" msgstr "Rimuovi condivisione" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Elimina" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Rinomina" @@ -181,31 +185,31 @@ msgstr "L'URL non può essere vuoto." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nome della cartella non valido. L'uso di 'Shared' è riservato da ownCloud" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Nome" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Dimensione" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Modificato" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 cartella" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} cartelle" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 file" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} file" diff --git a/l10n/it/files_encryption.po b/l10n/it/files_encryption.po index 544caf9fd7..843b2a267d 100644 --- a/l10n/it/files_encryption.po +++ b/l10n/it/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-28 00:04+0100\n" -"PO-Revision-Date: 2013-01-27 19:44+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-05 23:20+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -40,44 +40,22 @@ msgstr "Controlla la password e prova ancora." msgid "Could not change your file encryption password to your login password" msgstr "Impossibile convertire la password di cifratura nella password di accesso" -#: templates/settings-personal.php:3 templates/settings.php:5 -msgid "Choose encryption mode:" -msgstr "Scegli la modalità di cifratura." - -#: templates/settings-personal.php:20 templates/settings.php:24 -msgid "" -"Client side encryption (most secure but makes it impossible to access your " -"data from the web interface)" -msgstr "Cifratura lato client (più sicura ma rende impossibile accedere ai propri dati dall'interfaccia web)" - -#: templates/settings-personal.php:30 templates/settings.php:36 -msgid "" -"Server side encryption (allows you to access your files from the web " -"interface and the desktop client)" -msgstr "Cifratura lato server (ti consente di accedere ai tuoi file dall'interfaccia web e dal client desktop)" - -#: templates/settings-personal.php:41 templates/settings.php:60 -msgid "None (no encryption at all)" -msgstr "Nessuna (senza alcuna cifratura)" - -#: templates/settings.php:10 -msgid "" -"Important: Once you selected an encryption mode there is no way to change it" -" back" -msgstr "Importante: una volta selezionata la modalità di cifratura non sarà possibile tornare indietro" - -#: templates/settings.php:48 -msgid "User specific (let the user decide)" -msgstr "Specificato dall'utente (lascia decidere all'utente)" - -#: templates/settings.php:65 +#: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" msgstr "Cifratura" -#: templates/settings.php:67 -msgid "Exclude the following file types from encryption" -msgstr "Escludi i seguenti tipi di file dalla cifratura" +#: templates/settings-personal.php:7 +msgid "File encryption is enabled." +msgstr "La cifratura dei file è abilitata." -#: templates/settings.php:71 +#: templates/settings-personal.php:11 +msgid "The following file types will not be encrypted:" +msgstr "I seguenti tipi di file non saranno cifrati:" + +#: templates/settings.php:7 +msgid "Exclude the following file types from encryption:" +msgstr "Escludi i seguenti tipi di file dalla cifratura:" + +#: templates/settings.php:12 msgid "None" msgstr "Nessuna" diff --git a/l10n/it/files_trashbin.po b/l10n/it/files_trashbin.po index 8efe697487..8e3a6451a8 100644 --- a/l10n/it/files_trashbin.po +++ b/l10n/it/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -18,31 +18,35 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "esegui operazione di ripristino" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Nome" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "Eliminati" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 cartella" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} cartelle" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 file" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} file" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index dbb539c7bb..6b729305e4 100644 --- a/l10n/it/settings.po +++ b/l10n/it/settings.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-01 23:30+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,6 +28,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Impossibile caricare l'elenco dall'App Store" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Errore di autenticazione" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "Il gruppo esiste già" @@ -52,10 +61,6 @@ msgstr "Email non valida" msgid "Unable to delete group" msgstr "Impossibile eliminare il gruppo" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Errore di autenticazione" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "Impossibile eliminare l'utente" @@ -118,7 +123,7 @@ msgstr "Errore" msgid "Updated" msgstr "Aggiornato" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Salvataggio in corso..." @@ -195,67 +200,83 @@ msgstr "Scarica client Android" msgid "Download iOS Client" msgstr "Scarica client iOS" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Password" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "La tua password è cambiata" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Modifica password non riuscita" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Password attuale" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Nuova password" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "mostra" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Modifica password" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "Nome visualizzato" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "Email" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Il tuo indirizzo email" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Inserisci il tuo indirizzo email per abilitare il recupero della password" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Lingua" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Migliora la traduzione" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Usa questo indirizzo per connetterti al tuo ownCloud dal tuo gestore file" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "Versione" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" @@ -162,55 +162,55 @@ msgstr "12月" msgid "Settings" msgstr "設定" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "秒前" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "1 分前" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "{minutes} 分前" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "1 時間前" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "{hours} 時間前" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "今日" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "昨日" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "{days} 日前" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "一月前" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "{months} 月前" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "月前" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "一年前" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "年前" @@ -565,14 +565,18 @@ msgstr "アカウント保護の為、パスワードを再度の変更をお願 msgid "Lost your password?" msgstr "パスワードを忘れましたか?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "パスワードを記憶する" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "ログイン" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "前" diff --git a/l10n/ja_JP/files.po b/l10n/ja_JP/files.po index 97f0b6b3b7..cd42db946c 100644 --- a/l10n/ja_JP/files.po +++ b/l10n/ja_JP/files.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-04 00:04+0100\n" -"PO-Revision-Date: 2013-02-03 04:30+0000\n" -"Last-Translator: tt yn \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -73,11 +73,15 @@ msgstr "ファイル" msgid "Unshare" msgstr "共有しない" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "削除" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "名前の変更" @@ -182,31 +186,31 @@ msgstr "URLは空にできません。" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "無効なフォルダ名です。'Shared' の利用は ownCloud が予約済みです。" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "名前" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "サイズ" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "更新日時" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 フォルダ" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} フォルダ" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 ファイル" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} ファイル" diff --git a/l10n/ja_JP/files_encryption.po b/l10n/ja_JP/files_encryption.po index 2c42c90205..95a5230904 100644 --- a/l10n/ja_JP/files_encryption.po +++ b/l10n/ja_JP/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-24 00:06+0100\n" -"PO-Revision-Date: 2013-01-23 03:07+0000\n" -"Last-Translator: Daisuke Deguchi \n" +"POT-Creation-Date: 2013-02-06 00:05+0100\n" +"PO-Revision-Date: 2013-02-05 23:05+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -41,44 +41,22 @@ msgstr "パスワードを確認してもう一度行なってください。" msgid "Could not change your file encryption password to your login password" msgstr "ファイル暗号化パスワードをログインパスワードに変更できませんでした。" -#: templates/settings-personal.php:3 templates/settings.php:5 -msgid "Choose encryption mode:" -msgstr "暗号化モードを選択:" - -#: templates/settings-personal.php:20 templates/settings.php:24 -msgid "" -"Client side encryption (most secure but makes it impossible to access your " -"data from the web interface)" -msgstr "クライアントサイドの暗号化(最もセキュアですが、WEBインターフェースからデータにアクセスできなくなります)" - -#: templates/settings-personal.php:30 templates/settings.php:36 -msgid "" -"Server side encryption (allows you to access your files from the web " -"interface and the desktop client)" -msgstr "サーバサイド暗号化(WEBインターフェースおよびデスクトップクライアントからファイルにアクセスすることができます)" - -#: templates/settings-personal.php:41 templates/settings.php:60 -msgid "None (no encryption at all)" -msgstr "暗号化無し(何も暗号化しません)" - -#: templates/settings.php:10 -msgid "" -"Important: Once you selected an encryption mode there is no way to change it" -" back" -msgstr "重要: 一度暗号化を選択してしまうと、もとに戻す方法はありません" - -#: templates/settings.php:48 -msgid "User specific (let the user decide)" -msgstr "ユーザ指定(ユーザが選べるようにする)" - -#: templates/settings.php:65 +#: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" msgstr "暗号化" -#: templates/settings.php:67 -msgid "Exclude the following file types from encryption" -msgstr "暗号化から除外するファイルタイプ" +#: templates/settings-personal.php:7 +msgid "File encryption is enabled." +msgstr "" -#: templates/settings.php:71 +#: templates/settings-personal.php:11 +msgid "The following file types will not be encrypted:" +msgstr "" + +#: templates/settings.php:7 +msgid "Exclude the following file types from encryption:" +msgstr "" + +#: templates/settings.php:12 msgid "None" msgstr "なし" diff --git a/l10n/ja_JP/files_trashbin.po b/l10n/ja_JP/files_trashbin.po index fb4805b52d..f5fcfbe9a0 100644 --- a/l10n/ja_JP/files_trashbin.po +++ b/l10n/ja_JP/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" @@ -18,31 +18,35 @@ msgstr "" "Language: ja_JP\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "復元操作を実行する" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "名前" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "削除済み" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 フォルダ" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} フォルダ" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 ファイル" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} ファイル" diff --git a/l10n/ja_JP/settings.po b/l10n/ja_JP/settings.po index 80f56e5c65..1774eebf3f 100644 --- a/l10n/ja_JP/settings.po +++ b/l10n/ja_JP/settings.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-04 00:05+0100\n" -"PO-Revision-Date: 2013-02-03 04:30+0000\n" -"Last-Translator: tt yn \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,6 +26,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "アプリストアからリストをロードできません" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "認証エラー" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "グループは既に存在しています" @@ -50,10 +59,6 @@ msgstr "無効なメールアドレス" msgid "Unable to delete group" msgstr "グループを削除できません" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "認証エラー" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "ユーザを削除できません" @@ -116,7 +121,7 @@ msgstr "エラー" msgid "Updated" msgstr "更新済み" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "保存中..." @@ -193,67 +198,83 @@ msgstr "Androidクライアントをダウンロード" msgid "Download iOS Client" msgstr "iOSクライアントをダウンロード" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "パスワード" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "パスワードを変更しました" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "パスワードを変更することができません" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "現在のパスワード" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "新しいパスワード" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "表示" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "パスワードを変更" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "表示名" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "Email" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "あなたのメールアドレス" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "※パスワード回復を有効にするにはメールアドレスの入力が必要です" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "言語" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "翻訳に協力する" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "ファイルマネージャでownCloudに接続する際はこのアドレスを利用してください" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "バージョン" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -160,55 +160,55 @@ msgstr "დეკემბერი" msgid "Settings" msgstr "პარამეტრები" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "წამის წინ" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "1 წუთის წინ" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "{minutes} წუთის წინ" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "დღეს" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "გუშინ" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "{days} დღის წინ" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "გასულ თვეში" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "თვის წინ" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "ბოლო წელს" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "წლის წინ" @@ -563,14 +563,18 @@ msgstr "" msgid "Lost your password?" msgstr "დაგავიწყდათ პაროლი?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "დამახსოვრება" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "შესვლა" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "წინა" diff --git a/l10n/ka_GE/files.po b/l10n/ka_GE/files.po index 1866d1f711..828806cc05 100644 --- a/l10n/ka_GE/files.po +++ b/l10n/ka_GE/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -18,46 +18,46 @@ msgstr "" "Language: ka_GE\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "ჭოცდომა არ დაფიქსირდა, ფაილი წარმატებით აიტვირთა" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "ატვირთული ფაილი აჭარბებს MAX_FILE_SIZE დირექტივას, რომელიც მითითებულია HTML ფორმაში" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "ატვირთული ფაილი მხოლოდ ნაწილობრივ აიტვირთა" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "ფაილი არ აიტვირთა" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "დროებითი საქაღალდე არ არსებობს" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "შეცდომა დისკზე ჩაწერისას" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -69,11 +69,15 @@ msgstr "ფაილები" msgid "Unshare" msgstr "გაზიარების მოხსნა" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "წაშლა" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "გადარქმევა" @@ -178,31 +182,31 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "სახელი" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "ზომა" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "შეცვლილია" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 საქაღალდე" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} საქაღალდე" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 ფაილი" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} ფაილი" diff --git a/l10n/ka_GE/files_encryption.po b/l10n/ka_GE/files_encryption.po index f0cc786850..3bdaa16e10 100644 --- a/l10n/ka_GE/files_encryption.po +++ b/l10n/ka_GE/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-23 00:05+0100\n" -"PO-Revision-Date: 2013-01-22 23:05+0000\n" +"POT-Creation-Date: 2013-02-06 00:05+0100\n" +"PO-Revision-Date: 2013-02-05 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -39,44 +39,22 @@ msgstr "" msgid "Could not change your file encryption password to your login password" msgstr "" -#: templates/settings-personal.php:3 templates/settings.php:5 -msgid "Choose encryption mode:" -msgstr "" - -#: templates/settings-personal.php:20 templates/settings.php:24 -msgid "" -"Client side encryption (most secure but makes it impossible to access your " -"data from the web interface)" -msgstr "" - -#: templates/settings-personal.php:30 templates/settings.php:36 -msgid "" -"Server side encryption (allows you to access your files from the web " -"interface and the desktop client)" -msgstr "" - -#: templates/settings-personal.php:41 templates/settings.php:60 -msgid "None (no encryption at all)" -msgstr "" - -#: templates/settings.php:10 -msgid "" -"Important: Once you selected an encryption mode there is no way to change it" -" back" -msgstr "" - -#: templates/settings.php:48 -msgid "User specific (let the user decide)" -msgstr "" - -#: templates/settings.php:65 +#: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" msgstr "" -#: templates/settings.php:67 -msgid "Exclude the following file types from encryption" +#: templates/settings-personal.php:7 +msgid "File encryption is enabled." msgstr "" -#: templates/settings.php:71 +#: templates/settings-personal.php:11 +msgid "The following file types will not be encrypted:" +msgstr "" + +#: templates/settings.php:7 +msgid "Exclude the following file types from encryption:" +msgstr "" + +#: templates/settings.php:12 msgid "None" msgstr "" diff --git a/l10n/ka_GE/files_trashbin.po b/l10n/ka_GE/files_trashbin.po index 92a719c952..b79b1af3d2 100644 --- a/l10n/ka_GE/files_trashbin.po +++ b/l10n/ka_GE/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ msgstr "" "Language: ka_GE\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "სახელი" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 საქაღალდე" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} საქაღალდე" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 ფაილი" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} ფაილი" diff --git a/l10n/ka_GE/settings.po b/l10n/ka_GE/settings.po index 7c1f5129d4..2f73884030 100644 --- a/l10n/ka_GE/settings.po +++ b/l10n/ka_GE/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -22,6 +22,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "აპლიკაციების სია ვერ ჩამოიტვირთა App Store" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "ავთენტიფიკაციის შეცდომა" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "ჯგუფი უკვე არსებობს" @@ -46,10 +55,6 @@ msgstr "არასწორი იმეილი" msgid "Unable to delete group" msgstr "ჯგუფის წაშლა ვერ მოხერხდა" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "ავთენტიფიკაციის შეცდომა" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "მომხმარებლის წაშლა ვერ მოხერხდა" @@ -112,7 +117,7 @@ msgstr "შეცდომა" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "შენახვა..." @@ -189,67 +194,83 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "პაროლი" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "თქვენი პაროლი შეიცვალა" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "თქვენი პაროლი არ შეიცვალა" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "მიმდინარე პაროლი" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "ახალი პაროლი" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "გამოაჩინე" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "პაროლის შეცვლა" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "იმეილი" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "თქვენი იმეილ მისამართი" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "შეავსეთ იმეილ მისამართის ველი პაროლის აღსადგენად" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "ენა" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "თარგმნის დახმარება" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -164,55 +164,55 @@ msgstr "12월" msgid "Settings" msgstr "설정" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "초 전" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "1분 전" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "{minutes}분 전" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "1시간 전" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "{hours}시간 전" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "오늘" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "어제" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "{days}일 전" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "지난 달" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "{months}개월 전" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "개월 전" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "작년" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "년 전" @@ -567,14 +567,18 @@ msgstr "계정의 안전을 위하여 암호를 변경하십시오." msgid "Lost your password?" msgstr "암호를 잊으셨습니까?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "기억하기" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "로그인" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "이전" diff --git a/l10n/ko/files.po b/l10n/ko/files.po index 02a1383099..6ab4e6667e 100644 --- a/l10n/ko/files.po +++ b/l10n/ko/files.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -23,46 +23,46 @@ msgstr "" "Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "파일이 업로드되지 않았습니다. 알 수 없는 오류입니다" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "업로드에 성공하였습니다." -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "업로드한 파일이 php.ini의 upload_max_filesize보다 큽니다:" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "업로드한 파일이 HTML 문서에 지정한 MAX_FILE_SIZE보다 더 큼" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "파일이 부분적으로 업로드됨" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "업로드된 파일 없음" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "임시 폴더가 사라짐" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "디스크에 쓰지 못했습니다" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "여유 공간이 부족합니다" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "올바르지 않은 디렉터리입니다." @@ -74,11 +74,15 @@ msgstr "파일" msgid "Unshare" msgstr "공유 해제" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "삭제" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "이름 바꾸기" @@ -183,31 +187,31 @@ msgstr "URL을 입력해야 합니다." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "폴더 이름이 유효하지 않습니다. " -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "이름" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "크기" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "수정됨" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "폴더 1개" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "폴더 {count}개" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "파일 1개" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "파일 {count}개" diff --git a/l10n/ko/files_encryption.po b/l10n/ko/files_encryption.po index 2988d1f0cf..22d55b9697 100644 --- a/l10n/ko/files_encryption.po +++ b/l10n/ko/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-31 17:02+0100\n" -"PO-Revision-Date: 2013-01-31 08:20+0000\n" -"Last-Translator: Shinjo Park \n" +"POT-Creation-Date: 2013-02-06 00:05+0100\n" +"PO-Revision-Date: 2013-02-05 23:05+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -41,44 +41,22 @@ msgstr "암호를 확인한 다음 다시 시도하십시오." msgid "Could not change your file encryption password to your login password" msgstr "암호화 암호를 로그인 암호로 변경할 수 없습니다" -#: templates/settings-personal.php:3 templates/settings.php:5 -msgid "Choose encryption mode:" -msgstr "암호화 모드 선택:" - -#: templates/settings-personal.php:20 templates/settings.php:24 -msgid "" -"Client side encryption (most secure but makes it impossible to access your " -"data from the web interface)" -msgstr "클라이언트 암호화 (안전하지만 웹에서 데이터에 접근할 수 없음)" - -#: templates/settings-personal.php:30 templates/settings.php:36 -msgid "" -"Server side encryption (allows you to access your files from the web " -"interface and the desktop client)" -msgstr "서버 암호화 (웹 및 데스크톱 클라이언트에서 데이터에 접근할 수 있음)" - -#: templates/settings-personal.php:41 templates/settings.php:60 -msgid "None (no encryption at all)" -msgstr "없음 (암호화하지 않음)" - -#: templates/settings.php:10 -msgid "" -"Important: Once you selected an encryption mode there is no way to change it" -" back" -msgstr "알림: 암호화 모드를 선택하면 다른 것으로 변경할 수 없습니다" - -#: templates/settings.php:48 -msgid "User specific (let the user decide)" -msgstr "사용자 지정 (사용자별 설정)" - -#: templates/settings.php:65 +#: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" msgstr "암호화" -#: templates/settings.php:67 -msgid "Exclude the following file types from encryption" -msgstr "다음 파일 형식은 암호화하지 않음" +#: templates/settings-personal.php:7 +msgid "File encryption is enabled." +msgstr "" -#: templates/settings.php:71 +#: templates/settings-personal.php:11 +msgid "The following file types will not be encrypted:" +msgstr "" + +#: templates/settings.php:7 +msgid "Exclude the following file types from encryption:" +msgstr "" + +#: templates/settings.php:12 msgid "None" msgstr "없음" diff --git a/l10n/ko/files_trashbin.po b/l10n/ko/files_trashbin.po index a87ddd6b8d..ad7567a005 100644 --- a/l10n/ko/files_trashbin.po +++ b/l10n/ko/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ msgstr "" "Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "이름" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "폴더 1개" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "폴더 {count}개" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "파일 1개" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "파일 {count}개" diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index 62097ea4a5..65a8c9d6e2 100644 --- a/l10n/ko/settings.po +++ b/l10n/ko/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -26,6 +26,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "앱 스토어에서 목록을 가져올 수 없습니다" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "인증 오류" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "그룹이 이미 존재합니다." @@ -50,10 +59,6 @@ msgstr "잘못된 이메일 주소" msgid "Unable to delete group" msgstr "그룹을 삭제할 수 없습니다." -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "인증 오류" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "사용자를 삭제할 수 없습니다." @@ -116,7 +121,7 @@ msgstr "오류" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "저장 중..." @@ -193,67 +198,83 @@ msgstr "안드로이드 클라이언트 다운로드" msgid "Download iOS Client" msgstr "iOS 클라이언트 다운로드" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "암호" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "암호가 변경되었습니다" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "암호를 변경할 수 없음" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "현재 암호" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "새 암호" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "보이기" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "암호 변경" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "표시 이름" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "이메일" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "이메일 주소" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "암호 찾기 기능을 사용하려면 이메일 주소를 입력하십시오." -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "언어" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "번역 돕기" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "파일 관리자에서 ownCloud에 접속하려면 이 주소를 사용하십시오." -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "버전" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -160,55 +160,55 @@ msgstr "" msgid "Settings" msgstr "ده‌ستكاری" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "" @@ -563,14 +563,18 @@ msgstr "" msgid "Lost your password?" msgstr "" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "پێشتر" diff --git a/l10n/ku_IQ/files.po b/l10n/ku_IQ/files.po index d8cb9b82a7..8f5359f7a0 100644 --- a/l10n/ku_IQ/files.po +++ b/l10n/ku_IQ/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -17,46 +17,46 @@ msgstr "" "Language: ku_IQ\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -68,11 +68,15 @@ msgstr "" msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "" @@ -177,31 +181,31 @@ msgstr "ناونیشانی به‌سته‌ر نابێت به‌تاڵ بێت." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "ناو" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "" diff --git a/l10n/ku_IQ/files_encryption.po b/l10n/ku_IQ/files_encryption.po index d372d58b03..db1496b70d 100644 --- a/l10n/ku_IQ/files_encryption.po +++ b/l10n/ku_IQ/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-23 00:05+0100\n" -"PO-Revision-Date: 2013-01-22 23:05+0000\n" +"POT-Creation-Date: 2013-02-06 00:05+0100\n" +"PO-Revision-Date: 2013-02-05 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -40,44 +40,22 @@ msgstr "" msgid "Could not change your file encryption password to your login password" msgstr "" -#: templates/settings-personal.php:3 templates/settings.php:5 -msgid "Choose encryption mode:" -msgstr "" - -#: templates/settings-personal.php:20 templates/settings.php:24 -msgid "" -"Client side encryption (most secure but makes it impossible to access your " -"data from the web interface)" -msgstr "" - -#: templates/settings-personal.php:30 templates/settings.php:36 -msgid "" -"Server side encryption (allows you to access your files from the web " -"interface and the desktop client)" -msgstr "" - -#: templates/settings-personal.php:41 templates/settings.php:60 -msgid "None (no encryption at all)" -msgstr "" - -#: templates/settings.php:10 -msgid "" -"Important: Once you selected an encryption mode there is no way to change it" -" back" -msgstr "" - -#: templates/settings.php:48 -msgid "User specific (let the user decide)" -msgstr "" - -#: templates/settings.php:65 +#: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" msgstr "نهێنیکردن" -#: templates/settings.php:67 -msgid "Exclude the following file types from encryption" -msgstr "به‌ربه‌ست کردنی ئه‌م جۆره‌ په‌ڕگانه له‌ نهێنیکردن" +#: templates/settings-personal.php:7 +msgid "File encryption is enabled." +msgstr "" -#: templates/settings.php:71 +#: templates/settings-personal.php:11 +msgid "The following file types will not be encrypted:" +msgstr "" + +#: templates/settings.php:7 +msgid "Exclude the following file types from encryption:" +msgstr "" + +#: templates/settings.php:12 msgid "None" msgstr "هیچ" diff --git a/l10n/ku_IQ/files_trashbin.po b/l10n/ku_IQ/files_trashbin.po index f1318338be..5a86701073 100644 --- a/l10n/ku_IQ/files_trashbin.po +++ b/l10n/ku_IQ/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ msgstr "" "Language: ku_IQ\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "ناو" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "" diff --git a/l10n/ku_IQ/settings.po b/l10n/ku_IQ/settings.po index adb4e79653..7973f6b16d 100644 --- a/l10n/ku_IQ/settings.po +++ b/l10n/ku_IQ/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -21,6 +21,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "" @@ -45,10 +54,6 @@ msgstr "" msgid "Unable to delete group" msgstr "" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "" @@ -111,7 +116,7 @@ msgstr "هه‌ڵه" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "پاشکه‌وتده‌کات..." @@ -188,67 +193,83 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "وشەی تێپەربو" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "وشەی نهێنی نوێ" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "ئیمه‌یل" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -161,55 +161,55 @@ msgstr "Dezember" msgid "Settings" msgstr "Astellungen" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "vrun 1 Stonn" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "vru {hours} Stonnen" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "Läschte Mount" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "vru {months} Méint" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "Méint hier" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "Läscht Joer" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "Joren hier" @@ -564,14 +564,18 @@ msgstr "" msgid "Lost your password?" msgstr "Passwuert vergiess?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "verhalen" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Log dech an" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "zeréck" diff --git a/l10n/lb/files.po b/l10n/lb/files.po index 01de41c0d8..251898c3e5 100644 --- a/l10n/lb/files.po +++ b/l10n/lb/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:30+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -18,46 +18,46 @@ msgstr "" "Language: lb\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Keen Feeler, Datei ass komplett ropgelueden ginn" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Déi ropgelueden Datei ass méi grouss wei d'MAX_FILE_SIZE Eegenschaft déi an der HTML form uginn ass" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Déi ropgelueden Datei ass nëmmen hallef ropgelueden ginn" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Et ass keng Datei ropgelueden ginn" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Et feelt en temporären Dossier" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Konnt net op den Disk schreiwen" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -69,11 +69,15 @@ msgstr "Dateien" msgid "Unshare" msgstr "Net méi deelen" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Läschen" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "" @@ -178,31 +182,31 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Numm" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Gréisst" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Geännert" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "" diff --git a/l10n/lb/files_encryption.po b/l10n/lb/files_encryption.po index f88e884164..c8fc462a15 100644 --- a/l10n/lb/files_encryption.po +++ b/l10n/lb/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-23 00:05+0100\n" -"PO-Revision-Date: 2013-01-22 23:05+0000\n" +"POT-Creation-Date: 2013-02-06 00:05+0100\n" +"PO-Revision-Date: 2013-02-05 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -39,44 +39,22 @@ msgstr "" msgid "Could not change your file encryption password to your login password" msgstr "" -#: templates/settings-personal.php:3 templates/settings.php:5 -msgid "Choose encryption mode:" -msgstr "" - -#: templates/settings-personal.php:20 templates/settings.php:24 -msgid "" -"Client side encryption (most secure but makes it impossible to access your " -"data from the web interface)" -msgstr "" - -#: templates/settings-personal.php:30 templates/settings.php:36 -msgid "" -"Server side encryption (allows you to access your files from the web " -"interface and the desktop client)" -msgstr "" - -#: templates/settings-personal.php:41 templates/settings.php:60 -msgid "None (no encryption at all)" -msgstr "" - -#: templates/settings.php:10 -msgid "" -"Important: Once you selected an encryption mode there is no way to change it" -" back" -msgstr "" - -#: templates/settings.php:48 -msgid "User specific (let the user decide)" -msgstr "" - -#: templates/settings.php:65 +#: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" msgstr "" -#: templates/settings.php:67 -msgid "Exclude the following file types from encryption" +#: templates/settings-personal.php:7 +msgid "File encryption is enabled." msgstr "" -#: templates/settings.php:71 +#: templates/settings-personal.php:11 +msgid "The following file types will not be encrypted:" +msgstr "" + +#: templates/settings.php:7 +msgid "Exclude the following file types from encryption:" +msgstr "" + +#: templates/settings.php:12 msgid "None" msgstr "" diff --git a/l10n/lb/files_trashbin.po b/l10n/lb/files_trashbin.po index 7ddea15d47..ae9caf692e 100644 --- a/l10n/lb/files_trashbin.po +++ b/l10n/lb/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ msgstr "" "Language: lb\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Numm" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "" diff --git a/l10n/lb/settings.po b/l10n/lb/settings.po index e2d2d5243d..021e271d8f 100644 --- a/l10n/lb/settings.po +++ b/l10n/lb/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -22,6 +22,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Konnt Lescht net vum App Store lueden" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Authentifikatioun's Fehler" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "" @@ -46,10 +55,6 @@ msgstr "Ongülteg e-mail" msgid "Unable to delete group" msgstr "" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Authentifikatioun's Fehler" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "" @@ -112,7 +117,7 @@ msgstr "Fehler" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Speicheren..." @@ -189,67 +194,83 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Passwuert" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Konnt däin Passwuert net änneren" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Momentan 't Passwuert" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Neit Passwuert" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "weisen" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Passwuert änneren" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "Email" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Deng Email Adress" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Gëff eng Email Adress an fir d'Passwuert recovery ze erlaben" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Sprooch" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Hëllef iwwersetzen" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -161,55 +161,55 @@ msgstr "Gruodis" msgid "Settings" msgstr "Nustatymai" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "prieš sekundę" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "Prieš 1 minutę" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "Prieš {count} minutes" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "šiandien" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "vakar" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "Prieš {days} dienas" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "praeitą mėnesį" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "prieš mėnesį" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "praeitais metais" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "prieš metus" @@ -564,14 +564,18 @@ msgstr "Prašome pasikeisti slaptažodį dar kartą, dėl paskyros saugumo." msgid "Lost your password?" msgstr "Pamiršote slaptažodį?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "prisiminti" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Prisijungti" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "atgal" diff --git a/l10n/lt_LT/files.po b/l10n/lt_LT/files.po index 4776b8e8f1..c6bf98088b 100644 --- a/l10n/lt_LT/files.po +++ b/l10n/lt_LT/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -20,46 +20,46 @@ msgstr "" "Language: lt_LT\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Klaidų nėra, failas įkeltas sėkmingai" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Įkeliamo failo dydis viršija MAX_FILE_SIZE parametrą, kuris yra nustatytas HTML formoje" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Failas buvo įkeltas tik dalinai" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Nebuvo įkeltas nė vienas failas" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Nėra laikinojo katalogo" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Nepavyko įrašyti į diską" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -71,11 +71,15 @@ msgstr "Failai" msgid "Unshare" msgstr "Nebesidalinti" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Ištrinti" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Pervadinti" @@ -180,31 +184,31 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Pavadinimas" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Dydis" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Pakeista" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 aplankalas" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} aplankalai" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 failas" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} failai" diff --git a/l10n/lt_LT/files_encryption.po b/l10n/lt_LT/files_encryption.po index 152f3677f8..6e52ef83bb 100644 --- a/l10n/lt_LT/files_encryption.po +++ b/l10n/lt_LT/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-23 00:05+0100\n" -"PO-Revision-Date: 2013-01-22 23:05+0000\n" +"POT-Creation-Date: 2013-02-06 00:05+0100\n" +"PO-Revision-Date: 2013-02-05 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -40,44 +40,22 @@ msgstr "" msgid "Could not change your file encryption password to your login password" msgstr "" -#: templates/settings-personal.php:3 templates/settings.php:5 -msgid "Choose encryption mode:" -msgstr "" - -#: templates/settings-personal.php:20 templates/settings.php:24 -msgid "" -"Client side encryption (most secure but makes it impossible to access your " -"data from the web interface)" -msgstr "" - -#: templates/settings-personal.php:30 templates/settings.php:36 -msgid "" -"Server side encryption (allows you to access your files from the web " -"interface and the desktop client)" -msgstr "" - -#: templates/settings-personal.php:41 templates/settings.php:60 -msgid "None (no encryption at all)" -msgstr "" - -#: templates/settings.php:10 -msgid "" -"Important: Once you selected an encryption mode there is no way to change it" -" back" -msgstr "" - -#: templates/settings.php:48 -msgid "User specific (let the user decide)" -msgstr "" - -#: templates/settings.php:65 +#: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" msgstr "Šifravimas" -#: templates/settings.php:67 -msgid "Exclude the following file types from encryption" -msgstr "Nešifruoti pasirinkto tipo failų" +#: templates/settings-personal.php:7 +msgid "File encryption is enabled." +msgstr "" -#: templates/settings.php:71 +#: templates/settings-personal.php:11 +msgid "The following file types will not be encrypted:" +msgstr "" + +#: templates/settings.php:7 +msgid "Exclude the following file types from encryption:" +msgstr "" + +#: templates/settings.php:12 msgid "None" msgstr "Nieko" diff --git a/l10n/lt_LT/files_trashbin.po b/l10n/lt_LT/files_trashbin.po index af1841dd64..674308b81b 100644 --- a/l10n/lt_LT/files_trashbin.po +++ b/l10n/lt_LT/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ msgstr "" "Language: lt_LT\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Pavadinimas" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 aplankalas" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} aplankalai" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 failas" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} failai" diff --git a/l10n/lt_LT/settings.po b/l10n/lt_LT/settings.po index 1499763e4f..e1ef964d69 100644 --- a/l10n/lt_LT/settings.po +++ b/l10n/lt_LT/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -23,6 +23,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Neįmanoma įkelti sąrašo iš Programų Katalogo" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Autentikacijos klaida" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "" @@ -47,10 +56,6 @@ msgstr "Netinkamas el. paštas" msgid "Unable to delete group" msgstr "" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Autentikacijos klaida" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "" @@ -113,7 +118,7 @@ msgstr "Klaida" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Saugoma.." @@ -190,67 +195,83 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Slaptažodis" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "Jūsų slaptažodis buvo pakeistas" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Neįmanoma pakeisti slaptažodžio" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Dabartinis slaptažodis" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Naujas slaptažodis" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "rodyti" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Pakeisti slaptažodį" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "El. paštas" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Jūsų el. pašto adresas" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Pamiršto slaptažodžio atkūrimui įveskite savo el. pašto adresą" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Kalba" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Padėkite išversti" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -572,6 +572,10 @@ msgstr "atcerēties" msgid "Log in" msgstr "Ierakstīties" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "iepriekšējā" diff --git a/l10n/lv/files.po b/l10n/lv/files.po index 34debdd2e7..a003b4fdf1 100644 --- a/l10n/lv/files.po +++ b/l10n/lv/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-05 00:19+0100\n" -"PO-Revision-Date: 2013-02-04 18:40+0000\n" -"Last-Translator: Rūdolfs Mazurs \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -71,11 +71,15 @@ msgstr "Datnes" msgid "Unshare" msgstr "Pārtraukt dalīšanos" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Dzēst" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Pārsaukt" diff --git a/l10n/lv/files_encryption.po b/l10n/lv/files_encryption.po index 539b9bd02c..c5f33459a2 100644 --- a/l10n/lv/files_encryption.po +++ b/l10n/lv/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-05 00:19+0100\n" -"PO-Revision-Date: 2013-02-04 12:00+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 20:40+0000\n" "Last-Translator: Rūdolfs Mazurs \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -40,44 +40,22 @@ msgstr "Lūdzu, pārbaudiet savas paroles un mēģiniet vēlreiz." msgid "Could not change your file encryption password to your login password" msgstr "Nevarēja mainīt datņu šifrēšanas paroli uz ierakstīšanās paroli" -#: templates/settings-personal.php:3 templates/settings.php:5 -msgid "Choose encryption mode:" -msgstr "Izvēlieties šifrēšanas režīmu:" - -#: templates/settings-personal.php:20 templates/settings.php:24 -msgid "" -"Client side encryption (most secure but makes it impossible to access your " -"data from the web interface)" -msgstr "Klienta puses šifrēšana (visdrošākā, bet nav iespējams piekļūt saviem datiem no tīmekļa saskarnes)" - -#: templates/settings-personal.php:30 templates/settings.php:36 -msgid "" -"Server side encryption (allows you to access your files from the web " -"interface and the desktop client)" -msgstr "Servera puses šifrēšana (ļauj piekļūt datnēm ar tīmekļa saskarni un ar darbvirsmas klientu)" - -#: templates/settings-personal.php:41 templates/settings.php:60 -msgid "None (no encryption at all)" -msgstr "Nav (nekādas šifrēšanas)" - -#: templates/settings.php:10 -msgid "" -"Important: Once you selected an encryption mode there is no way to change it" -" back" -msgstr "Svarīgi — kad esat izvēlējies šifrēšanas režīmu, to nekādi nevar mainīt atpakaļ" - -#: templates/settings.php:48 -msgid "User specific (let the user decide)" -msgstr "Lietotājam specifiski (ļauj lietotājam izlemt)" - -#: templates/settings.php:65 +#: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" msgstr "Šifrēšana" -#: templates/settings.php:67 -msgid "Exclude the following file types from encryption" -msgstr "Sekojošos datņu tipus nešifrēt" +#: templates/settings-personal.php:7 +msgid "File encryption is enabled." +msgstr "Datņu šifrēšana ir aktivēta." -#: templates/settings.php:71 +#: templates/settings-personal.php:11 +msgid "The following file types will not be encrypted:" +msgstr "Sekojošās datnes netiks šifrētas:" + +#: templates/settings.php:7 +msgid "Exclude the following file types from encryption:" +msgstr "Sekojošos datņu tipus izslēgt no šifrēšanas:" + +#: templates/settings.php:12 msgid "None" msgstr "Nav" diff --git a/l10n/lv/files_sharing.po b/l10n/lv/files_sharing.po index 6d52e10de6..3e20fdad26 100644 --- a/l10n/lv/files_sharing.po +++ b/l10n/lv/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-05 00:19+0100\n" -"PO-Revision-Date: 2013-02-04 18:30+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 21:40+0000\n" "Last-Translator: Rūdolfs Mazurs \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/files_trashbin.po b/l10n/lv/files_trashbin.po index 11024c8e1e..0cd0f39d48 100644 --- a/l10n/lv/files_trashbin.po +++ b/l10n/lv/files_trashbin.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-04 00:05+0100\n" -"PO-Revision-Date: 2013-02-03 21:00+0000\n" -"Last-Translator: Rūdolfs Mazurs \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,31 +18,35 @@ msgstr "" "Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "veikt atjaunošanu" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Nosaukums" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "Dzēsts" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 mape" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} mapes" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 datne" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} datnes" diff --git a/l10n/lv/lib.po b/l10n/lv/lib.po index ae6df933b4..3dd07bcc2b 100644 --- a/l10n/lv/lib.po +++ b/l10n/lv/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-05 00:19+0100\n" -"PO-Revision-Date: 2013-02-04 14:31+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 21:40+0000\n" "Last-Translator: Rūdolfs Mazurs \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -18,27 +18,27 @@ msgstr "" "Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" -#: app.php:312 +#: app.php:313 msgid "Help" msgstr "Palīdzība" -#: app.php:319 +#: app.php:320 msgid "Personal" msgstr "Personīgi" -#: app.php:324 +#: app.php:325 msgid "Settings" msgstr "Iestatījumi" -#: app.php:329 +#: app.php:330 msgid "Users" msgstr "Lietotāji" -#: app.php:336 +#: app.php:337 msgid "Apps" msgstr "Lietotnes" -#: app.php:338 +#: app.php:339 msgid "Admin" msgstr "Administratori" diff --git a/l10n/lv/settings.po b/l10n/lv/settings.po index 72b99de743..daca3930d1 100644 --- a/l10n/lv/settings.po +++ b/l10n/lv/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-05 00:19+0100\n" -"PO-Revision-Date: 2013-02-04 19:10+0000\n" -"Last-Translator: Rūdolfs Mazurs \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,6 +24,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Nevar lejupielādēt sarakstu no lietotņu veikala" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Autentifikācijas kļūda" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "Grupa jau eksistē" @@ -48,10 +57,6 @@ msgstr "Nederīgs epasts" msgid "Unable to delete group" msgstr "Nevar izdzēst grupu" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Autentifikācijas kļūda" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "Nevar izdzēst lietotāju" @@ -114,7 +119,7 @@ msgstr "Kļūda" msgid "Updated" msgstr "Atjaunināta" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Saglabā..." @@ -191,67 +196,83 @@ msgstr "Lejupielādēt Android klientu" msgid "Download iOS Client" msgstr "Lejupielādēt iOS klientu" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Parole" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "Jūru parole tika nomainīta" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Nevar nomainīt jūsu paroli" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Pašreizējā parole" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Jauna parole" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "parādīt" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Mainīt paroli" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "Redzamais vārds" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "E-pasts" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Jūsu e-pasta adrese" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Ievadiet epasta adresi, lai vēlāk varētu atgūt paroli, ja būs nepieciešamība" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Valoda" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Palīdzi tulkot" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Izmanto šo adresi, lai, izmantojot datņu pārvaldnieku, savienotos ar savu ownCloud" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "Versija" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -162,55 +162,55 @@ msgstr "Декември" msgid "Settings" msgstr "Поставки" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "пред секунди" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "пред 1 минута" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "пред {minutes} минути" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "пред 1 час" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "пред {hours} часови" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "денеска" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "вчера" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "пред {days} денови" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "минатиот месец" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "пред {months} месеци" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "пред месеци" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "минатата година" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "пред години" @@ -565,14 +565,18 @@ msgstr "Ве молам сменете ја лозинката да ја обе msgid "Lost your password?" msgstr "Ја заборавивте лозинката?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "запамти" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Најава" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "претходно" diff --git a/l10n/mk/files.po b/l10n/mk/files.po index 941e084b4a..040ed8a2a7 100644 --- a/l10n/mk/files.po +++ b/l10n/mk/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -20,46 +20,46 @@ msgstr "" "Language: mk\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Ниту еден фајл не се вчита. Непозната грешка" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Нема грешка, датотеката беше подигната успешно" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Подигнатата датотека ја надминува upload_max_filesize директивата во php.ini:" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Подигнатата датотеката ја надминува MAX_FILE_SIZE директивата која беше поставена во HTML формата" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Датотеката беше само делумно подигната." -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Не беше подигната датотека" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Не постои привремена папка" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Неуспеав да запишам на диск" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -71,11 +71,15 @@ msgstr "Датотеки" msgid "Unshare" msgstr "Не споделувај" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Избриши" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Преименувај" @@ -180,31 +184,31 @@ msgstr "Адресата неможе да биде празна." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Име" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Големина" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Променето" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 папка" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} папки" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 датотека" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} датотеки" diff --git a/l10n/mk/files_encryption.po b/l10n/mk/files_encryption.po index b34192fc86..56ed5df95c 100644 --- a/l10n/mk/files_encryption.po +++ b/l10n/mk/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-23 00:05+0100\n" -"PO-Revision-Date: 2013-01-22 23:05+0000\n" +"POT-Creation-Date: 2013-02-06 00:05+0100\n" +"PO-Revision-Date: 2013-02-05 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -40,44 +40,22 @@ msgstr "" msgid "Could not change your file encryption password to your login password" msgstr "" -#: templates/settings-personal.php:3 templates/settings.php:5 -msgid "Choose encryption mode:" -msgstr "" - -#: templates/settings-personal.php:20 templates/settings.php:24 -msgid "" -"Client side encryption (most secure but makes it impossible to access your " -"data from the web interface)" -msgstr "" - -#: templates/settings-personal.php:30 templates/settings.php:36 -msgid "" -"Server side encryption (allows you to access your files from the web " -"interface and the desktop client)" -msgstr "" - -#: templates/settings-personal.php:41 templates/settings.php:60 -msgid "None (no encryption at all)" -msgstr "" - -#: templates/settings.php:10 -msgid "" -"Important: Once you selected an encryption mode there is no way to change it" -" back" -msgstr "" - -#: templates/settings.php:48 -msgid "User specific (let the user decide)" -msgstr "" - -#: templates/settings.php:65 +#: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" msgstr "Енкрипција" -#: templates/settings.php:67 -msgid "Exclude the following file types from encryption" -msgstr "Исклучи ги следните типови на датотеки од енкрипција" +#: templates/settings-personal.php:7 +msgid "File encryption is enabled." +msgstr "" -#: templates/settings.php:71 +#: templates/settings-personal.php:11 +msgid "The following file types will not be encrypted:" +msgstr "" + +#: templates/settings.php:7 +msgid "Exclude the following file types from encryption:" +msgstr "" + +#: templates/settings.php:12 msgid "None" msgstr "Ништо" diff --git a/l10n/mk/files_trashbin.po b/l10n/mk/files_trashbin.po index 567a2b7aae..99097d14e0 100644 --- a/l10n/mk/files_trashbin.po +++ b/l10n/mk/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ msgstr "" "Language: mk\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Име" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 папка" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} папки" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 датотека" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} датотеки" diff --git a/l10n/mk/settings.po b/l10n/mk/settings.po index c863d2c2a3..f441c26ada 100644 --- a/l10n/mk/settings.po +++ b/l10n/mk/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -24,6 +24,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Неможам да вчитам листа од App Store" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Грешка во автентикација" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "Групата веќе постои" @@ -48,10 +57,6 @@ msgstr "Неисправна електронска пошта" msgid "Unable to delete group" msgstr "Неможе да избришам група" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Грешка во автентикација" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "Неможам да избришам корисник" @@ -114,7 +119,7 @@ msgstr "Грешка" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Снимам..." @@ -191,67 +196,83 @@ msgstr "Преземи клиент за Андроид" msgid "Download iOS Client" msgstr "Преземи iOS клиент" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Лозинка" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "Вашата лозинка беше променета." -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Вашата лозинка неможе да се смени" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Моментална лозинка" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Нова лозинка" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "прикажи" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Смени лозинка" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "Е-пошта" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Вашата адреса за е-пошта" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Пополни ја адресата за е-пошта за да може да ја обновуваш лозинката" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Јазик" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Помогни во преводот" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Користете ја оваа адреса да " -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "Верзија" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -162,55 +162,55 @@ msgstr "Disember" msgid "Settings" msgstr "Tetapan" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "" @@ -565,14 +565,18 @@ msgstr "" msgid "Lost your password?" msgstr "Hilang kata laluan?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "ingat" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Log masuk" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "sebelum" diff --git a/l10n/ms_MY/files.po b/l10n/ms_MY/files.po index 6e6a0e262c..d27c0cdafb 100644 --- a/l10n/ms_MY/files.po +++ b/l10n/ms_MY/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:30+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -21,46 +21,46 @@ msgstr "" "Language: ms_MY\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Tiada fail dimuatnaik. Ralat tidak diketahui." -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Tiada ralat, fail berjaya dimuat naik." -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Fail yang dimuat naik melebihi MAX_FILE_SIZE yang dinyatakan dalam form HTML " -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Sebahagian daripada fail telah dimuat naik. " -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Tiada fail yang dimuat naik" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Folder sementara hilang" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Gagal untuk disimpan" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -72,11 +72,15 @@ msgstr "fail" msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Padam" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "" @@ -181,31 +185,31 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Nama " -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Saiz" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Dimodifikasi" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "" diff --git a/l10n/ms_MY/files_encryption.po b/l10n/ms_MY/files_encryption.po index 65777823e5..5c9ecb2f22 100644 --- a/l10n/ms_MY/files_encryption.po +++ b/l10n/ms_MY/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-23 00:05+0100\n" -"PO-Revision-Date: 2013-01-22 23:05+0000\n" +"POT-Creation-Date: 2013-02-06 00:05+0100\n" +"PO-Revision-Date: 2013-02-05 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -39,44 +39,22 @@ msgstr "" msgid "Could not change your file encryption password to your login password" msgstr "" -#: templates/settings-personal.php:3 templates/settings.php:5 -msgid "Choose encryption mode:" -msgstr "" - -#: templates/settings-personal.php:20 templates/settings.php:24 -msgid "" -"Client side encryption (most secure but makes it impossible to access your " -"data from the web interface)" -msgstr "" - -#: templates/settings-personal.php:30 templates/settings.php:36 -msgid "" -"Server side encryption (allows you to access your files from the web " -"interface and the desktop client)" -msgstr "" - -#: templates/settings-personal.php:41 templates/settings.php:60 -msgid "None (no encryption at all)" -msgstr "" - -#: templates/settings.php:10 -msgid "" -"Important: Once you selected an encryption mode there is no way to change it" -" back" -msgstr "" - -#: templates/settings.php:48 -msgid "User specific (let the user decide)" -msgstr "" - -#: templates/settings.php:65 +#: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" msgstr "" -#: templates/settings.php:67 -msgid "Exclude the following file types from encryption" +#: templates/settings-personal.php:7 +msgid "File encryption is enabled." msgstr "" -#: templates/settings.php:71 +#: templates/settings-personal.php:11 +msgid "The following file types will not be encrypted:" +msgstr "" + +#: templates/settings.php:7 +msgid "Exclude the following file types from encryption:" +msgstr "" + +#: templates/settings.php:12 msgid "None" msgstr "" diff --git a/l10n/ms_MY/files_trashbin.po b/l10n/ms_MY/files_trashbin.po index c3efccaa15..7ae2747a24 100644 --- a/l10n/ms_MY/files_trashbin.po +++ b/l10n/ms_MY/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ msgstr "" "Language: ms_MY\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Nama" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "" diff --git a/l10n/ms_MY/settings.po b/l10n/ms_MY/settings.po index b9e4261b7a..b04dd7bcb1 100644 --- a/l10n/ms_MY/settings.po +++ b/l10n/ms_MY/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -25,6 +25,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Ralat pengesahan" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "" @@ -49,10 +58,6 @@ msgstr "Emel tidak sah" msgid "Unable to delete group" msgstr "" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Ralat pengesahan" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "" @@ -115,7 +120,7 @@ msgstr "Ralat" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Simpan..." @@ -192,67 +197,83 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Kata laluan " -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Gagal mengubah kata laluan anda " -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Kata laluan semasa" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Kata laluan baru" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "Papar" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Ubah kata laluan" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "Emel" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Alamat emel anda" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Isi alamat emel anda untuk membolehkan pemulihan kata laluan" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Bahasa" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Bantu terjemah" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -166,55 +166,55 @@ msgstr "Desember" msgid "Settings" msgstr "Innstillinger" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "sekunder siden" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "1 minutt siden" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "{minutes} minutter siden" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "1 time siden" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "{hours} timer siden" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "i dag" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "i går" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "{days} dager siden" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "forrige måned" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "{months} måneder siden" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "måneder siden" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "forrige år" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "år siden" @@ -569,14 +569,18 @@ msgstr "Vennligst skift passord for å gjøre kontoen din sikker igjen." msgid "Lost your password?" msgstr "Mistet passordet ditt?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "husk" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Logg inn" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "forrige" diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po index 195074affb..eb59e0831f 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/files.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -26,46 +26,46 @@ msgstr "" "Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Ingen filer ble lastet opp. Ukjent feil." -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Det er ingen feil. Filen ble lastet opp." -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Filstørrelsen overskrider maksgrensen på MAX_FILE_SIZE som ble oppgitt i HTML-skjemaet" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Filopplastningen ble bare delvis gjennomført" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Ingen fil ble lastet opp" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Mangler en midlertidig mappe" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Klarte ikke å skrive til disk" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -77,11 +77,15 @@ msgstr "Filer" msgid "Unshare" msgstr "Avslutt deling" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Slett" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Omdøp" @@ -186,31 +190,31 @@ msgstr "URL-en kan ikke være tom." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Navn" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Størrelse" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Endret" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 mappe" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} mapper" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 fil" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} filer" diff --git a/l10n/nb_NO/files_encryption.po b/l10n/nb_NO/files_encryption.po index 5e2f1a4cf9..c8657a91e1 100644 --- a/l10n/nb_NO/files_encryption.po +++ b/l10n/nb_NO/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-23 00:05+0100\n" -"PO-Revision-Date: 2013-01-22 23:05+0000\n" +"POT-Creation-Date: 2013-02-06 00:05+0100\n" +"PO-Revision-Date: 2013-02-05 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -40,44 +40,22 @@ msgstr "" msgid "Could not change your file encryption password to your login password" msgstr "" -#: templates/settings-personal.php:3 templates/settings.php:5 -msgid "Choose encryption mode:" -msgstr "" - -#: templates/settings-personal.php:20 templates/settings.php:24 -msgid "" -"Client side encryption (most secure but makes it impossible to access your " -"data from the web interface)" -msgstr "" - -#: templates/settings-personal.php:30 templates/settings.php:36 -msgid "" -"Server side encryption (allows you to access your files from the web " -"interface and the desktop client)" -msgstr "" - -#: templates/settings-personal.php:41 templates/settings.php:60 -msgid "None (no encryption at all)" -msgstr "" - -#: templates/settings.php:10 -msgid "" -"Important: Once you selected an encryption mode there is no way to change it" -" back" -msgstr "" - -#: templates/settings.php:48 -msgid "User specific (let the user decide)" -msgstr "" - -#: templates/settings.php:65 +#: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" msgstr "Kryptering" -#: templates/settings.php:67 -msgid "Exclude the following file types from encryption" -msgstr "Ekskluder følgende filer fra kryptering" +#: templates/settings-personal.php:7 +msgid "File encryption is enabled." +msgstr "" -#: templates/settings.php:71 +#: templates/settings-personal.php:11 +msgid "The following file types will not be encrypted:" +msgstr "" + +#: templates/settings.php:7 +msgid "Exclude the following file types from encryption:" +msgstr "" + +#: templates/settings.php:12 msgid "None" msgstr "Ingen" diff --git a/l10n/nb_NO/files_trashbin.po b/l10n/nb_NO/files_trashbin.po index bac182fb21..c2c66d6ca1 100644 --- a/l10n/nb_NO/files_trashbin.po +++ b/l10n/nb_NO/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ msgstr "" "Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Navn" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 mappe" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} mapper" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 fil" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} filer" diff --git a/l10n/nb_NO/settings.po b/l10n/nb_NO/settings.po index a3c7292425..f96018e116 100644 --- a/l10n/nb_NO/settings.po +++ b/l10n/nb_NO/settings.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -29,6 +29,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Lasting av liste fra App Store feilet." +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Autentikasjonsfeil" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "Gruppen finnes allerede" @@ -53,10 +62,6 @@ msgstr "Ugyldig epost" msgid "Unable to delete group" msgstr "Kan ikke slette gruppe" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Autentikasjonsfeil" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "Kan ikke slette bruker" @@ -119,7 +124,7 @@ msgstr "Feil" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Lagrer..." @@ -196,67 +201,83 @@ msgstr "Last ned Android-klient" msgid "Download iOS Client" msgstr "Last ned iOS-klient" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Passord" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "Passord har blitt endret" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Kunne ikke endre passordet ditt" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Nåværende passord" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Nytt passord" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "vis" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Endre passord" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "E-post" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Din e-postadresse" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Oppi epostadressen du vil tilbakestille passordet for" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Språk" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Bidra til oversettelsen" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "Versjon" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:07+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -173,55 +173,55 @@ msgstr "december" msgid "Settings" msgstr "Instellingen" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "seconden geleden" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "1 minuut geleden" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "{minutes} minuten geleden" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "1 uur geleden" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "{hours} uren geleden" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "vandaag" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "gisteren" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "{days} dagen geleden" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "vorige maand" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "{months} maanden geleden" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "maanden geleden" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "vorig jaar" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "jaar geleden" @@ -576,14 +576,18 @@ msgstr "Wijzig uw wachtwoord zodat uw account weer beveiligd is." msgid "Lost your password?" msgstr "Uw wachtwoord vergeten?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "onthoud gegevens" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Meld je aan" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "vorige" diff --git a/l10n/nl/files.po b/l10n/nl/files.po index a49996ff6f..f21914fb29 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/files.po @@ -19,9 +19,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 08:10+0000\n" -"Last-Translator: André Koot \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,46 +29,46 @@ msgstr "" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Er was geen bestand geladen. Onbekende fout" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Geen fout opgetreden, bestand successvol geupload." -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Het geüploade bestand overscheidt de upload_max_filesize optie in php.ini:" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Het geüploade bestand is groter dan de MAX_FILE_SIZE richtlijn die is opgegeven in de HTML-formulier" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Het bestand is slechts gedeeltelijk geupload" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Geen bestand geüpload" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Een tijdelijke map mist" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Schrijven naar schijf mislukt" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "Niet genoeg ruimte beschikbaar" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Ongeldige directory." @@ -80,11 +80,15 @@ msgstr "Bestanden" msgid "Unshare" msgstr "Stop delen" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Verwijder" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Hernoem" @@ -189,31 +193,31 @@ msgstr "URL kan niet leeg zijn." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Ongeldige mapnaam. Gebruik van'Gedeeld' is voorbehouden aan Owncloud" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Naam" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Bestandsgrootte" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Laatst aangepast" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 map" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} mappen" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 bestand" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} bestanden" diff --git a/l10n/nl/files_encryption.po b/l10n/nl/files_encryption.po index 16c95df107..4aafb1900d 100644 --- a/l10n/nl/files_encryption.po +++ b/l10n/nl/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 10:30+0000\n" -"Last-Translator: Len \n" +"POT-Creation-Date: 2013-02-06 00:05+0100\n" +"PO-Revision-Date: 2013-02-05 23:05+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -41,44 +41,22 @@ msgstr "Controleer uw wachtwoorden en probeer het opnieuw." msgid "Could not change your file encryption password to your login password" msgstr "Kon het bestandsencryptie wachtwoord niet veranderen naar het login wachtwoord" -#: templates/settings-personal.php:3 templates/settings.php:5 -msgid "Choose encryption mode:" -msgstr "Kies encryptie mode:" - -#: templates/settings-personal.php:20 templates/settings.php:24 -msgid "" -"Client side encryption (most secure but makes it impossible to access your " -"data from the web interface)" -msgstr "" - -#: templates/settings-personal.php:30 templates/settings.php:36 -msgid "" -"Server side encryption (allows you to access your files from the web " -"interface and the desktop client)" -msgstr "" - -#: templates/settings-personal.php:41 templates/settings.php:60 -msgid "None (no encryption at all)" -msgstr "Geen (zonder encryptie)" - -#: templates/settings.php:10 -msgid "" -"Important: Once you selected an encryption mode there is no way to change it" -" back" -msgstr "Belangrijk: Zodra er voor een encryptie mode is gekozen kan deze niet meer worden gewijzigd." - -#: templates/settings.php:48 -msgid "User specific (let the user decide)" -msgstr "" - -#: templates/settings.php:65 +#: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" msgstr "Versleuteling" -#: templates/settings.php:67 -msgid "Exclude the following file types from encryption" -msgstr "Versleutel de volgende bestand types niet" +#: templates/settings-personal.php:7 +msgid "File encryption is enabled." +msgstr "" -#: templates/settings.php:71 +#: templates/settings-personal.php:11 +msgid "The following file types will not be encrypted:" +msgstr "" + +#: templates/settings.php:7 +msgid "Exclude the following file types from encryption:" +msgstr "" + +#: templates/settings.php:12 msgid "None" msgstr "Geen" diff --git a/l10n/nl/files_trashbin.po b/l10n/nl/files_trashbin.po index 3c41fa7376..14b518d6dd 100644 --- a/l10n/nl/files_trashbin.po +++ b/l10n/nl/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -18,31 +18,35 @@ msgstr "" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "uitvoeren restore operatie" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Naam" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "Verwijderd" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 map" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} mappen" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 bestand" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} bestanden" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index e7ce885352..86d93f44aa 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -18,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -32,6 +32,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Kan de lijst niet van de App store laden" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Authenticatie fout" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "Groep bestaat al" @@ -56,10 +65,6 @@ msgstr "Ongeldige e-mail" msgid "Unable to delete group" msgstr "Niet in staat om groep te verwijderen" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Authenticatie fout" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "Niet in staat om gebruiker te verwijderen" @@ -122,7 +127,7 @@ msgstr "Fout" msgid "Updated" msgstr "Bijgewerkt" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Aan het bewaren....." @@ -199,67 +204,83 @@ msgstr "Download Android Client" msgid "Download iOS Client" msgstr "Download iOS Client" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Wachtwoord" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "Je wachtwoord is veranderd" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Niet in staat om uw wachtwoord te wijzigen" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Huidig wachtwoord" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Nieuw wachtwoord" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "weergeven" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Wijzig wachtwoord" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "Weergavenaam" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "E-mailadres" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Uw e-mailadres" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Vul een e-mailadres in om wachtwoord reset uit te kunnen voeren" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Taal" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Help met vertalen" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Gebruik dit adres om te verbinden met uw ownCloud in uw bestandsbeheer" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "Versie" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -161,55 +161,55 @@ msgstr "Desember" msgid "Settings" msgstr "Innstillingar" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "" @@ -564,14 +564,18 @@ msgstr "" msgid "Lost your password?" msgstr "Gløymt passordet?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "hugs" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Logg inn" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "førre" diff --git a/l10n/nn_NO/files.po b/l10n/nn_NO/files.po index dd980f0277..555ee14359 100644 --- a/l10n/nn_NO/files.po +++ b/l10n/nn_NO/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:30+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -19,46 +19,46 @@ msgstr "" "Language: nn_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Ingen feil, fila vart lasta opp" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Den opplasta fila er større enn variabelen MAX_FILE_SIZE i HTML-skjemaet" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Fila vart berre delvis lasta opp" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Ingen filer vart lasta opp" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Manglar ei mellombels mappe" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -70,11 +70,15 @@ msgstr "Filer" msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Slett" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "" @@ -179,31 +183,31 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Namn" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Storleik" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Endra" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "" diff --git a/l10n/nn_NO/files_encryption.po b/l10n/nn_NO/files_encryption.po index f821638fbc..4db0ffa21b 100644 --- a/l10n/nn_NO/files_encryption.po +++ b/l10n/nn_NO/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-23 00:05+0100\n" -"PO-Revision-Date: 2013-01-22 23:05+0000\n" +"POT-Creation-Date: 2013-02-06 00:05+0100\n" +"PO-Revision-Date: 2013-02-05 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -39,44 +39,22 @@ msgstr "" msgid "Could not change your file encryption password to your login password" msgstr "" -#: templates/settings-personal.php:3 templates/settings.php:5 -msgid "Choose encryption mode:" -msgstr "" - -#: templates/settings-personal.php:20 templates/settings.php:24 -msgid "" -"Client side encryption (most secure but makes it impossible to access your " -"data from the web interface)" -msgstr "" - -#: templates/settings-personal.php:30 templates/settings.php:36 -msgid "" -"Server side encryption (allows you to access your files from the web " -"interface and the desktop client)" -msgstr "" - -#: templates/settings-personal.php:41 templates/settings.php:60 -msgid "None (no encryption at all)" -msgstr "" - -#: templates/settings.php:10 -msgid "" -"Important: Once you selected an encryption mode there is no way to change it" -" back" -msgstr "" - -#: templates/settings.php:48 -msgid "User specific (let the user decide)" -msgstr "" - -#: templates/settings.php:65 +#: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" msgstr "" -#: templates/settings.php:67 -msgid "Exclude the following file types from encryption" +#: templates/settings-personal.php:7 +msgid "File encryption is enabled." msgstr "" -#: templates/settings.php:71 +#: templates/settings-personal.php:11 +msgid "The following file types will not be encrypted:" +msgstr "" + +#: templates/settings.php:7 +msgid "Exclude the following file types from encryption:" +msgstr "" + +#: templates/settings.php:12 msgid "None" msgstr "" diff --git a/l10n/nn_NO/files_trashbin.po b/l10n/nn_NO/files_trashbin.po index ef89f94234..9047a8f1ce 100644 --- a/l10n/nn_NO/files_trashbin.po +++ b/l10n/nn_NO/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ msgstr "" "Language: nn_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Namn" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "" diff --git a/l10n/nn_NO/settings.po b/l10n/nn_NO/settings.po index 7c20320028..0d0f12e96e 100644 --- a/l10n/nn_NO/settings.po +++ b/l10n/nn_NO/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -23,6 +23,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Klarer ikkje å laste inn liste fra App Store" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Feil i autentisering" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "" @@ -47,10 +56,6 @@ msgstr "Ugyldig e-postadresse" msgid "Unable to delete group" msgstr "" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Feil i autentisering" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "" @@ -113,7 +118,7 @@ msgstr "Feil" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "" @@ -190,67 +195,83 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Passord" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Klarte ikkje å endra passordet" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Passord" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Nytt passord" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "vis" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Endra passord" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "Epost" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Din epost addresse" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Fyll inn din e-post addresse for og kunne motta passord tilbakestilling" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Språk" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Hjelp oss å oversett" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -160,55 +160,55 @@ msgstr "Decembre" msgid "Settings" msgstr "Configuracion" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "segonda a" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "1 minuta a" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "uèi" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "ièr" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "mes passat" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "meses a" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "an passat" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "ans a" @@ -563,14 +563,18 @@ msgstr "" msgid "Lost your password?" msgstr "L'as perdut lo senhal ?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "bremba-te" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Dintrada" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "dariièr" diff --git a/l10n/oc/files.po b/l10n/oc/files.po index f7e8ceb4ea..16d511d2e4 100644 --- a/l10n/oc/files.po +++ b/l10n/oc/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -18,46 +18,46 @@ msgstr "" "Language: oc\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Amontcargament capitat, pas d'errors" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Lo fichièr amontcargat es mai gròs que la directiva «MAX_FILE_SIZE» especifiada dins lo formulari HTML" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Lo fichièr foguèt pas completament amontcargat" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Cap de fichièrs son estats amontcargats" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Un dorsièr temporari manca" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "L'escriptura sul disc a fracassat" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -69,11 +69,15 @@ msgstr "Fichièrs" msgid "Unshare" msgstr "Non parteja" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Escafa" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Torna nomenar" @@ -178,31 +182,31 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Nom" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Talha" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Modificat" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "" diff --git a/l10n/oc/files_encryption.po b/l10n/oc/files_encryption.po index 91f6f906aa..a912cb58e7 100644 --- a/l10n/oc/files_encryption.po +++ b/l10n/oc/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-23 00:05+0100\n" -"PO-Revision-Date: 2013-01-22 23:05+0000\n" +"POT-Creation-Date: 2013-02-06 00:05+0100\n" +"PO-Revision-Date: 2013-02-05 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -39,44 +39,22 @@ msgstr "" msgid "Could not change your file encryption password to your login password" msgstr "" -#: templates/settings-personal.php:3 templates/settings.php:5 -msgid "Choose encryption mode:" -msgstr "" - -#: templates/settings-personal.php:20 templates/settings.php:24 -msgid "" -"Client side encryption (most secure but makes it impossible to access your " -"data from the web interface)" -msgstr "" - -#: templates/settings-personal.php:30 templates/settings.php:36 -msgid "" -"Server side encryption (allows you to access your files from the web " -"interface and the desktop client)" -msgstr "" - -#: templates/settings-personal.php:41 templates/settings.php:60 -msgid "None (no encryption at all)" -msgstr "" - -#: templates/settings.php:10 -msgid "" -"Important: Once you selected an encryption mode there is no way to change it" -" back" -msgstr "" - -#: templates/settings.php:48 -msgid "User specific (let the user decide)" -msgstr "" - -#: templates/settings.php:65 +#: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" msgstr "" -#: templates/settings.php:67 -msgid "Exclude the following file types from encryption" +#: templates/settings-personal.php:7 +msgid "File encryption is enabled." msgstr "" -#: templates/settings.php:71 +#: templates/settings-personal.php:11 +msgid "The following file types will not be encrypted:" +msgstr "" + +#: templates/settings.php:7 +msgid "Exclude the following file types from encryption:" +msgstr "" + +#: templates/settings.php:12 msgid "None" msgstr "" diff --git a/l10n/oc/files_trashbin.po b/l10n/oc/files_trashbin.po index f558a70f10..7ddc063e1b 100644 --- a/l10n/oc/files_trashbin.po +++ b/l10n/oc/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ msgstr "" "Language: oc\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Nom" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "" diff --git a/l10n/oc/settings.po b/l10n/oc/settings.po index 95c28b3ee2..2c3d180e39 100644 --- a/l10n/oc/settings.po +++ b/l10n/oc/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -22,6 +22,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Pas possible de cargar la tièra dempuèi App Store" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Error d'autentificacion" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "Lo grop existís ja" @@ -46,10 +55,6 @@ msgstr "Corrièl incorrècte" msgid "Unable to delete group" msgstr "Pas capable d'escafar un grop" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Error d'autentificacion" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "Pas capable d'escafar un usancièr" @@ -112,7 +117,7 @@ msgstr "Error" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Enregistra..." @@ -189,67 +194,83 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Senhal" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "Ton senhal a cambiat" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Pas possible de cambiar ton senhal" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Senhal en cors" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Senhal novèl" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "mòstra" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Cambia lo senhal" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "Corrièl" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Ton adreiça de corrièl" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Emplena una adreiça de corrièl per permetre lo mandadís del senhal perdut" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Lenga" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Ajuda a la revirada" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -169,55 +169,55 @@ msgstr "Grudzień" msgid "Settings" msgstr "Ustawienia" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "sekund temu" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "1 minute temu" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "{minutes} minut temu" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "1 godzine temu" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "{hours} godzin temu" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "dziś" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "wczoraj" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "{days} dni temu" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "ostani miesiąc" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "{months} miesięcy temu" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "miesięcy temu" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "ostatni rok" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "lat temu" @@ -572,14 +572,18 @@ msgstr "Proszę zmienić swoje hasło, aby zabezpieczyć swoje konto ponownie." msgid "Lost your password?" msgstr "Nie pamiętasz hasła?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "Zapamiętanie" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Zaloguj" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "wstecz" diff --git a/l10n/pl/files.po b/l10n/pl/files.po index b6554c153a..86f9c33c28 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/files.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -25,46 +25,46 @@ msgstr "" "Language: pl\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Plik nie został załadowany. Nieznany błąd" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Przesłano plik" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Wgrany plik przekracza wartość upload_max_filesize zdefiniowaną w php.ini: " -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Rozmiar przesłanego pliku przekracza maksymalną wartość dyrektywy upload_max_filesize, zawartą formularzu HTML" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Plik przesłano tylko częściowo" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Nie przesłano żadnego pliku" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Brak katalogu tymczasowego" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Błąd zapisu na dysk" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "Za mało miejsca" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Zła ścieżka." @@ -76,11 +76,15 @@ msgstr "Pliki" msgid "Unshare" msgstr "Nie udostępniaj" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Usuwa element" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Zmień nazwę" @@ -185,31 +189,31 @@ msgstr "URL nie może być pusty." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nazwa folderu nieprawidłowa. Wykorzystanie \"Shared\" jest zarezerwowane przez Owncloud" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Nazwa" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Rozmiar" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Czas modyfikacji" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 folder" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} foldery" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 plik" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} pliki" diff --git a/l10n/pl/files_encryption.po b/l10n/pl/files_encryption.po index 21fa364ff1..acf7f3f06e 100644 --- a/l10n/pl/files_encryption.po +++ b/l10n/pl/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-23 00:05+0100\n" -"PO-Revision-Date: 2013-01-22 23:05+0000\n" +"POT-Creation-Date: 2013-02-06 00:05+0100\n" +"PO-Revision-Date: 2013-02-05 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -40,44 +40,22 @@ msgstr "" msgid "Could not change your file encryption password to your login password" msgstr "" -#: templates/settings-personal.php:3 templates/settings.php:5 -msgid "Choose encryption mode:" -msgstr "" - -#: templates/settings-personal.php:20 templates/settings.php:24 -msgid "" -"Client side encryption (most secure but makes it impossible to access your " -"data from the web interface)" -msgstr "" - -#: templates/settings-personal.php:30 templates/settings.php:36 -msgid "" -"Server side encryption (allows you to access your files from the web " -"interface and the desktop client)" -msgstr "" - -#: templates/settings-personal.php:41 templates/settings.php:60 -msgid "None (no encryption at all)" -msgstr "" - -#: templates/settings.php:10 -msgid "" -"Important: Once you selected an encryption mode there is no way to change it" -" back" -msgstr "" - -#: templates/settings.php:48 -msgid "User specific (let the user decide)" -msgstr "" - -#: templates/settings.php:65 +#: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" msgstr "Szyfrowanie" -#: templates/settings.php:67 -msgid "Exclude the following file types from encryption" -msgstr "Wyłącz następujące typy plików z szyfrowania" +#: templates/settings-personal.php:7 +msgid "File encryption is enabled." +msgstr "" -#: templates/settings.php:71 +#: templates/settings-personal.php:11 +msgid "The following file types will not be encrypted:" +msgstr "" + +#: templates/settings.php:7 +msgid "Exclude the following file types from encryption:" +msgstr "" + +#: templates/settings.php:12 msgid "None" msgstr "Brak" diff --git a/l10n/pl/files_trashbin.po b/l10n/pl/files_trashbin.po index 748f62eaac..3f8e7a9564 100644 --- a/l10n/pl/files_trashbin.po +++ b/l10n/pl/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ msgstr "" "Language: pl\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Nazwa" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 folder" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} foldery" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 plik" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} pliki" diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index ffae537e26..7849faf367 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -18,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -32,6 +32,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Nie mogę załadować listy aplikacji" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Błąd uwierzytelniania" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "Grupa już istnieje" @@ -56,10 +65,6 @@ msgstr "Niepoprawny email" msgid "Unable to delete group" msgstr "Nie można usunąć grupy" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Błąd uwierzytelniania" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "Nie można usunąć użytkownika" @@ -122,7 +127,7 @@ msgstr "Błąd" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Zapisywanie..." @@ -199,67 +204,83 @@ msgstr "Pobierz klienta dla Androida" msgid "Download iOS Client" msgstr "Pobierz klienta dla iOS" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Hasło" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "Twoje hasło zostało zmienione" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Nie można zmienić hasła" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Bieżące hasło" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Nowe hasło" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "Wyświetlanie" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Zmień hasło" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "E-mail" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Adres e-mail użytkownika" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Proszę wprowadzić adres e-mail, aby uzyskać możliwość odzyskania hasła" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Język" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Pomóż w tłumaczeniu" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Użyj tego adresu aby podłączyć zasób ownCloud w menedżerze plików" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "Wersja" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" @@ -155,59 +155,59 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:280 templates/layout.user.php:47 templates/layout.user.php:48 +#: js/js.js:280 msgid "Settings" msgstr "Ustawienia" -#: js/js.js:762 +#: js/js.js:760 msgid "seconds ago" msgstr "" -#: js/js.js:763 +#: js/js.js:761 msgid "1 minute ago" msgstr "" -#: js/js.js:764 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:765 +#: js/js.js:763 msgid "1 hour ago" msgstr "" -#: js/js.js:766 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "" -#: js/js.js:767 +#: js/js.js:765 msgid "today" msgstr "" -#: js/js.js:768 +#: js/js.js:766 msgid "yesterday" msgstr "" -#: js/js.js:769 +#: js/js.js:767 msgid "{days} days ago" msgstr "" -#: js/js.js:770 +#: js/js.js:768 msgid "last month" msgstr "" -#: js/js.js:771 +#: js/js.js:769 msgid "{months} months ago" msgstr "" -#: js/js.js:772 +#: js/js.js:770 msgid "months ago" msgstr "" -#: js/js.js:773 +#: js/js.js:771 msgid "last year" msgstr "" -#: js/js.js:774 +#: js/js.js:772 msgid "years ago" msgstr "" @@ -540,7 +540,7 @@ msgstr "" msgid "web services under your control" msgstr "" -#: templates/layout.user.php:32 +#: templates/layout.user.php:49 msgid "Log out" msgstr "" @@ -562,14 +562,18 @@ msgstr "" msgid "Lost your password?" msgstr "" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "" diff --git a/l10n/pl_PL/files.po b/l10n/pl_PL/files.po index ab00380cb6..23c778df2b 100644 --- a/l10n/pl_PL/files.po +++ b/l10n/pl_PL/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-31 17:02+0100\n" -"PO-Revision-Date: 2013-01-31 16:02+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" @@ -17,46 +17,46 @@ msgstr "" "Language: pl_PL\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -68,11 +68,15 @@ msgstr "" msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "" @@ -177,31 +181,31 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "" diff --git a/l10n/pl_PL/files_encryption.po b/l10n/pl_PL/files_encryption.po index ce8f0779ca..2e95f4ce7e 100644 --- a/l10n/pl_PL/files_encryption.po +++ b/l10n/pl_PL/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-23 00:05+0100\n" -"PO-Revision-Date: 2013-01-22 23:05+0000\n" +"POT-Creation-Date: 2013-02-06 00:05+0100\n" +"PO-Revision-Date: 2013-02-05 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" @@ -39,44 +39,22 @@ msgstr "" msgid "Could not change your file encryption password to your login password" msgstr "" -#: templates/settings-personal.php:3 templates/settings.php:5 -msgid "Choose encryption mode:" -msgstr "" - -#: templates/settings-personal.php:20 templates/settings.php:24 -msgid "" -"Client side encryption (most secure but makes it impossible to access your " -"data from the web interface)" -msgstr "" - -#: templates/settings-personal.php:30 templates/settings.php:36 -msgid "" -"Server side encryption (allows you to access your files from the web " -"interface and the desktop client)" -msgstr "" - -#: templates/settings-personal.php:41 templates/settings.php:60 -msgid "None (no encryption at all)" -msgstr "" - -#: templates/settings.php:10 -msgid "" -"Important: Once you selected an encryption mode there is no way to change it" -" back" -msgstr "" - -#: templates/settings.php:48 -msgid "User specific (let the user decide)" -msgstr "" - -#: templates/settings.php:65 +#: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" msgstr "" -#: templates/settings.php:67 -msgid "Exclude the following file types from encryption" +#: templates/settings-personal.php:7 +msgid "File encryption is enabled." msgstr "" -#: templates/settings.php:71 +#: templates/settings-personal.php:11 +msgid "The following file types will not be encrypted:" +msgstr "" + +#: templates/settings.php:7 +msgid "Exclude the following file types from encryption:" +msgstr "" + +#: templates/settings.php:12 msgid "None" msgstr "" diff --git a/l10n/pl_PL/files_trashbin.po b/l10n/pl_PL/files_trashbin.po index ce226803d8..2190a524e9 100644 --- a/l10n/pl_PL/files_trashbin.po +++ b/l10n/pl_PL/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ msgstr "" "Language: pl_PL\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "" diff --git a/l10n/pl_PL/settings.po b/l10n/pl_PL/settings.po index f95716114e..991c4808c5 100644 --- a/l10n/pl_PL/settings.po +++ b/l10n/pl_PL/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" @@ -21,6 +21,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "" @@ -45,10 +54,6 @@ msgstr "" msgid "Unable to delete group" msgstr "" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "" @@ -111,7 +116,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "" @@ -188,67 +193,83 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "Email" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:07+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -170,55 +170,55 @@ msgstr "Dezembro" msgid "Settings" msgstr "Configurações" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "segundos atrás" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "1 minuto atrás" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "{minutes} minutos atrás" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "1 hora atrás" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "{hours} horas atrás" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "hoje" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "ontem" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "{days} dias atrás" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "último mês" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "{months} meses atrás" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "meses atrás" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "último ano" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "anos atrás" @@ -573,14 +573,18 @@ msgstr "Por favor troque sua senha para tornar sua conta segura novamente." msgid "Lost your password?" msgstr "Esqueçeu sua senha?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "lembrete" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Log in" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "anterior" diff --git a/l10n/pt_BR/files.po b/l10n/pt_BR/files.po index c00ceb550f..d9891649b5 100644 --- a/l10n/pt_BR/files.po +++ b/l10n/pt_BR/files.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -26,46 +26,46 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Nenhum arquivo foi transferido. Erro desconhecido" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Não houve nenhum erro, o arquivo foi transferido com sucesso" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "O arquivo enviado excede a diretiva upload_max_filesize no php.ini: " -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "O arquivo carregado excede o MAX_FILE_SIZE que foi especificado no formulário HTML" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "O arquivo foi transferido parcialmente" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Nenhum arquivo foi transferido" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Pasta temporária não encontrada" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Falha ao escrever no disco" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Diretório inválido." @@ -77,11 +77,15 @@ msgstr "Arquivos" msgid "Unshare" msgstr "Descompartilhar" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Excluir" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Renomear" @@ -186,31 +190,31 @@ msgstr "URL não pode ficar em branco" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nome de pasta inválido. O uso de 'Shared' é reservado para o Owncloud" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Nome" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Tamanho" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Modificado" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 pasta" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} pastas" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 arquivo" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} arquivos" diff --git a/l10n/pt_BR/files_encryption.po b/l10n/pt_BR/files_encryption.po index 5c733f9c61..1a4579181b 100644 --- a/l10n/pt_BR/files_encryption.po +++ b/l10n/pt_BR/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-31 00:27+0100\n" -"PO-Revision-Date: 2013-01-30 16:40+0000\n" -"Last-Translator: rodrigost23 \n" +"POT-Creation-Date: 2013-02-06 00:05+0100\n" +"PO-Revision-Date: 2013-02-05 23:05+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -41,44 +41,22 @@ msgstr "Por favor, verifique suas senhas e tente novamente." msgid "Could not change your file encryption password to your login password" msgstr "Não foi possível mudar sua senha de criptografia de arquivos para sua senha de login" -#: templates/settings-personal.php:3 templates/settings.php:5 -msgid "Choose encryption mode:" -msgstr "Escolha o modo de criptografia:" - -#: templates/settings-personal.php:20 templates/settings.php:24 -msgid "" -"Client side encryption (most secure but makes it impossible to access your " -"data from the web interface)" -msgstr "Criptografia por parte do cliente (mais segura, mas torna impossível acessar seus dados a partir da interface web)" - -#: templates/settings-personal.php:30 templates/settings.php:36 -msgid "" -"Server side encryption (allows you to access your files from the web " -"interface and the desktop client)" -msgstr "Criptografia por parte do servidor (permite que você acesse seus arquivos da interface web e do cliente desktop)" - -#: templates/settings-personal.php:41 templates/settings.php:60 -msgid "None (no encryption at all)" -msgstr "Nenhuma (sem qualquer criptografia)" - -#: templates/settings.php:10 -msgid "" -"Important: Once you selected an encryption mode there is no way to change it" -" back" -msgstr "Importante: Uma vez que tiver escolhido um modo de criptografia, não há um meio de voltar atrás" - -#: templates/settings.php:48 -msgid "User specific (let the user decide)" -msgstr "Específico por usuário (deixa o usuário decidir)" - -#: templates/settings.php:65 +#: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" msgstr "Criptografia" -#: templates/settings.php:67 -msgid "Exclude the following file types from encryption" -msgstr "Excluir os seguintes tipos de arquivo da criptografia" +#: templates/settings-personal.php:7 +msgid "File encryption is enabled." +msgstr "" -#: templates/settings.php:71 +#: templates/settings-personal.php:11 +msgid "The following file types will not be encrypted:" +msgstr "" + +#: templates/settings.php:7 +msgid "Exclude the following file types from encryption:" +msgstr "" + +#: templates/settings.php:12 msgid "None" msgstr "Nenhuma" diff --git a/l10n/pt_BR/files_trashbin.po b/l10n/pt_BR/files_trashbin.po index c6586d1029..ef507ea244 100644 --- a/l10n/pt_BR/files_trashbin.po +++ b/l10n/pt_BR/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -18,31 +18,35 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "realizar operação de restauração" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Nome" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "Excluído" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 pasta" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} pastas" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 arquivo" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} arquivos" diff --git a/l10n/pt_BR/settings.po b/l10n/pt_BR/settings.po index 7b1b23da58..de48363261 100644 --- a/l10n/pt_BR/settings.po +++ b/l10n/pt_BR/settings.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -31,6 +31,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Não foi possível carregar lista da App Store" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Erro de autenticação" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "Grupo já existe" @@ -55,10 +64,6 @@ msgstr "E-mail inválido" msgid "Unable to delete group" msgstr "Não foi possível remover grupo" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Erro de autenticação" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "Não foi possível remover usuário" @@ -121,7 +126,7 @@ msgstr "Erro" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Guardando..." @@ -198,67 +203,83 @@ msgstr "Baixar Cliente Android" msgid "Download iOS Client" msgstr "Baixar Cliente iOS" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Senha" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "Sua senha foi alterada" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Não é possivel alterar a sua senha" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Senha atual" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Nova senha" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "mostrar" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Alterar senha" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "Nome de Exibição" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "E-mail" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Seu endereço de e-mail" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Preencha um endereço de e-mail para habilitar a recuperação de senha" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Idioma" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Ajude a traduzir" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Usar este endereço para conectar-se ao seu ownCloud no seu gerenciador de arquivos" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "Versão" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -167,55 +167,55 @@ msgstr "Dezembro" msgid "Settings" msgstr "Definições" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "Minutos atrás" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "Há 1 minuto" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "{minutes} minutos atrás" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "Há 1 hora" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "Há {hours} horas atrás" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "hoje" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "ontem" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "{days} dias atrás" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "ultímo mês" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "Há {months} meses atrás" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "meses atrás" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "ano passado" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "anos atrás" @@ -570,14 +570,18 @@ msgstr "Por favor mude a sua palavra-passe para assegurar a sua conta de novo." msgid "Lost your password?" msgstr "Esqueceu-se da sua password?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "lembrar" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Entrar" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "anterior" diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index 70714ed855..284e463f1a 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 02:40+0000\n" -"Last-Translator: Mouxy \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,46 +25,46 @@ msgstr "" "Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Nenhum ficheiro foi carregado. Erro desconhecido" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Sem erro, ficheiro enviado com sucesso" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "O ficheiro enviado excede o limite permitido na directiva do php.ini upload_max_filesize" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "O ficheiro enviado excede o diretivo MAX_FILE_SIZE especificado no formulário HTML" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "O ficheiro enviado só foi enviado parcialmente" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Não foi enviado nenhum ficheiro" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Falta uma pasta temporária" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Falhou a escrita no disco" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "Espaço em disco insuficiente!" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Directório Inválido" @@ -76,11 +76,15 @@ msgstr "Ficheiros" msgid "Unshare" msgstr "Deixar de partilhar" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Apagar" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Renomear" @@ -185,31 +189,31 @@ msgstr "O URL não pode estar vazio." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nome de pasta inválido. O Uso de 'shared' é reservado para o ownCloud" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Nome" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Tamanho" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Modificado" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 pasta" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} pastas" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 ficheiro" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} ficheiros" diff --git a/l10n/pt_PT/files_encryption.po b/l10n/pt_PT/files_encryption.po index 0ae4844da6..09e55792f7 100644 --- a/l10n/pt_PT/files_encryption.po +++ b/l10n/pt_PT/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-24 00:06+0100\n" -"PO-Revision-Date: 2013-01-23 01:09+0000\n" -"Last-Translator: Mouxy \n" +"POT-Creation-Date: 2013-02-06 00:05+0100\n" +"PO-Revision-Date: 2013-02-05 23:05+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -41,44 +41,22 @@ msgstr "Por favor verifique as suas paswords e tente de novo." msgid "Could not change your file encryption password to your login password" msgstr "Não foi possível alterar a password de encriptação de ficheiros para a sua password de login" -#: templates/settings-personal.php:3 templates/settings.php:5 -msgid "Choose encryption mode:" -msgstr "Escolha o método de encriptação" - -#: templates/settings-personal.php:20 templates/settings.php:24 -msgid "" -"Client side encryption (most secure but makes it impossible to access your " -"data from the web interface)" -msgstr "Encriptação do lado do cliente (mais seguro mas torna possível o acesso aos dados através do interface web)" - -#: templates/settings-personal.php:30 templates/settings.php:36 -msgid "" -"Server side encryption (allows you to access your files from the web " -"interface and the desktop client)" -msgstr "Encriptação do lado do servidor (permite o acesso aos seus ficheiros através do interface web e do cliente de sincronização)" - -#: templates/settings-personal.php:41 templates/settings.php:60 -msgid "None (no encryption at all)" -msgstr "Nenhuma (sem encriptação)" - -#: templates/settings.php:10 -msgid "" -"Important: Once you selected an encryption mode there is no way to change it" -" back" -msgstr "Importante: Uma vez escolhido o modo de encriptação, não existe maneira de o alterar!" - -#: templates/settings.php:48 -msgid "User specific (let the user decide)" -msgstr "Escolhido pelo utilizador" - -#: templates/settings.php:65 +#: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" msgstr "Encriptação" -#: templates/settings.php:67 -msgid "Exclude the following file types from encryption" -msgstr "Excluir da encriptação os seguintes tipo de ficheiros" +#: templates/settings-personal.php:7 +msgid "File encryption is enabled." +msgstr "" -#: templates/settings.php:71 +#: templates/settings-personal.php:11 +msgid "The following file types will not be encrypted:" +msgstr "" + +#: templates/settings.php:7 +msgid "Exclude the following file types from encryption:" +msgstr "" + +#: templates/settings.php:12 msgid "None" msgstr "Nenhum" diff --git a/l10n/pt_PT/files_trashbin.po b/l10n/pt_PT/files_trashbin.po index 3ff3c4b623..5dca5cbe11 100644 --- a/l10n/pt_PT/files_trashbin.po +++ b/l10n/pt_PT/files_trashbin.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 02:40+0000\n" -"Last-Translator: Mouxy \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,31 +18,35 @@ msgstr "" "Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "Restaurar" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Nome" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "Apagado" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 pasta" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} pastas" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 ficheiro" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} ficheiros" diff --git a/l10n/pt_PT/settings.po b/l10n/pt_PT/settings.po index 9071ca3e16..8c1833afc0 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/settings.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 02:40+0000\n" -"Last-Translator: Mouxy \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,6 +29,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Incapaz de carregar a lista da App Store" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Erro de autenticação" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "O grupo já existe" @@ -53,10 +62,6 @@ msgstr "Email inválido" msgid "Unable to delete group" msgstr "Impossível apagar grupo" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Erro de autenticação" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "Impossível apagar utilizador" @@ -119,7 +124,7 @@ msgstr "Erro" msgid "Updated" msgstr "Actualizado" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "A guardar..." @@ -196,67 +201,83 @@ msgstr "Transferir o cliente android" msgid "Download iOS Client" msgstr "Transferir o cliente iOS" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Palavra-chave" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "A sua palavra-passe foi alterada" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Não foi possivel alterar a sua palavra-chave" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Palavra-chave actual" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Nova palavra-chave" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "mostrar" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Alterar palavra-chave" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "Nome público" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "endereço de email" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "O seu endereço de email" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Preencha com o seu endereço de email para ativar a recuperação da palavra-chave" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Idioma" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Ajude a traduzir" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Use este endereço no seu gestor de ficheiros para ligar à sua ownCloud" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "Versão" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -165,55 +165,55 @@ msgstr "Decembrie" msgid "Settings" msgstr "Configurări" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "secunde în urmă" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "1 minut în urmă" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "{minutes} minute in urma" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "Acum o ora" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "{hours} ore în urmă" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "astăzi" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "ieri" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "{days} zile in urma" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "ultima lună" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "{months} luni în urmă" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "luni în urmă" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "ultimul an" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "ani în urmă" @@ -568,14 +568,18 @@ msgstr "Te rog schimba parola pentru ca, contul tau sa fie securizat din nou." msgid "Lost your password?" msgstr "Ai uitat parola?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "amintește" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Autentificare" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "precedentul" diff --git a/l10n/ro/files.po b/l10n/ro/files.po index e6df42f7c7..1310971139 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/files.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -23,46 +23,46 @@ msgstr "" "Language: ro\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Nici un fișier nu a fost încărcat. Eroare necunoscută" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Nicio eroare, fișierul a fost încărcat cu succes" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Fisierul incarcat depaseste upload_max_filesize permisi in php.ini: " -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Fișierul are o dimensiune mai mare decât variabile MAX_FILE_SIZE specificată în formularul HTML" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Fișierul a fost încărcat doar parțial" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Niciun fișier încărcat" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Lipsește un dosar temporar" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Eroare la scriere pe disc" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "Nu este suficient spațiu disponibil" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Director invalid." @@ -74,11 +74,15 @@ msgstr "Fișiere" msgid "Unshare" msgstr "Anulează partajarea" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Șterge" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Redenumire" @@ -183,31 +187,31 @@ msgstr "Adresa URL nu poate fi goală." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Invalid folder name. Usage of 'Shared' is reserved by Ownclou" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Nume" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Dimensiune" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Modificat" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 folder" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} foldare" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 fisier" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} fisiere" diff --git a/l10n/ro/files_encryption.po b/l10n/ro/files_encryption.po index 504f72e85c..10fad6ca46 100644 --- a/l10n/ro/files_encryption.po +++ b/l10n/ro/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-27 00:04+0100\n" -"PO-Revision-Date: 2013-01-26 00:05+0000\n" -"Last-Translator: Dimon Pockemon <>\n" +"POT-Creation-Date: 2013-02-06 00:05+0100\n" +"PO-Revision-Date: 2013-02-05 23:05+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -41,44 +41,22 @@ msgstr "Verifică te rog parolele și înceracă din nou." msgid "Could not change your file encryption password to your login password" msgstr "Nu s-a putut schimba parola de encripție a fișierelor ca parolă de acces" -#: templates/settings-personal.php:3 templates/settings.php:5 -msgid "Choose encryption mode:" -msgstr "Alege tipul de ecripție" - -#: templates/settings-personal.php:20 templates/settings.php:24 -msgid "" -"Client side encryption (most secure but makes it impossible to access your " -"data from the web interface)" -msgstr "Encripție locală (cea mai sigură, dar face ca datele să nu mai fie accesibile din interfața web)" - -#: templates/settings-personal.php:30 templates/settings.php:36 -msgid "" -"Server side encryption (allows you to access your files from the web " -"interface and the desktop client)" -msgstr "Encripție pe server (permite să accesezi datele tale din interfața web și din clientul pentru calculator)" - -#: templates/settings-personal.php:41 templates/settings.php:60 -msgid "None (no encryption at all)" -msgstr "Fără (nici un fel de ecriptare)" - -#: templates/settings.php:10 -msgid "" -"Important: Once you selected an encryption mode there is no way to change it" -" back" -msgstr "Important: Din moment ce ai setat un mod de encriptare, nu mai există metode de a-l schimba înapoi" - -#: templates/settings.php:48 -msgid "User specific (let the user decide)" -msgstr "Spefic fiecărui utilizator (lasă utilizatorul să decidă)" - -#: templates/settings.php:65 +#: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" msgstr "Încriptare" -#: templates/settings.php:67 -msgid "Exclude the following file types from encryption" -msgstr "Exclude următoarele tipuri de fișiere de la încriptare" +#: templates/settings-personal.php:7 +msgid "File encryption is enabled." +msgstr "" -#: templates/settings.php:71 +#: templates/settings-personal.php:11 +msgid "The following file types will not be encrypted:" +msgstr "" + +#: templates/settings.php:7 +msgid "Exclude the following file types from encryption:" +msgstr "" + +#: templates/settings.php:12 msgid "None" msgstr "Niciuna" diff --git a/l10n/ro/files_trashbin.po b/l10n/ro/files_trashbin.po index 180def499d..bf376bb048 100644 --- a/l10n/ro/files_trashbin.po +++ b/l10n/ro/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ msgstr "" "Language: ro\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Nume" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 folder" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} foldare" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 fisier" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} fisiere" diff --git a/l10n/ro/settings.po b/l10n/ro/settings.po index e538f04214..a54bf6ea81 100644 --- a/l10n/ro/settings.po +++ b/l10n/ro/settings.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -28,6 +28,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Imposibil de încărcat lista din App Store" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Eroare de autentificare" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "Grupul există deja" @@ -52,10 +61,6 @@ msgstr "E-mail nevalid" msgid "Unable to delete group" msgstr "Nu s-a putut șterge grupul" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Eroare de autentificare" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "Nu s-a putut șterge utilizatorul" @@ -118,7 +123,7 @@ msgstr "Eroare" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Salvez..." @@ -195,67 +200,83 @@ msgstr "Descarcă client Android" msgid "Download iOS Client" msgstr "Descarcă client iOS" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Parolă" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "Parola a fost modificată" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Imposibil de-ați schimbat parola" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Parola curentă" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Noua parolă" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "afișează" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Schimbă parola" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "Email" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Adresa ta de email" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Completează o adresă de mail pentru a-ți putea recupera parola" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Limba" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Ajută la traducere" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Folosește această adresă pentru a conecta ownCloud cu managerul de fișiere" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "Versiunea" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the , 2012. # Mihail Vasiliev , 2012. # , 2012. +# Sergey , 2013. # , 2013. # , 2012. # , 2011. @@ -17,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-01-31 23:30+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -169,55 +170,55 @@ msgstr "Декабрь" msgid "Settings" msgstr "Настройки" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "несколько секунд назад" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "1 минуту назад" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "{minutes} минут назад" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "час назад" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "{hours} часов назад" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "сегодня" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "вчера" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "{days} дней назад" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "в прошлом месяце" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "{months} месяцев назад" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "несколько месяцев назад" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "в прошлом году" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "несколько лет назад" @@ -266,7 +267,7 @@ msgstr "Открыть доступ" #: js/share.js:29 js/share.js:43 js/share.js:90 js/share.js:93 msgid "Shared" -msgstr "" +msgstr "Общие" #: js/share.js:141 js/share.js:611 msgid "Error while sharing" @@ -389,11 +390,11 @@ msgid "" "The update was unsuccessful. Please report this issue to the ownCloud " "community." -msgstr "" +msgstr "При обновлении произошла ошибка. Пожалуйста сообщите об этом в ownCloud сообщество." #: js/update.js:18 msgid "The update was successful. Redirecting you to ownCloud now." -msgstr "" +msgstr "Обновление прошло успешно. Перенаправляемся в Ваш ownCloud..." #: lostpassword/controller.php:47 msgid "ownCloud password reset" @@ -572,14 +573,18 @@ msgstr "Пожалуйста, смените пароль, чтобы обезо msgid "Lost your password?" msgstr "Забыли пароль?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "запомнить" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Войти" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "пред" diff --git a/l10n/ru/files.po b/l10n/ru/files.po index 63ecf24404..60b9353187 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -9,6 +9,7 @@ # , 2012. # Nick Remeslennikov , 2012. # , 2012. +# Sergey , 2013. # , 2013. # , 2012. # , 2011. @@ -18,8 +19,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -28,46 +29,46 @@ msgstr "" "Language: ru\n" "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);\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Файл не был загружен. Неизвестная ошибка" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Файл успешно загружен" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Файл превышает размер установленный upload_max_filesize в php.ini:" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Файл превышает размер MAX_FILE_SIZE, указаный в HTML-форме" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Файл был загружен не полностью" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Файл не был загружен" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Невозможно найти временную папку" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Ошибка записи на диск" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "Недостаточно свободного места" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Неправильный каталог." @@ -79,11 +80,15 @@ msgstr "Файлы" msgid "Unshare" msgstr "Отменить публикацию" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Удалить" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Переименовать" @@ -117,7 +122,7 @@ msgstr "заменено {new_name} на {old_name}" #: js/filelist.js:280 msgid "perform delete operation" -msgstr "" +msgstr "выполняется операция удаления" #: js/files.js:52 msgid "'.' is an invalid file name." @@ -135,17 +140,17 @@ msgstr "Неправильное имя, '\\', '/', '<', '>', ':', '\"', '|', '? #: js/files.js:78 msgid "Your storage is full, files can not be updated or synced anymore!" -msgstr "" +msgstr "Ваше дисковое пространство полностью заполнено, произведите очистку перед загрузкой новых файлов." #: js/files.js:82 msgid "Your storage is almost full ({usedSpacePercent}%)" -msgstr "" +msgstr "Ваше хранилище почти заполнено ({usedSpacePercent}%)" #: js/files.js:224 msgid "" "Your download is being prepared. This might take some time if the files are " "big." -msgstr "" +msgstr "Загрузка началась. Это может потребовать много времени, если файл большого размера." #: js/files.js:261 msgid "Unable to upload your file as it is a directory or has 0 bytes" @@ -188,31 +193,31 @@ msgstr "Ссылка не может быть пустой." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Неправильное имя каталога. Имя 'Shared' зарезервировано." -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Название" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Размер" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Изменён" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 папка" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} папок" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 файл" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} файлов" @@ -270,7 +275,7 @@ msgstr "Из ссылки" #: templates/index.php:40 msgid "Trash" -msgstr "" +msgstr "Корзина" #: templates/index.php:46 msgid "Cancel upload" @@ -304,4 +309,4 @@ msgstr "Текущее сканирование" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." -msgstr "" +msgstr "Обновление кеша файловой системы..." diff --git a/l10n/ru/files_encryption.po b/l10n/ru/files_encryption.po index 9a2315aa14..b9f437eee8 100644 --- a/l10n/ru/files_encryption.po +++ b/l10n/ru/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-23 00:05+0100\n" -"PO-Revision-Date: 2013-01-22 23:05+0000\n" +"POT-Creation-Date: 2013-02-06 00:05+0100\n" +"PO-Revision-Date: 2013-02-05 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -40,44 +40,22 @@ msgstr "" msgid "Could not change your file encryption password to your login password" msgstr "" -#: templates/settings-personal.php:3 templates/settings.php:5 -msgid "Choose encryption mode:" -msgstr "" - -#: templates/settings-personal.php:20 templates/settings.php:24 -msgid "" -"Client side encryption (most secure but makes it impossible to access your " -"data from the web interface)" -msgstr "" - -#: templates/settings-personal.php:30 templates/settings.php:36 -msgid "" -"Server side encryption (allows you to access your files from the web " -"interface and the desktop client)" -msgstr "" - -#: templates/settings-personal.php:41 templates/settings.php:60 -msgid "None (no encryption at all)" -msgstr "" - -#: templates/settings.php:10 -msgid "" -"Important: Once you selected an encryption mode there is no way to change it" -" back" -msgstr "" - -#: templates/settings.php:48 -msgid "User specific (let the user decide)" -msgstr "" - -#: templates/settings.php:65 +#: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" msgstr "Шифрование" -#: templates/settings.php:67 -msgid "Exclude the following file types from encryption" -msgstr "Исключить шифрование следующих типов файлов" +#: templates/settings-personal.php:7 +msgid "File encryption is enabled." +msgstr "" -#: templates/settings.php:71 +#: templates/settings-personal.php:11 +msgid "The following file types will not be encrypted:" +msgstr "" + +#: templates/settings.php:7 +msgid "Exclude the following file types from encryption:" +msgstr "" + +#: templates/settings.php:12 msgid "None" msgstr "Ничего" diff --git a/l10n/ru/files_trashbin.po b/l10n/ru/files_trashbin.po index b208ca663d..87ecf686fe 100644 --- a/l10n/ru/files_trashbin.po +++ b/l10n/ru/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ msgstr "" "Language: ru\n" "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);\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Имя" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 папка" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} папок" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 файл" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} файлов" diff --git a/l10n/ru/lib.po b/l10n/ru/lib.po index 3426bc6172..f834d506e2 100644 --- a/l10n/ru/lib.po +++ b/l10n/ru/lib.po @@ -7,14 +7,15 @@ # , 2012. # Mihail Vasiliev , 2012. # , 2012. +# Sergey , 2013. # , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-17 00:26+0100\n" -"PO-Revision-Date: 2013-01-16 23:26+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 07:20+0000\n" +"Last-Translator: m4rkell \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" @@ -22,49 +23,49 @@ msgstr "" "Language: ru\n" "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);\n" -#: app.php:301 +#: app.php:313 msgid "Help" msgstr "Помощь" -#: app.php:308 +#: app.php:320 msgid "Personal" msgstr "Личное" -#: app.php:313 +#: app.php:325 msgid "Settings" msgstr "Настройки" -#: app.php:318 +#: app.php:330 msgid "Users" msgstr "Пользователи" -#: app.php:325 +#: app.php:337 msgid "Apps" msgstr "Приложения" -#: app.php:327 +#: app.php:339 msgid "Admin" msgstr "Admin" -#: files.php:365 +#: files.php:202 msgid "ZIP download is turned off." msgstr "ZIP-скачивание отключено." -#: files.php:366 +#: files.php:203 msgid "Files need to be downloaded one by one." msgstr "Файлы должны быть загружены по одному." -#: files.php:366 files.php:391 +#: files.php:203 files.php:228 msgid "Back to Files" msgstr "Назад к файлам" -#: files.php:390 +#: files.php:227 msgid "Selected files too large to generate zip file." msgstr "Выбранные файлы слишком велики, чтобы создать zip файл." -#: helper.php:228 +#: helper.php:226 msgid "couldn't be determined" -msgstr "" +msgstr "Невозможно установить" #: json.php:28 msgid "Application is not enabled" diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index 489a9f51c7..1d09ca48a2 100644 --- a/l10n/ru/settings.po +++ b/l10n/ru/settings.po @@ -10,6 +10,7 @@ # Nick Remeslennikov , 2012. # , 2012. # , 2012. +# Sergey , 2013. # , 2012-2013. # , 2012. # , 2011. @@ -19,8 +20,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -33,6 +34,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Загрузка из App Store запрещена" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Ошибка авторизации" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "Группа уже существует" @@ -57,10 +67,6 @@ msgstr "Неправильный Email" msgid "Unable to delete group" msgstr "Невозможно удалить группу" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Ошибка авторизации" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "Невозможно удалить пользователя" @@ -89,7 +95,7 @@ msgstr "Невозможно удалить пользователя из гру #: ajax/updateapp.php:13 msgid "Couldn't update app." -msgstr "" +msgstr "Невозможно обновить приложение" #: js/apps.js:30 msgid "Update to {appversion}" @@ -105,11 +111,11 @@ msgstr "Включить" #: js/apps.js:55 msgid "Please wait...." -msgstr "" +msgstr "Повремени..." #: js/apps.js:84 msgid "Updating...." -msgstr "" +msgstr "Обновление..." #: js/apps.js:87 msgid "Error while updating app" @@ -121,9 +127,9 @@ msgstr "Ошибка" #: js/apps.js:90 msgid "Updated" -msgstr "" +msgstr "Обновлено" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Сохранение..." @@ -200,67 +206,83 @@ msgstr "Загрузка Android-приложения" msgid "Download iOS Client" msgstr "Загрузка iOS-приложения" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Пароль" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "Ваш пароль изменён" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Невозможно сменить пароль" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Текущий пароль" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Новый пароль" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "показать" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Сменить пароль" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "Отображаемое имя" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "e-mail" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Ваш адрес электронной почты" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Введите адрес электронной почты, чтобы появилась возможность восстановления пароля" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Язык" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Помочь с переводом" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Используйте этот URL для подключения файлового менеджера к Вашему хранилищу" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "Версия" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" @@ -161,55 +161,55 @@ msgstr "Декабрь" msgid "Settings" msgstr "Настройки" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "секунд назад" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr " 1 минуту назад" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "{минуты} минут назад" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "1 час назад" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "{часы} часов назад" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "сегодня" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "вчера" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "{дни} дней назад" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "в прошлом месяце" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "{месяцы} месяцев назад" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "месяц назад" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "в прошлом году" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "лет назад" @@ -564,14 +564,18 @@ msgstr "Пожалуйста, измените пароль, чтобы защи msgid "Lost your password?" msgstr "Забыли пароль?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "запомнить" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Войти" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "предыдущий" diff --git a/l10n/ru_RU/files.po b/l10n/ru_RU/files.po index d0beae0d80..659837c8c9 100644 --- a/l10n/ru_RU/files.po +++ b/l10n/ru_RU/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" @@ -20,46 +20,46 @@ msgstr "" "Language: ru_RU\n" "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);\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Файл не был загружен. Неизвестная ошибка" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Ошибка отсутствует, файл загружен успешно." -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Размер загружаемого файла превышает upload_max_filesize директиву в php.ini:" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Размер загруженного" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Загружаемый файл был загружен частично" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Файл не был загружен" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Отсутствует временная папка" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Не удалось записать на диск" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "Не достаточно свободного места" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Неверный каталог." @@ -71,11 +71,15 @@ msgstr "Файлы" msgid "Unshare" msgstr "Скрыть" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Удалить" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Переименовать" @@ -180,31 +184,31 @@ msgstr "URL не должен быть пустым." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Неверное имя папки. Использование наименования 'Опубликовано' зарезервировано Owncloud" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Имя" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Размер" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Изменен" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 папка" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{количество} папок" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 файл" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{количество} файлов" diff --git a/l10n/ru_RU/files_encryption.po b/l10n/ru_RU/files_encryption.po index 2453fc2cb9..41f89c1b29 100644 --- a/l10n/ru_RU/files_encryption.po +++ b/l10n/ru_RU/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-31 17:02+0100\n" -"PO-Revision-Date: 2013-01-31 12:11+0000\n" -"Last-Translator: AnnaSch \n" +"POT-Creation-Date: 2013-02-06 00:05+0100\n" +"PO-Revision-Date: 2013-02-05 23:05+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -41,44 +41,22 @@ msgstr "Пожалуйста, проверьте Ваш пароль и попр msgid "Could not change your file encryption password to your login password" msgstr "" -#: templates/settings-personal.php:3 templates/settings.php:5 -msgid "Choose encryption mode:" -msgstr "Выберите способ шифрования:" - -#: templates/settings-personal.php:20 templates/settings.php:24 -msgid "" -"Client side encryption (most secure but makes it impossible to access your " -"data from the web interface)" -msgstr "Шифрование на стороне клиента (наиболее безопасно, но делает невозможным получение доступа к Вашим данным по вэб-интерфейсу)" - -#: templates/settings-personal.php:30 templates/settings.php:36 -msgid "" -"Server side encryption (allows you to access your files from the web " -"interface and the desktop client)" -msgstr "Шифрование на стороне сервера (позволяет Вам получить доступ к Вашим файлам по вэб-интерфейсу и десктопному клиенту)" - -#: templates/settings-personal.php:41 templates/settings.php:60 -msgid "None (no encryption at all)" -msgstr "Нет (шифрование полностью отсутствует)" - -#: templates/settings.php:10 -msgid "" -"Important: Once you selected an encryption mode there is no way to change it" -" back" -msgstr "Важно: Невозможно будет изменить выбранный способ шифрования" - -#: templates/settings.php:48 -msgid "User specific (let the user decide)" -msgstr "Специфика пользователя (позволено решить пользователю)" - -#: templates/settings.php:65 +#: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" msgstr "Шифрование" -#: templates/settings.php:67 -msgid "Exclude the following file types from encryption" -msgstr "Исключите следующие типы файлов из шифрования" +#: templates/settings-personal.php:7 +msgid "File encryption is enabled." +msgstr "" -#: templates/settings.php:71 +#: templates/settings-personal.php:11 +msgid "The following file types will not be encrypted:" +msgstr "" + +#: templates/settings.php:7 +msgid "Exclude the following file types from encryption:" +msgstr "" + +#: templates/settings.php:12 msgid "None" msgstr "Ни один" diff --git a/l10n/ru_RU/files_trashbin.po b/l10n/ru_RU/files_trashbin.po index 71505abd66..02991a08ba 100644 --- a/l10n/ru_RU/files_trashbin.po +++ b/l10n/ru_RU/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ msgstr "" "Language: ru_RU\n" "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);\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Имя" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 папка" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{количество} папок" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 файл" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{количество} файлов" diff --git a/l10n/ru_RU/settings.po b/l10n/ru_RU/settings.po index b7258db60a..184b4e73c6 100644 --- a/l10n/ru_RU/settings.po +++ b/l10n/ru_RU/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" @@ -23,6 +23,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Невозможно загрузить список из App Store" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Ошибка авторизации" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "Группа уже существует" @@ -47,10 +56,6 @@ msgstr "Неверный email" msgid "Unable to delete group" msgstr "Невозможно удалить группу" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Ошибка авторизации" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "Невозможно удалить пользователя" @@ -113,7 +118,7 @@ msgstr "Ошибка" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Сохранение" @@ -190,67 +195,83 @@ msgstr "Загрузить клиент под Android " msgid "Download iOS Client" msgstr "Загрузить клиент под iOS " -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Пароль" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "Ваш пароль был изменен" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Невозможно изменить Ваш пароль" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Текущий пароль" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Новый пароль" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "показать" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Изменить пароль" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "Электронная почта" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Адрес Вашей электронной почты" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Введите адрес электронной почты для возможности восстановления пароля" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Язык" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Помогите перевести" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Используйте этот адрес для подключения к ownCloud в Вашем файловом менеджере" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "Версия" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -162,55 +162,55 @@ msgstr "දෙසැම්බර්" msgid "Settings" msgstr "සැකසුම්" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "තත්පරයන්ට පෙර" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "1 මිනිත්තුවකට පෙර" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "අද" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "ඊයේ" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "පෙර මාසයේ" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "මාස කීපයකට පෙර" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "පෙර අවුරුද්දේ" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "අවුරුදු කීපයකට පෙර" @@ -565,14 +565,18 @@ msgstr "" msgid "Lost your password?" msgstr "මුරපදය අමතකද?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "මතක තබාගන්න" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "ප්‍රවේශවන්න" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "පෙර" diff --git a/l10n/si_LK/files.po b/l10n/si_LK/files.po index b61cf98e2d..f98b038c8e 100644 --- a/l10n/si_LK/files.po +++ b/l10n/si_LK/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -19,46 +19,46 @@ msgstr "" "Language: si_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "ගොනුවක් උඩුගත නොවුනි. නොහැඳිනු දෝෂයක්" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "නිවැරදි ව ගොනුව උඩුගත කෙරිනි" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "උඩුගත කළ ගොනුවේ විශාලත්වය HTML පෝරමයේ නියම කළ ඇති MAX_FILE_SIZE විශාලත්වයට වඩා වැඩිය" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "උඩුගත කළ ගොනුවේ කොටසක් පමණක් උඩුගත විය" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "කිසිදු ගොනවක් උඩුගත නොවිනි" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "තාවකාලික ෆොල්ඩරයක් සොයාගත නොහැක" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "තැටිගත කිරීම අසාර්ථකයි" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -70,11 +70,15 @@ msgstr "ගොනු" msgid "Unshare" msgstr "නොබෙදු" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "මකන්න" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "නැවත නම් කරන්න" @@ -179,31 +183,31 @@ msgstr "යොමුව හිස් විය නොහැක" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "නම" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "ප්‍රමාණය" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "වෙනස් කළ" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 ෆොල්ඩරයක්" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 ගොනුවක්" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "" diff --git a/l10n/si_LK/files_encryption.po b/l10n/si_LK/files_encryption.po index 8f8475ed59..14724b9e31 100644 --- a/l10n/si_LK/files_encryption.po +++ b/l10n/si_LK/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-23 00:05+0100\n" -"PO-Revision-Date: 2013-01-22 23:05+0000\n" +"POT-Creation-Date: 2013-02-06 00:05+0100\n" +"PO-Revision-Date: 2013-02-05 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -40,44 +40,22 @@ msgstr "" msgid "Could not change your file encryption password to your login password" msgstr "" -#: templates/settings-personal.php:3 templates/settings.php:5 -msgid "Choose encryption mode:" -msgstr "" - -#: templates/settings-personal.php:20 templates/settings.php:24 -msgid "" -"Client side encryption (most secure but makes it impossible to access your " -"data from the web interface)" -msgstr "" - -#: templates/settings-personal.php:30 templates/settings.php:36 -msgid "" -"Server side encryption (allows you to access your files from the web " -"interface and the desktop client)" -msgstr "" - -#: templates/settings-personal.php:41 templates/settings.php:60 -msgid "None (no encryption at all)" -msgstr "" - -#: templates/settings.php:10 -msgid "" -"Important: Once you selected an encryption mode there is no way to change it" -" back" -msgstr "" - -#: templates/settings.php:48 -msgid "User specific (let the user decide)" -msgstr "" - -#: templates/settings.php:65 +#: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" msgstr "ගුප්ත කේතනය" -#: templates/settings.php:67 -msgid "Exclude the following file types from encryption" -msgstr "මෙම ගොනු වර්ග ගුප්ත කේතනය කිරීමෙන් බැහැරව තබන්න" +#: templates/settings-personal.php:7 +msgid "File encryption is enabled." +msgstr "" -#: templates/settings.php:71 +#: templates/settings-personal.php:11 +msgid "The following file types will not be encrypted:" +msgstr "" + +#: templates/settings.php:7 +msgid "Exclude the following file types from encryption:" +msgstr "" + +#: templates/settings.php:12 msgid "None" msgstr "කිසිවක් නැත" diff --git a/l10n/si_LK/files_trashbin.po b/l10n/si_LK/files_trashbin.po index c5abfae0b8..67a762da98 100644 --- a/l10n/si_LK/files_trashbin.po +++ b/l10n/si_LK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ msgstr "" "Language: si_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "නම" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 ෆොල්ඩරයක්" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 ගොනුවක්" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "" diff --git a/l10n/si_LK/settings.po b/l10n/si_LK/settings.po index 76d2386842..223283dfa9 100644 --- a/l10n/si_LK/settings.po +++ b/l10n/si_LK/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -24,6 +24,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "සත්‍යාපන දෝෂයක්" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "කණ්ඩායම දැනටමත් තිබේ" @@ -48,10 +57,6 @@ msgstr "අවලංගු වි-තැපෑල" msgid "Unable to delete group" msgstr "කණ්ඩායම මැකීමට නොහැක" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "සත්‍යාපන දෝෂයක්" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "පරිශීලකයා මැකීමට නොහැක" @@ -114,7 +119,7 @@ msgstr "දෝෂයක්" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "සුරැකෙමින් පවතී..." @@ -191,67 +196,83 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "මුරපදය" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "ඔබගේ මුර පදය වෙනස් කෙරුණි" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "මුර පදය වෙනස් කළ නොහැකි විය" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "වත්මන් මුරපදය" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "නව මුරපදය" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "ප්‍රදර්ශනය කිරීම" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "මුරපදය වෙනස් කිරීම" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "විද්‍යුත් තැපෑල" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "ඔබගේ විද්‍යුත් තැපෑල" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "මුරපද ප්‍රතිස්ථාපනය සඳහා විද්‍යුත් තැපැල් විස්තර ලබා දෙන්න" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "භාෂාව" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "පරිවර්ථන සහය" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -165,55 +165,55 @@ msgstr "December" msgid "Settings" msgstr "Nastavenia" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "pred sekundami" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "pred minútou" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "pred {minutes} minútami" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "Pred 1 hodinou." -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "Pred {hours} hodinami." -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "dnes" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "včera" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "pred {days} dňami" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "minulý mesiac" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "Pred {months} mesiacmi." -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "pred mesiacmi" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "minulý rok" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "pred rokmi" @@ -568,14 +568,18 @@ msgstr "Prosím, zmeňte svoje heslo pre opätovné zabezpečenie Vášho účtu msgid "Lost your password?" msgstr "Zabudli ste heslo?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "zapamätať" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Prihlásiť sa" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "späť" diff --git a/l10n/sk_SK/files.po b/l10n/sk_SK/files.po index cd6c5db9e9..27b5897355 100644 --- a/l10n/sk_SK/files.po +++ b/l10n/sk_SK/files.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-05 00:19+0100\n" -"PO-Revision-Date: 2013-02-04 20:00+0000\n" -"Last-Translator: mhh \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -73,11 +73,15 @@ msgstr "Súbory" msgid "Unshare" msgstr "Nezdielať" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Odstrániť" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Premenovať" diff --git a/l10n/sk_SK/files_encryption.po b/l10n/sk_SK/files_encryption.po index d2847e30d9..7977f0fe3e 100644 --- a/l10n/sk_SK/files_encryption.po +++ b/l10n/sk_SK/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-30 00:23+0100\n" -"PO-Revision-Date: 2013-01-29 14:49+0000\n" -"Last-Translator: mhh \n" +"POT-Creation-Date: 2013-02-06 00:05+0100\n" +"PO-Revision-Date: 2013-02-05 23:05+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -41,44 +41,22 @@ msgstr "Skontrolujte si heslo a skúste to znovu." msgid "Could not change your file encryption password to your login password" msgstr "Nie je možné zmeniť šifrovacie heslo na prihlasovacie" -#: templates/settings-personal.php:3 templates/settings.php:5 -msgid "Choose encryption mode:" -msgstr "Vyberte režim šifrovania:" - -#: templates/settings-personal.php:20 templates/settings.php:24 -msgid "" -"Client side encryption (most secure but makes it impossible to access your " -"data from the web interface)" -msgstr "Šifrovanie prostredníctvom klienta (najbezpečnejšia voľba, neumožňuje však prístup k súborom z webového rozhrania)" - -#: templates/settings-personal.php:30 templates/settings.php:36 -msgid "" -"Server side encryption (allows you to access your files from the web " -"interface and the desktop client)" -msgstr "Šifrovanie na serveri (umožňuje pristupovať k súborom z webového rozhrania a desktopového klienta)" - -#: templates/settings-personal.php:41 templates/settings.php:60 -msgid "None (no encryption at all)" -msgstr "Žiadne (žiadne šifrovanie)" - -#: templates/settings.php:10 -msgid "" -"Important: Once you selected an encryption mode there is no way to change it" -" back" -msgstr "Dôležité: ak si zvolíte režim šifrovania, nie je možné ho znovu zrušiť" - -#: templates/settings.php:48 -msgid "User specific (let the user decide)" -msgstr "Definovaný používateľom (umožňuje používateľovi vybrať si)" - -#: templates/settings.php:65 +#: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" msgstr "Šifrovanie" -#: templates/settings.php:67 -msgid "Exclude the following file types from encryption" -msgstr "Vynechať nasledujúce súbory pri šifrovaní" +#: templates/settings-personal.php:7 +msgid "File encryption is enabled." +msgstr "" -#: templates/settings.php:71 +#: templates/settings-personal.php:11 +msgid "The following file types will not be encrypted:" +msgstr "" + +#: templates/settings.php:7 +msgid "Exclude the following file types from encryption:" +msgstr "" + +#: templates/settings.php:12 msgid "None" msgstr "Žiadne" diff --git a/l10n/sk_SK/files_trashbin.po b/l10n/sk_SK/files_trashbin.po index e11f6529c5..bc6bc046f1 100644 --- a/l10n/sk_SK/files_trashbin.po +++ b/l10n/sk_SK/files_trashbin.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-05 00:19+0100\n" -"PO-Revision-Date: 2013-02-04 20:00+0000\n" -"Last-Translator: mhh \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,31 +18,35 @@ msgstr "" "Language: sk_SK\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "vykonať obnovu" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Meno" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "Zmazané" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 priečinok" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} priečinkov" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 súbor" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} súborov" diff --git a/l10n/sk_SK/settings.po b/l10n/sk_SK/settings.po index cfaa9da6bc..3ba6310290 100644 --- a/l10n/sk_SK/settings.po +++ b/l10n/sk_SK/settings.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-05 00:19+0100\n" -"PO-Revision-Date: 2013-02-04 20:00+0000\n" -"Last-Translator: mhh \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,6 +27,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Nie je možné nahrať zoznam z App Store" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Chyba pri autentifikácii" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "Skupina už existuje" @@ -51,10 +60,6 @@ msgstr "Neplatný email" msgid "Unable to delete group" msgstr "Nie je možné odstrániť skupinu" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Chyba pri autentifikácii" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "Nie je možné odstrániť používateľa" @@ -117,7 +122,7 @@ msgstr "Chyba" msgid "Updated" msgstr "Aktualizované" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Ukladám..." @@ -194,67 +199,83 @@ msgstr "Stiahnuť Android klienta" msgid "Download iOS Client" msgstr "Stiahnuť iOS klienta" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Heslo" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "Heslo bolo zmenené" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Nie je možné zmeniť vaše heslo" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Aktuálne heslo" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Nové heslo" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "zobraziť" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Zmeniť heslo" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "Zobrazované meno" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "Email" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Vaša emailová adresa" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Vyplňte emailovú adresu pre aktivovanie obnovy hesla" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Jazyk" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Pomôcť s prekladom" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Použite túto adresu pre pripojenie vášho ownCloud k súborovému správcovi" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "Verzia" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -163,55 +163,55 @@ msgstr "december" msgid "Settings" msgstr "Nastavitve" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "pred nekaj sekundami" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "pred minuto" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "pred {minutes} minutami" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "pred 1 uro" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "pred {hours} urami" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "danes" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "včeraj" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "pred {days} dnevi" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "zadnji mesec" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "pred {months} meseci" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "mesecev nazaj" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "lansko leto" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "let nazaj" @@ -566,14 +566,18 @@ msgstr "Spremenite geslo za izboljšanje zaščite računa." msgid "Lost your password?" msgstr "Ali ste pozabili geslo?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "Zapomni si me" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Prijava" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "nazaj" diff --git a/l10n/sl/files.po b/l10n/sl/files.po index 661f1ee107..14da2bd6e2 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -21,46 +21,46 @@ msgstr "" "Language: sl\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Nobena datoteka ni naložena. Neznana napaka." -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Datoteka je uspešno naložena brez napak." -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Naložena datoteka presega dovoljeno velikost. Le-ta je določena z vrstico upload_max_filesize v datoteki php.ini:" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Naložena datoteka presega velikost, ki jo določa parameter MAX_FILE_SIZE v HTML obrazcu" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Datoteka je le delno naložena" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Nobena datoteka ni bila naložena" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Manjka začasna mapa" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Pisanje na disk je spodletelo" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -72,11 +72,15 @@ msgstr "Datoteke" msgid "Unshare" msgstr "Odstrani iz souporabe" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Izbriši" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Preimenuj" @@ -181,31 +185,31 @@ msgstr "Naslov URL ne sme biti prazen." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Ime" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Velikost" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Spremenjeno" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 mapa" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} map" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 datoteka" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} datotek" diff --git a/l10n/sl/files_encryption.po b/l10n/sl/files_encryption.po index 934903b3bc..da59ca9a47 100644 --- a/l10n/sl/files_encryption.po +++ b/l10n/sl/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-23 00:05+0100\n" -"PO-Revision-Date: 2013-01-22 23:05+0000\n" +"POT-Creation-Date: 2013-02-06 00:05+0100\n" +"PO-Revision-Date: 2013-02-05 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -41,44 +41,22 @@ msgstr "" msgid "Could not change your file encryption password to your login password" msgstr "" -#: templates/settings-personal.php:3 templates/settings.php:5 -msgid "Choose encryption mode:" -msgstr "" - -#: templates/settings-personal.php:20 templates/settings.php:24 -msgid "" -"Client side encryption (most secure but makes it impossible to access your " -"data from the web interface)" -msgstr "" - -#: templates/settings-personal.php:30 templates/settings.php:36 -msgid "" -"Server side encryption (allows you to access your files from the web " -"interface and the desktop client)" -msgstr "" - -#: templates/settings-personal.php:41 templates/settings.php:60 -msgid "None (no encryption at all)" -msgstr "" - -#: templates/settings.php:10 -msgid "" -"Important: Once you selected an encryption mode there is no way to change it" -" back" -msgstr "" - -#: templates/settings.php:48 -msgid "User specific (let the user decide)" -msgstr "" - -#: templates/settings.php:65 +#: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" msgstr "Šifriranje" -#: templates/settings.php:67 -msgid "Exclude the following file types from encryption" -msgstr "Navedene vrste datotek naj ne bodo šifrirane" +#: templates/settings-personal.php:7 +msgid "File encryption is enabled." +msgstr "" -#: templates/settings.php:71 +#: templates/settings-personal.php:11 +msgid "The following file types will not be encrypted:" +msgstr "" + +#: templates/settings.php:7 +msgid "Exclude the following file types from encryption:" +msgstr "" + +#: templates/settings.php:12 msgid "None" msgstr "Brez" diff --git a/l10n/sl/files_trashbin.po b/l10n/sl/files_trashbin.po index 835ba52d9a..7e459a7391 100644 --- a/l10n/sl/files_trashbin.po +++ b/l10n/sl/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ msgstr "" "Language: sl\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Ime" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 mapa" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} map" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 datoteka" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} datotek" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index 9ed9b294bd..9046223ab3 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -25,6 +25,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Ni mogoče naložiti seznama iz App Store" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Napaka overitve" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "Skupina že obstaja" @@ -49,10 +58,6 @@ msgstr "Neveljaven elektronski naslov" msgid "Unable to delete group" msgstr "Ni mogoče izbrisati skupine" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Napaka overitve" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "Ni mogoče izbrisati uporabnika" @@ -115,7 +120,7 @@ msgstr "Napaka" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Poteka shranjevanje ..." @@ -192,67 +197,83 @@ msgstr "Prenesi Android odjemalec" msgid "Download iOS Client" msgstr "Prenesi iOS odjemalec" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Geslo" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "Vaše geslo je spremenjeno" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Gesla ni mogoče spremeniti." -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Trenutno geslo" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Novo geslo" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "pokaži" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Spremeni geslo" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "Elektronska pošta" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Vaš elektronski poštni naslov" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Vpišite vaš elektronski naslov in s tem omogočite obnovitev gesla" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Jezik" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Pomagajte pri prevajanju" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Uporabite ta naslov za povezavo do ownCloud v vašem upravljalniku datotek." -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "Različica" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -162,55 +162,55 @@ msgstr "Децембар" msgid "Settings" msgstr "Подешавања" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "пре неколико секунди" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "пре 1 минут" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "пре {minutes} минута" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "Пре једног сата" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "Пре {hours} сата (сати)" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "данас" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "јуче" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "пре {days} дана" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "прошлог месеца" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "Пре {months} месеца (месеци)" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "месеци раније" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "прошле године" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "година раније" @@ -565,14 +565,18 @@ msgstr "Промените лозинку да бисте обезбедили msgid "Lost your password?" msgstr "Изгубили сте лозинку?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "упамти" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Пријава" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "претходно" diff --git a/l10n/sr/files.po b/l10n/sr/files.po index a234e81648..2a3bb82934 100644 --- a/l10n/sr/files.po +++ b/l10n/sr/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 15:00+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -20,46 +20,46 @@ msgstr "" "Language: sr\n" "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);\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Није дошло до грешке. Датотека је успешно отпремљена." -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Отпремљена датотека прелази смерницу upload_max_filesize у датотеци php.ini:" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Отпремљена датотека прелази смерницу MAX_FILE_SIZE која је наведена у HTML обрасцу" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Датотека је делимично отпремљена" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Датотека није отпремљена" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Недостаје привремена фасцикла" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Не могу да пишем на диск" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -71,11 +71,15 @@ msgstr "Датотеке" msgid "Unshare" msgstr "Укини дељење" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Обриши" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Преименуј" @@ -180,31 +184,31 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Назив" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Величина" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Измењено" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 фасцикла" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} фасцикле/и" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 датотека" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} датотеке/а" diff --git a/l10n/sr/files_encryption.po b/l10n/sr/files_encryption.po index 7765fc06e6..4578d74732 100644 --- a/l10n/sr/files_encryption.po +++ b/l10n/sr/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-23 00:05+0100\n" -"PO-Revision-Date: 2013-01-22 23:05+0000\n" +"POT-Creation-Date: 2013-02-06 00:05+0100\n" +"PO-Revision-Date: 2013-02-05 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -41,44 +41,22 @@ msgstr "" msgid "Could not change your file encryption password to your login password" msgstr "" -#: templates/settings-personal.php:3 templates/settings.php:5 -msgid "Choose encryption mode:" -msgstr "" - -#: templates/settings-personal.php:20 templates/settings.php:24 -msgid "" -"Client side encryption (most secure but makes it impossible to access your " -"data from the web interface)" -msgstr "" - -#: templates/settings-personal.php:30 templates/settings.php:36 -msgid "" -"Server side encryption (allows you to access your files from the web " -"interface and the desktop client)" -msgstr "" - -#: templates/settings-personal.php:41 templates/settings.php:60 -msgid "None (no encryption at all)" -msgstr "" - -#: templates/settings.php:10 -msgid "" -"Important: Once you selected an encryption mode there is no way to change it" -" back" -msgstr "" - -#: templates/settings.php:48 -msgid "User specific (let the user decide)" -msgstr "" - -#: templates/settings.php:65 +#: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" msgstr "Шифровање" -#: templates/settings.php:67 -msgid "Exclude the following file types from encryption" -msgstr "Не шифруј следеће типове датотека" +#: templates/settings-personal.php:7 +msgid "File encryption is enabled." +msgstr "" -#: templates/settings.php:71 +#: templates/settings-personal.php:11 +msgid "The following file types will not be encrypted:" +msgstr "" + +#: templates/settings.php:7 +msgid "Exclude the following file types from encryption:" +msgstr "" + +#: templates/settings.php:12 msgid "None" msgstr "Ништа" diff --git a/l10n/sr/files_sharing.po b/l10n/sr/files_sharing.po index 345fb947c1..d2e787a42c 100644 --- a/l10n/sr/files_sharing.po +++ b/l10n/sr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-24 00:06+0100\n" -"PO-Revision-Date: 2013-01-23 08:30+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 17:30+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -19,30 +19,30 @@ msgstr "" #: templates/authenticate.php:4 msgid "Password" -msgstr "" +msgstr "Лозинка" #: templates/authenticate.php:6 msgid "Submit" msgstr "Пошаљи" -#: templates/public.php:17 +#: templates/public.php:9 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:19 +#: templates/public.php:11 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:22 templates/public.php:38 +#: templates/public.php:14 templates/public.php:30 msgid "Download" -msgstr "" +msgstr "Преузми" -#: templates/public.php:37 +#: templates/public.php:29 msgid "No preview available for" msgstr "" -#: templates/public.php:43 +#: templates/public.php:35 msgid "web services under your control" msgstr "" diff --git a/l10n/sr/files_trashbin.po b/l10n/sr/files_trashbin.po index 5274cee524..fb4b9633bc 100644 --- a/l10n/sr/files_trashbin.po +++ b/l10n/sr/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -18,31 +18,35 @@ msgstr "" "Language: sr\n" "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);\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "врати у претходно стање" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Име" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "Обрисано" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 фасцикла" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} фасцикле/и" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 датотека" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} датотеке/а" diff --git a/l10n/sr/lib.po b/l10n/sr/lib.po index 58c80f3e1f..5f6cad797a 100644 --- a/l10n/sr/lib.po +++ b/l10n/sr/lib.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 15:00+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 17:30+0000\n" "Last-Translator: Rancher \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -20,27 +20,27 @@ msgstr "" "Language: sr\n" "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);\n" -#: app.php:312 +#: app.php:313 msgid "Help" msgstr "Помоћ" -#: app.php:319 +#: app.php:320 msgid "Personal" msgstr "Лично" -#: app.php:324 +#: app.php:325 msgid "Settings" msgstr "Поставке" -#: app.php:329 +#: app.php:330 msgid "Users" msgstr "Корисници" -#: app.php:336 +#: app.php:337 msgid "Apps" msgstr "Апликације" -#: app.php:338 +#: app.php:339 msgid "Admin" msgstr "Администратор" diff --git a/l10n/sr/settings.po b/l10n/sr/settings.po index 64e5a5df37..57f48decd5 100644 --- a/l10n/sr/settings.po +++ b/l10n/sr/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -23,6 +23,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Грешка приликом учитавања списка из Складишта Програма" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Грешка при аутентификацији" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "Група већ постоји" @@ -47,10 +56,6 @@ msgstr "Неисправна е-адреса" msgid "Unable to delete group" msgstr "Не могу да уклоним групу" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Грешка при аутентификацији" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "Не могу да уклоним корисника" @@ -113,7 +118,7 @@ msgstr "Грешка" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Чување у току..." @@ -190,67 +195,83 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Лозинка" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "Лозинка је промењена" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Не могу да изменим вашу лозинку" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Тренутна лозинка" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Нова лозинка" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "прикажи" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Измени лозинку" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "Е-пошта" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Ваша адреса е-поште" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Ун" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Језик" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr " Помозите у превођењу" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-02-06 00:05+0100\n" +"PO-Revision-Date: 2013-02-05 20:40+0000\n" +"Last-Translator: Rancher \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -92,16 +93,16 @@ msgstr "" #: templates/settings.php:21 msgid "Host" -msgstr "" +msgstr "Домаћин" #: templates/settings.php:21 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" -msgstr "" +msgstr "Можете да изоставите протокол, осим ако захтевате SSL. У том случају почните са ldaps://." #: templates/settings.php:22 msgid "Base DN" -msgstr "" +msgstr "База DN" #: templates/settings.php:22 msgid "One Base DN per line" @@ -113,62 +114,62 @@ msgstr "" #: templates/settings.php:23 msgid "User DN" -msgstr "" +msgstr "Корисник DN" #: templates/settings.php:23 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." -msgstr "" +msgstr "DN корисника клијента са којим треба да се успостави веза, нпр. uid=agent,dc=example,dc=com. За анониман приступ, оставите поља DN и лозинка празним." #: templates/settings.php:24 msgid "Password" -msgstr "" +msgstr "Лозинка" #: templates/settings.php:24 msgid "For anonymous access, leave DN and Password empty." -msgstr "" +msgstr "За анониман приступ, оставите поља DN и лозинка празним." #: templates/settings.php:25 msgid "User Login Filter" -msgstr "" +msgstr "Филтер за пријаву корисника" #: templates/settings.php:25 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." -msgstr "" +msgstr "Одређује филтер за примењивање при покушају пријаве. %%uid замењује корисничко име." #: templates/settings.php:25 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" -msgstr "" +msgstr "користите чувар места %%uid, нпр. „uid=%%uid\"" #: templates/settings.php:26 msgid "User List Filter" -msgstr "" +msgstr "Филтер за списак корисника" #: templates/settings.php:26 msgid "Defines the filter to apply, when retrieving users." -msgstr "" +msgstr "Одређује филтер за примењивање при прибављању корисника." #: templates/settings.php:26 msgid "without any placeholder, e.g. \"objectClass=person\"." -msgstr "" +msgstr "без икаквог чувара места, нпр. „objectClass=person“." #: templates/settings.php:27 msgid "Group Filter" -msgstr "" +msgstr "Филтер групе" #: templates/settings.php:27 msgid "Defines the filter to apply, when retrieving groups." -msgstr "" +msgstr "Одређује филтер за примењивање при прибављању група." #: templates/settings.php:27 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." -msgstr "" +msgstr "без икаквог чувара места, нпр. „objectClass=posixGroup“." #: templates/settings.php:31 msgid "Connection Settings" @@ -184,7 +185,7 @@ msgstr "" #: templates/settings.php:34 msgid "Port" -msgstr "" +msgstr "Порт" #: templates/settings.php:35 msgid "Backup (Replica) Host" @@ -210,33 +211,33 @@ msgstr "" #: templates/settings.php:38 msgid "Use TLS" -msgstr "" +msgstr "Користи TLS" #: templates/settings.php:38 msgid "Do not use it for SSL connections, it will fail." -msgstr "" +msgstr "Не користите за SSL везе јер неће радити." #: templates/settings.php:39 msgid "Case insensitve LDAP server (Windows)" -msgstr "" +msgstr "LDAP сервер осетљив на велика и мала слова (Windows)" #: templates/settings.php:40 msgid "Turn off SSL certificate validation." -msgstr "" +msgstr "Искључите потврду SSL сертификата." #: templates/settings.php:40 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." -msgstr "" +msgstr "Увезите SSL сертификат LDAP сервера у свој ownCloud ако веза ради само са овом опцијом." #: templates/settings.php:40 msgid "Not recommended, use for testing only." -msgstr "" +msgstr "Не препоручује се; користите само за тестирање." #: templates/settings.php:41 msgid "in seconds. A change empties the cache." -msgstr "" +msgstr "у секундама. Промена испражњава кеш меморију." #: templates/settings.php:43 msgid "Directory Settings" @@ -244,15 +245,15 @@ msgstr "" #: templates/settings.php:45 msgid "User Display Name Field" -msgstr "" +msgstr "Име приказа корисника" #: templates/settings.php:45 msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "" +msgstr "LDAP атрибут за стварање имена ownCloud-а корисника." #: templates/settings.php:46 msgid "Base User Tree" -msgstr "" +msgstr "Основно стабло корисника" #: templates/settings.php:46 msgid "One User Base DN per line" @@ -268,15 +269,15 @@ msgstr "" #: templates/settings.php:48 msgid "Group Display Name Field" -msgstr "" +msgstr "Име приказа групе" #: templates/settings.php:48 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "" +msgstr "LDAP атрибут за стварање имена ownCloud-а групе." #: templates/settings.php:49 msgid "Base Group Tree" -msgstr "" +msgstr "Основна стабло група" #: templates/settings.php:49 msgid "One Group Base DN per line" @@ -288,7 +289,7 @@ msgstr "" #: templates/settings.php:51 msgid "Group-Member association" -msgstr "" +msgstr "Придруживање чланова у групу" #: templates/settings.php:53 msgid "Special Attributes" @@ -296,7 +297,7 @@ msgstr "" #: templates/settings.php:56 msgid "in bytes" -msgstr "" +msgstr "у бајтовима" #: templates/settings.php:58 msgid "" diff --git a/l10n/sr@latin/core.po b/l10n/sr@latin/core.po index fd54f215b9..57d7af27d1 100644 --- a/l10n/sr@latin/core.po +++ b/l10n/sr@latin/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-30 00:23+0100\n" -"PO-Revision-Date: 2013-01-29 23:23+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:07+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -156,59 +156,59 @@ msgstr "Novembar" msgid "December" msgstr "Decembar" -#: js/js.js:280 templates/layout.user.php:47 templates/layout.user.php:48 +#: js/js.js:280 msgid "Settings" msgstr "Podešavanja" -#: js/js.js:762 +#: js/js.js:760 msgid "seconds ago" msgstr "" -#: js/js.js:763 +#: js/js.js:761 msgid "1 minute ago" msgstr "" -#: js/js.js:764 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:765 +#: js/js.js:763 msgid "1 hour ago" msgstr "" -#: js/js.js:766 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "" -#: js/js.js:767 +#: js/js.js:765 msgid "today" msgstr "" -#: js/js.js:768 +#: js/js.js:766 msgid "yesterday" msgstr "" -#: js/js.js:769 +#: js/js.js:767 msgid "{days} days ago" msgstr "" -#: js/js.js:770 +#: js/js.js:768 msgid "last month" msgstr "" -#: js/js.js:771 +#: js/js.js:769 msgid "{months} months ago" msgstr "" -#: js/js.js:772 +#: js/js.js:770 msgid "months ago" msgstr "" -#: js/js.js:773 +#: js/js.js:771 msgid "last year" msgstr "" -#: js/js.js:774 +#: js/js.js:772 msgid "years ago" msgstr "" @@ -541,7 +541,7 @@ msgstr "Završi podešavanje" msgid "web services under your control" msgstr "" -#: templates/layout.user.php:32 +#: templates/layout.user.php:49 msgid "Log out" msgstr "Odjava" @@ -563,14 +563,18 @@ msgstr "" msgid "Lost your password?" msgstr "Izgubili ste lozinku?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "upamti" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "prethodno" diff --git a/l10n/sr@latin/files.po b/l10n/sr@latin/files.po index 8449546599..1b5ac038d1 100644 --- a/l10n/sr@latin/files.po +++ b/l10n/sr@latin/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:30+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -18,46 +18,46 @@ msgstr "" "Language: sr@latin\n" "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);\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Nema greške, fajl je uspešno poslat" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Poslati fajl prevazilazi direktivu MAX_FILE_SIZE koja je navedena u HTML formi" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Poslati fajl je samo delimično otpremljen!" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Nijedan fajl nije poslat" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Nedostaje privremena fascikla" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -69,11 +69,15 @@ msgstr "Fajlovi" msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Obriši" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "" @@ -178,31 +182,31 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Ime" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Veličina" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Zadnja izmena" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "" diff --git a/l10n/sr@latin/files_encryption.po b/l10n/sr@latin/files_encryption.po index 39f12cfb59..55b2d059ad 100644 --- a/l10n/sr@latin/files_encryption.po +++ b/l10n/sr@latin/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-23 00:05+0100\n" -"PO-Revision-Date: 2013-01-22 23:05+0000\n" +"POT-Creation-Date: 2013-02-06 00:05+0100\n" +"PO-Revision-Date: 2013-02-05 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -39,44 +39,22 @@ msgstr "" msgid "Could not change your file encryption password to your login password" msgstr "" -#: templates/settings-personal.php:3 templates/settings.php:5 -msgid "Choose encryption mode:" -msgstr "" - -#: templates/settings-personal.php:20 templates/settings.php:24 -msgid "" -"Client side encryption (most secure but makes it impossible to access your " -"data from the web interface)" -msgstr "" - -#: templates/settings-personal.php:30 templates/settings.php:36 -msgid "" -"Server side encryption (allows you to access your files from the web " -"interface and the desktop client)" -msgstr "" - -#: templates/settings-personal.php:41 templates/settings.php:60 -msgid "None (no encryption at all)" -msgstr "" - -#: templates/settings.php:10 -msgid "" -"Important: Once you selected an encryption mode there is no way to change it" -" back" -msgstr "" - -#: templates/settings.php:48 -msgid "User specific (let the user decide)" -msgstr "" - -#: templates/settings.php:65 +#: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" msgstr "" -#: templates/settings.php:67 -msgid "Exclude the following file types from encryption" +#: templates/settings-personal.php:7 +msgid "File encryption is enabled." msgstr "" -#: templates/settings.php:71 +#: templates/settings-personal.php:11 +msgid "The following file types will not be encrypted:" +msgstr "" + +#: templates/settings.php:7 +msgid "Exclude the following file types from encryption:" +msgstr "" + +#: templates/settings.php:12 msgid "None" msgstr "" diff --git a/l10n/sr@latin/files_trashbin.po b/l10n/sr@latin/files_trashbin.po index 358a19f433..da3cf064a6 100644 --- a/l10n/sr@latin/files_trashbin.po +++ b/l10n/sr@latin/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ msgstr "" "Language: sr@latin\n" "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);\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Ime" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "" diff --git a/l10n/sr@latin/settings.po b/l10n/sr@latin/settings.po index 693e317cb9..f5f05886b6 100644 --- a/l10n/sr@latin/settings.po +++ b/l10n/sr@latin/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -22,6 +22,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Greška pri autentifikaciji" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "" @@ -46,10 +55,6 @@ msgstr "" msgid "Unable to delete group" msgstr "" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Greška pri autentifikaciji" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "" @@ -112,7 +117,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "" @@ -189,67 +194,83 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Lozinka" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Ne mogu da izmenim vašu lozinku" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Trenutna lozinka" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Nova lozinka" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "prikaži" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Izmeni lozinku" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "E-mail" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Jezik" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -166,55 +166,55 @@ msgstr "December" msgid "Settings" msgstr "Inställningar" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "sekunder sedan" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "1 minut sedan" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "{minutes} minuter sedan" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "1 timme sedan" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "{hours} timmar sedan" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "i dag" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "i går" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "{days} dagar sedan" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "förra månaden" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "{months} månader sedan" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "månader sedan" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "förra året" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "år sedan" @@ -569,14 +569,18 @@ msgstr "Ändra genast lösenord för att säkra ditt konto." msgid "Lost your password?" msgstr "Glömt ditt lösenord?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "kom ihåg" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Logga in" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "föregående" diff --git a/l10n/sv/files.po b/l10n/sv/files.po index 0cb9753185..1abbf3debc 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/files.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 02:10+0000\n" -"Last-Translator: Lokal_Profil \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,46 +24,46 @@ msgstr "" "Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Ingen fil uppladdad. Okänt fel" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Inga fel uppstod. Filen laddades upp utan problem" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Den uppladdade filen överskrider upload_max_filesize direktivet php.ini:" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Den uppladdade filen överstiger MAX_FILE_SIZE direktivet som anges i HTML-formulär" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Den uppladdade filen var endast delvis uppladdad" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Ingen fil blev uppladdad" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Saknar en tillfällig mapp" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Misslyckades spara till disk" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "Inte tillräckligt med utrymme tillgängligt" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Felaktig mapp." @@ -75,11 +75,15 @@ msgstr "Filer" msgid "Unshare" msgstr "Sluta dela" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Radera" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Byt namn" @@ -184,31 +188,31 @@ msgstr "URL kan inte vara tom." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Ogiltigt mappnamn. Användande av 'Shared' är reserverat av ownCloud" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Namn" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Storlek" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Ändrad" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 mapp" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} mappar" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 fil" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} filer" diff --git a/l10n/sv/files_encryption.po b/l10n/sv/files_encryption.po index cb599b8ee0..3c52fd7278 100644 --- a/l10n/sv/files_encryption.po +++ b/l10n/sv/files_encryption.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# André , 2013. # Magnus Höglund , 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-25 00:05+0100\n" -"PO-Revision-Date: 2013-01-24 20:45+0000\n" -"Last-Translator: Magnus Höglund \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 02:41+0000\n" +"Last-Translator: Lokal_Profil \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" @@ -40,44 +41,22 @@ msgstr "Kontrollera dina lösenord och försök igen." msgid "Could not change your file encryption password to your login password" msgstr "Kunde inte ändra ditt filkrypteringslösenord till ditt loginlösenord" -#: templates/settings-personal.php:3 templates/settings.php:5 -msgid "Choose encryption mode:" -msgstr "Välj krypteringsläge:" - -#: templates/settings-personal.php:20 templates/settings.php:24 -msgid "" -"Client side encryption (most secure but makes it impossible to access your " -"data from the web interface)" -msgstr "Kryptering på klientsidan (säkraste men gör det omöjligt att komma åt dina filer med en webbläsare)" - -#: templates/settings-personal.php:30 templates/settings.php:36 -msgid "" -"Server side encryption (allows you to access your files from the web " -"interface and the desktop client)" -msgstr "Kryptering på serversidan (kan komma åt dina filer från webbläsare och datorklient)" - -#: templates/settings-personal.php:41 templates/settings.php:60 -msgid "None (no encryption at all)" -msgstr "Ingen (ingen kryptering alls)" - -#: templates/settings.php:10 -msgid "" -"Important: Once you selected an encryption mode there is no way to change it" -" back" -msgstr "Viktigt: När du har valt ett krypteringsläge finns det inget sätt att ändra tillbaka" - -#: templates/settings.php:48 -msgid "User specific (let the user decide)" -msgstr "Användarspecifik (låter användaren bestämma)" - -#: templates/settings.php:65 +#: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" msgstr "Kryptering" -#: templates/settings.php:67 -msgid "Exclude the following file types from encryption" -msgstr "Exkludera följande filtyper från kryptering" +#: templates/settings-personal.php:7 +msgid "File encryption is enabled." +msgstr "Filkryptering är aktiverat." -#: templates/settings.php:71 +#: templates/settings-personal.php:11 +msgid "The following file types will not be encrypted:" +msgstr "Följande filtyper kommer inte att krypteras:" + +#: templates/settings.php:7 +msgid "Exclude the following file types from encryption:" +msgstr "Exkludera följande filtyper från kryptering:" + +#: templates/settings.php:12 msgid "None" msgstr "Ingen" diff --git a/l10n/sv/files_trashbin.po b/l10n/sv/files_trashbin.po index d68d5954fe..897bddc00e 100644 --- a/l10n/sv/files_trashbin.po +++ b/l10n/sv/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -18,31 +18,35 @@ msgstr "" "Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" +msgstr "utför återställning" + +#: js/trash.js:33 +msgid "delete file permanently" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Namn" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "Raderad" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 mapp" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} mappar" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 fil" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} filer" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index 9891f7d1ec..c51345d430 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 00:50+0000\n" -"Last-Translator: Lokal_Profil \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,6 +30,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Kan inte ladda listan från App Store" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Autentiseringsfel" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "Gruppen finns redan" @@ -54,10 +63,6 @@ msgstr "Ogiltig e-post" msgid "Unable to delete group" msgstr "Kan inte radera grupp" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Autentiseringsfel" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "Kan inte radera användare" @@ -120,7 +125,7 @@ msgstr "Fel" msgid "Updated" msgstr "Uppdaterad" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Sparar..." @@ -197,67 +202,83 @@ msgstr "Ladda ner klient för Android" msgid "Download iOS Client" msgstr "Ladda ner klient för iOS" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Lösenord" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "Ditt lösenord har ändrats" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Kunde inte ändra ditt lösenord" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Nuvarande lösenord" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Nytt lösenord" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "visa" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Ändra lösenord" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "Visat namn" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "E-post" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Din e-postadress" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Fyll i en e-postadress för att aktivera återställning av lösenord" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Språk" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Hjälp att översätta" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Använd denna adress för att ansluta till ownCloud i din filhanterare" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "Version" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the , 2013. # André , 2013. # Magnus Höglund , 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-02-06 00:05+0100\n" +"PO-Revision-Date: 2013-02-05 14:20+0000\n" +"Last-Translator: danielholm \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" @@ -31,7 +32,7 @@ msgstr "Inställningen är giltig och anslutningen kunde upprättas!" msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." -msgstr "" +msgstr "Konfigurationen är riktig, men Bind felade. Var vänlig och kontrollera serverinställningar och logininformation." #: ajax/testConfiguration.php:40 msgid "" @@ -45,7 +46,7 @@ msgstr "Raderingen misslyckades" #: js/settings.js:82 msgid "Take over settings from recent server configuration?" -msgstr "" +msgstr "Ta över inställningar från tidigare serverkonfiguration?" #: js/settings.js:83 msgid "Keep settings?" @@ -174,15 +175,15 @@ msgstr "utan platshållare, t.ex. \"objectClass=posixGroup\"." #: templates/settings.php:31 msgid "Connection Settings" -msgstr "" +msgstr "Uppkopplingsinställningar" #: templates/settings.php:33 msgid "Configuration Active" -msgstr "" +msgstr "Konfiguration aktiv" #: templates/settings.php:33 msgid "When unchecked, this configuration will be skipped." -msgstr "" +msgstr "Ifall denna är avbockad så kommer konfigurationen att skippas." #: templates/settings.php:34 msgid "Port" @@ -190,17 +191,17 @@ msgstr "Port" #: templates/settings.php:35 msgid "Backup (Replica) Host" -msgstr "" +msgstr "Säkerhetskopierings-värd (Replika)" #: templates/settings.php:35 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." -msgstr "" +msgstr "Ange en valfri värd för säkerhetskopiering. Den måste vara en replika av den huvudsakliga LDAP/AD-servern" #: templates/settings.php:36 msgid "Backup (Replica) Port" -msgstr "" +msgstr "Säkerhetskopierins-port (Replika)" #: templates/settings.php:37 msgid "Disable Main Server" @@ -208,7 +209,7 @@ msgstr "Inaktivera huvudserver" #: templates/settings.php:37 msgid "When switched on, ownCloud will only connect to the replica server." -msgstr "" +msgstr "När denna är påkopplad kommer ownCloud att koppla upp till replika-servern, endast." #: templates/settings.php:38 msgid "Use TLS" @@ -242,7 +243,7 @@ msgstr "i sekunder. En förändring tömmer cache." #: templates/settings.php:43 msgid "Directory Settings" -msgstr "" +msgstr "Mappinställningar" #: templates/settings.php:45 msgid "User Display Name Field" @@ -262,11 +263,11 @@ msgstr "En Användare start DN per rad" #: templates/settings.php:47 msgid "User Search Attributes" -msgstr "" +msgstr "Användarsökningsattribut" #: templates/settings.php:47 templates/settings.php:50 msgid "Optional; one attribute per line" -msgstr "" +msgstr "Valfritt; ett attribut per rad" #: templates/settings.php:48 msgid "Group Display Name Field" @@ -286,7 +287,7 @@ msgstr "En Grupp start DN per rad" #: templates/settings.php:50 msgid "Group Search Attributes" -msgstr "" +msgstr "Gruppsökningsattribut" #: templates/settings.php:51 msgid "Group-Member association" @@ -294,7 +295,7 @@ msgstr "Attribut för gruppmedlemmar" #: templates/settings.php:53 msgid "Special Attributes" -msgstr "" +msgstr "Specialattribut" #: templates/settings.php:56 msgid "in bytes" diff --git a/l10n/ta_LK/core.po b/l10n/ta_LK/core.po index 08005ae093..ff63ed2170 100644 --- a/l10n/ta_LK/core.po +++ b/l10n/ta_LK/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-01-31 23:30+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -160,55 +160,55 @@ msgstr "மார்கழி" msgid "Settings" msgstr "அமைப்புகள்" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "செக்கன்களுக்கு முன்" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "1 நிமிடத்திற்கு முன் " -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "{நிமிடங்கள்} நிமிடங்களுக்கு முன் " -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "1 மணித்தியாலத்திற்கு முன்" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "{மணித்தியாலங்கள்} மணித்தியாலங்களிற்கு முன்" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "இன்று" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "நேற்று" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "{நாட்கள்} நாட்களுக்கு முன்" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "கடந்த மாதம்" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "{மாதங்கள்} மாதங்களிற்கு முன்" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "மாதங்களுக்கு முன்" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "கடந்த வருடம்" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "வருடங்களுக்கு முன்" @@ -563,14 +563,18 @@ msgstr "உங்களுடைய கணக்கை மீண்டும் msgid "Lost your password?" msgstr "உங்கள் கடவுச்சொல்லை தொலைத்துவிட்டீர்களா?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "ஞாபகப்படுத்துக" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "புகுபதிகை" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "முந்தைய" diff --git a/l10n/ta_LK/files.po b/l10n/ta_LK/files.po index 392eb89ac4..981b7fbcc8 100644 --- a/l10n/ta_LK/files.po +++ b/l10n/ta_LK/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -18,46 +18,46 @@ msgstr "" "Language: ta_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "ஒரு கோப்பும் பதிவேற்றப்படவில்லை. அறியப்படாத வழு" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "இங்கு வழு இல்லை, கோப்பு வெற்றிகரமாக பதிவேற்றப்பட்டது" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "பதிவேற்றப்பட்ட கோப்பானது HTML படிவத்தில் குறிப்பிடப்பட்டுள்ள MAX_FILE_SIZE directive ஐ விட கூடியது" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "பதிவேற்றப்பட்ட கோப்பானது பகுதியாக மட்டுமே பதிவேற்றப்பட்டுள்ளது" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "எந்த கோப்பும் பதிவேற்றப்படவில்லை" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "ஒரு தற்காலிகமான கோப்புறையை காணவில்லை" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "வட்டில் எழுத முடியவில்லை" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -69,11 +69,15 @@ msgstr "கோப்புகள்" msgid "Unshare" msgstr "பகிரப்படாதது" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "அழிக்க" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "பெயர்மாற்றம்" @@ -178,31 +182,31 @@ msgstr "URL வெறுமையாக இருக்கமுடியாத msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "பெயர்" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "அளவு" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "மாற்றப்பட்டது" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 கோப்புறை" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{எண்ணிக்கை} கோப்புறைகள்" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 கோப்பு" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{எண்ணிக்கை} கோப்புகள்" diff --git a/l10n/ta_LK/files_encryption.po b/l10n/ta_LK/files_encryption.po index 82cfd11914..dc06118a3e 100644 --- a/l10n/ta_LK/files_encryption.po +++ b/l10n/ta_LK/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-23 00:05+0100\n" -"PO-Revision-Date: 2013-01-22 23:05+0000\n" +"POT-Creation-Date: 2013-02-06 00:05+0100\n" +"PO-Revision-Date: 2013-02-05 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -40,44 +40,22 @@ msgstr "" msgid "Could not change your file encryption password to your login password" msgstr "" -#: templates/settings-personal.php:3 templates/settings.php:5 -msgid "Choose encryption mode:" -msgstr "" - -#: templates/settings-personal.php:20 templates/settings.php:24 -msgid "" -"Client side encryption (most secure but makes it impossible to access your " -"data from the web interface)" -msgstr "" - -#: templates/settings-personal.php:30 templates/settings.php:36 -msgid "" -"Server side encryption (allows you to access your files from the web " -"interface and the desktop client)" -msgstr "" - -#: templates/settings-personal.php:41 templates/settings.php:60 -msgid "None (no encryption at all)" -msgstr "" - -#: templates/settings.php:10 -msgid "" -"Important: Once you selected an encryption mode there is no way to change it" -" back" -msgstr "" - -#: templates/settings.php:48 -msgid "User specific (let the user decide)" -msgstr "" - -#: templates/settings.php:65 +#: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" msgstr "மறைக்குறியீடு" -#: templates/settings.php:67 -msgid "Exclude the following file types from encryption" -msgstr "மறைக்குறியாக்கலில் பின்வரும் கோப்பு வகைகளை நீக்கவும்" +#: templates/settings-personal.php:7 +msgid "File encryption is enabled." +msgstr "" -#: templates/settings.php:71 +#: templates/settings-personal.php:11 +msgid "The following file types will not be encrypted:" +msgstr "" + +#: templates/settings.php:7 +msgid "Exclude the following file types from encryption:" +msgstr "" + +#: templates/settings.php:12 msgid "None" msgstr "ஒன்றுமில்லை" diff --git a/l10n/ta_LK/files_trashbin.po b/l10n/ta_LK/files_trashbin.po index be19d3c7f3..885b8e84a2 100644 --- a/l10n/ta_LK/files_trashbin.po +++ b/l10n/ta_LK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ msgstr "" "Language: ta_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "பெயர்" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 கோப்புறை" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{எண்ணிக்கை} கோப்புறைகள்" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 கோப்பு" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{எண்ணிக்கை} கோப்புகள்" diff --git a/l10n/ta_LK/settings.po b/l10n/ta_LK/settings.po index 04ffdaacb5..6e3983c95c 100644 --- a/l10n/ta_LK/settings.po +++ b/l10n/ta_LK/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -22,6 +22,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "செயலி சேமிப்பிலிருந்து பட்டியலை ஏற்றமுடியாதுள்ளது" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "அத்தாட்சிப்படுத்தலில் வழு" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "குழு ஏற்கனவே உள்ளது" @@ -46,10 +55,6 @@ msgstr "செல்லுபடியற்ற மின்னஞ்சல்" msgid "Unable to delete group" msgstr "குழுவை நீக்க முடியாது" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "அத்தாட்சிப்படுத்தலில் வழு" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "பயனாளரை நீக்க முடியாது" @@ -112,7 +117,7 @@ msgstr "வழு" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "இயலுமைப்படுத்துக" @@ -189,67 +194,83 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "கடவுச்சொல்" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "உங்களுடைய கடவுச்சொல் மாற்றப்பட்டுள்ளது" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "உங்களுடைய கடவுச்சொல்லை மாற்றமுடியாது" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "தற்போதைய கடவுச்சொல்" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "புதிய கடவுச்சொல்" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "காட்டு" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "கடவுச்சொல்லை மாற்றுக" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "மின்னஞ்சல்" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "உங்களுடைய மின்னஞ்சல் முகவரி" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "கடவுச்சொல் மீள் பெறுவதை இயலுமைப்படுத்துவதற்கு மின்னஞ்சல் முகவரியை இயலுமைப்படுத்துக" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "மொழி" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "மொழிபெயர்க்க உதவி" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: LANGUAGE \n" @@ -570,6 +570,10 @@ msgstr "" msgid "Log in" msgstr "" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index ae36fd501f..82ec8fdc4c 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-02-05 00:19+0100\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -68,11 +68,15 @@ msgstr "" msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 64e6d0ded6..4065f83e88 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-02-05 00:19+0100\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -39,44 +39,22 @@ msgstr "" msgid "Could not change your file encryption password to your login password" msgstr "" -#: templates/settings-personal.php:3 templates/settings.php:5 -msgid "Choose encryption mode:" -msgstr "" - -#: templates/settings-personal.php:20 templates/settings.php:24 -msgid "" -"Client side encryption (most secure but makes it impossible to access your " -"data from the web interface)" -msgstr "" - -#: templates/settings-personal.php:30 templates/settings.php:36 -msgid "" -"Server side encryption (allows you to access your files from the web " -"interface and the desktop client)" -msgstr "" - -#: templates/settings-personal.php:41 templates/settings.php:60 -msgid "None (no encryption at all)" -msgstr "" - -#: templates/settings.php:10 -msgid "" -"Important: Once you selected an encryption mode there is no way to change it " -"back" -msgstr "" - -#: templates/settings.php:48 -msgid "User specific (let the user decide)" -msgstr "" - -#: templates/settings.php:65 +#: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" msgstr "" -#: templates/settings.php:67 -msgid "Exclude the following file types from encryption" +#: templates/settings-personal.php:7 +msgid "File encryption is enabled." msgstr "" -#: templates/settings.php:71 +#: templates/settings-personal.php:11 +msgid "The following file types will not be encrypted:" +msgstr "" + +#: templates/settings.php:7 +msgid "Exclude the following file types from encryption:" +msgstr "" + +#: templates/settings.php:12 msgid "None" msgstr "" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 43f9d2e296..70f6f01fe7 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-02-05 00:19+0100\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 92fc21f0d1..fdaa852edc 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-02-05 00:19+0100\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index 0b16639a53..bf75a1b15d 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-02-05 00:19+0100\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,31 +17,35 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index e785197b7b..c15d3679e2 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-02-05 00:19+0100\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 9c1b1b4bcf..d9cae265ed 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-02-05 00:19+0100\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,27 +17,27 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: app.php:312 +#: app.php:313 msgid "Help" msgstr "" -#: app.php:319 +#: app.php:320 msgid "Personal" msgstr "" -#: app.php:324 +#: app.php:325 msgid "Settings" msgstr "" -#: app.php:329 +#: app.php:330 msgid "Users" msgstr "" -#: app.php:336 +#: app.php:337 msgid "Apps" msgstr "" -#: app.php:338 +#: app.php:339 msgid "Admin" msgstr "" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 3e4d268fe8..bd244208d5 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-02-05 00:19+0100\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -21,6 +21,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "" @@ -45,10 +54,6 @@ msgstr "" msgid "Unable to delete group" msgstr "" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "" @@ -111,7 +116,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "" @@ -189,67 +194,83 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index def54daf0e..af5e2100c2 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-02-05 00:19+0100\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/th_TH/core.po b/l10n/th_TH/core.po index e890f708a2..967a5a57f6 100644 --- a/l10n/th_TH/core.po +++ b/l10n/th_TH/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-04 00:05+0100\n" -"PO-Revision-Date: 2013-02-03 03:30+0000\n" -"Last-Translator: AriesAnywhere Anywhere \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -572,6 +572,10 @@ msgstr "จำรหัสผ่าน" msgid "Log in" msgstr "เข้าสู่ระบบ" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "ก่อนหน้า" diff --git a/l10n/th_TH/files.po b/l10n/th_TH/files.po index 2ea3d92a70..5b83ba04ba 100644 --- a/l10n/th_TH/files.po +++ b/l10n/th_TH/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-04 00:04+0100\n" -"PO-Revision-Date: 2013-02-03 03:30+0000\n" -"Last-Translator: AriesAnywhere Anywhere \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -70,11 +70,15 @@ msgstr "ไฟล์" msgid "Unshare" msgstr "ยกเลิกการแชร์ข้อมูล" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "ลบ" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "เปลี่ยนชื่อ" @@ -179,31 +183,31 @@ msgstr "URL ไม่สามารถเว้นว่างได้" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "ชื่อโฟลเดอร์ไม่ถูกต้อง การใช้งาน 'แชร์' สงวนไว้สำหรับ Owncloud เท่านั้น" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "ชื่อ" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "ขนาด" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "ปรับปรุงล่าสุด" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 โฟลเดอร์" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} โฟลเดอร์" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 ไฟล์" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} ไฟล์" diff --git a/l10n/th_TH/files_encryption.po b/l10n/th_TH/files_encryption.po index e76ad6347f..5131a396a5 100644 --- a/l10n/th_TH/files_encryption.po +++ b/l10n/th_TH/files_encryption.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-24 00:06+0100\n" -"PO-Revision-Date: 2013-01-23 15:03+0000\n" -"Last-Translator: AriesAnywhere Anywhere \n" +"POT-Creation-Date: 2013-02-06 00:05+0100\n" +"PO-Revision-Date: 2013-02-05 23:05+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -40,44 +40,22 @@ msgstr "กรุณาตรวจสอบรหัสผ่านของค msgid "Could not change your file encryption password to your login password" msgstr "ไม่สามารถเปลี่ยนรหัสผ่านสำหรับการเข้ารหัสไฟล์ของคุณไปเป็นรหัสผ่านสำหรับการเข้าสู่ระบบของคุณได้" -#: templates/settings-personal.php:3 templates/settings.php:5 -msgid "Choose encryption mode:" -msgstr "เลือกรูปแบบการเข้ารหัส:" - -#: templates/settings-personal.php:20 templates/settings.php:24 -msgid "" -"Client side encryption (most secure but makes it impossible to access your " -"data from the web interface)" -msgstr "การเข้ารหัสด้วยโปรแกรมไคลเอนต์ (ปลอดภัยที่สุด แต่จะทำให้คุณไม่สามารถเข้าถึงข้อมูลต่างๆจากหน้าจอเว็บไซต์ได้)" - -#: templates/settings-personal.php:30 templates/settings.php:36 -msgid "" -"Server side encryption (allows you to access your files from the web " -"interface and the desktop client)" -msgstr "การเข้ารหัสจากทางฝั่งเซิร์ฟเวอร์ (อนุญาตให้คุณเข้าถึงไฟล์ของคุณจากหน้าจอเว็บไซต์ และโปรแกรมไคลเอนต์จากเครื่องเดสก์ท็อปได้)" - -#: templates/settings-personal.php:41 templates/settings.php:60 -msgid "None (no encryption at all)" -msgstr "ไม่ต้อง (ไม่มีการเข้ารหัสเลย)" - -#: templates/settings.php:10 -msgid "" -"Important: Once you selected an encryption mode there is no way to change it" -" back" -msgstr "ข้อความสำคัญ: หลังจากที่คุณได้เลือกรูปแบบการเข้ารหัสแล้ว จะไม่สามารถเปลี่ยนกลับมาใหม่ได้อีก" - -#: templates/settings.php:48 -msgid "User specific (let the user decide)" -msgstr "ให้ผู้ใช้งานเลือกเอง (ปล่อยให้ผู้ใช้งานตัดสินใจเอง)" - -#: templates/settings.php:65 +#: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" msgstr "การเข้ารหัส" -#: templates/settings.php:67 -msgid "Exclude the following file types from encryption" -msgstr "ไม่ต้องรวมชนิดของไฟล์ดังต่อไปนี้จากการเข้ารหัส" +#: templates/settings-personal.php:7 +msgid "File encryption is enabled." +msgstr "" -#: templates/settings.php:71 +#: templates/settings-personal.php:11 +msgid "The following file types will not be encrypted:" +msgstr "" + +#: templates/settings.php:7 +msgid "Exclude the following file types from encryption:" +msgstr "" + +#: templates/settings.php:12 msgid "None" msgstr "ไม่ต้อง" diff --git a/l10n/th_TH/files_trashbin.po b/l10n/th_TH/files_trashbin.po index 86d6b64828..0232d63d0b 100644 --- a/l10n/th_TH/files_trashbin.po +++ b/l10n/th_TH/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -18,31 +18,35 @@ msgstr "" "Language: th_TH\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "ดำเนินการคืนค่า" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "ชื่อ" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "ลบแล้ว" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 โฟลเดอร์" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} โฟลเดอร์" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 ไฟล์" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} ไฟล์" diff --git a/l10n/th_TH/settings.po b/l10n/th_TH/settings.po index 21602086ef..a04a575b53 100644 --- a/l10n/th_TH/settings.po +++ b/l10n/th_TH/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-04 00:05+0100\n" -"PO-Revision-Date: 2013-02-03 03:30+0000\n" -"Last-Translator: AriesAnywhere Anywhere \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,6 +24,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "ไม่สามารถโหลดรายการจาก App Store ได้" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "เกิดข้อผิดพลาดเกี่ยวกับสิทธิ์การเข้าใช้งาน" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "มีกลุ่มดังกล่าวอยู่ในระบบอยู่แล้ว" @@ -48,10 +57,6 @@ msgstr "อีเมลไม่ถูกต้อง" msgid "Unable to delete group" msgstr "ไม่สามารถลบกลุ่มได้" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "เกิดข้อผิดพลาดเกี่ยวกับสิทธิ์การเข้าใช้งาน" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "ไม่สามารถลบผู้ใช้งานได้" @@ -114,7 +119,7 @@ msgstr "ข้อผิดพลาด" msgid "Updated" msgstr "อัพเดทแล้ว" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "กำลังบันทึุกข้อมูล..." @@ -191,67 +196,83 @@ msgstr "ดาวน์โหลดโปรแกรมไคลเอนต์ msgid "Download iOS Client" msgstr "ดาวน์โหลดโปรแกรมไคลเอนต์สำหรับ iOS" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "รหัสผ่าน" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "รหัสผ่านของคุณถูกเปลี่ยนแล้ว" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "ไม่สามารถเปลี่ยนรหัสผ่านของคุณได้" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "รหัสผ่านปัจจุบัน" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "รหัสผ่านใหม่" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "แสดง" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "เปลี่ยนรหัสผ่าน" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "ชื่อที่ต้องการแสดง" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "อีเมล์" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "ที่อยู่อีเมล์ของคุณ" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "กรอกที่อยู่อีเมล์ของคุณเพื่อเปิดให้มีการกู้คืนรหัสผ่านได้" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "ภาษา" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "ช่วยกันแปล" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "ใช้ที่อยู่นี้เพื่อเชื่อมต่อกับ ownCloud ในโปรแกรมจัดการไฟล์ของคุณ" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "รุ่น" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -164,55 +164,55 @@ msgstr "Aralık" msgid "Settings" msgstr "Ayarlar" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "saniye önce" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "1 dakika önce" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "{minutes} dakika önce" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "1 saat önce" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "{hours} saat önce" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "bugün" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "dün" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "{days} gün önce" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "geçen ay" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "{months} ay önce" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "ay önce" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "geçen yıl" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "yıl önce" @@ -567,14 +567,18 @@ msgstr "Hesabınızı korumak için lütfen parolanızı değiştirin." msgid "Lost your password?" msgstr "Parolanızı mı unuttunuz?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "hatırla" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Giriş yap" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "önceki" diff --git a/l10n/tr/files.po b/l10n/tr/files.po index 322d36729b..b02309d994 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -23,46 +23,46 @@ msgstr "" "Language: tr\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Dosya yüklenmedi. Bilinmeyen hata" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Bir hata yok, dosya başarıyla yüklendi" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "php.ini dosyasında upload_max_filesize ile belirtilen dosya yükleme sınırı aşıldı." -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Yüklenen dosya HTML formundaki MAX_FILE_SIZE sınırını aşıyor" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Yüklenen dosyanın sadece bir kısmı yüklendi" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Hiç dosya yüklenmedi" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Geçici bir klasör eksik" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Diske yazılamadı" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "Yeterli disk alanı yok" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Geçersiz dizin." @@ -74,11 +74,15 @@ msgstr "Dosyalar" msgid "Unshare" msgstr "Paylaşılmayan" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Sil" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "İsim değiştir." @@ -183,31 +187,31 @@ msgstr "URL boş olamaz." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Geçersiz dizin adı. Shared isminin kullanımı Owncloud tarafından rezerver edilmiştir." -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Ad" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Boyut" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Değiştirilme" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 dizin" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} dizin" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 dosya" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} dosya" diff --git a/l10n/tr/files_encryption.po b/l10n/tr/files_encryption.po index e95281ce02..d8297b19c3 100644 --- a/l10n/tr/files_encryption.po +++ b/l10n/tr/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-23 00:05+0100\n" -"PO-Revision-Date: 2013-01-22 23:05+0000\n" +"POT-Creation-Date: 2013-02-06 00:05+0100\n" +"PO-Revision-Date: 2013-02-05 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -40,44 +40,22 @@ msgstr "" msgid "Could not change your file encryption password to your login password" msgstr "" -#: templates/settings-personal.php:3 templates/settings.php:5 -msgid "Choose encryption mode:" -msgstr "" - -#: templates/settings-personal.php:20 templates/settings.php:24 -msgid "" -"Client side encryption (most secure but makes it impossible to access your " -"data from the web interface)" -msgstr "" - -#: templates/settings-personal.php:30 templates/settings.php:36 -msgid "" -"Server side encryption (allows you to access your files from the web " -"interface and the desktop client)" -msgstr "" - -#: templates/settings-personal.php:41 templates/settings.php:60 -msgid "None (no encryption at all)" -msgstr "" - -#: templates/settings.php:10 -msgid "" -"Important: Once you selected an encryption mode there is no way to change it" -" back" -msgstr "" - -#: templates/settings.php:48 -msgid "User specific (let the user decide)" -msgstr "" - -#: templates/settings.php:65 +#: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" msgstr "Şifreleme" -#: templates/settings.php:67 -msgid "Exclude the following file types from encryption" -msgstr "Aşağıdaki dosya tiplerini şifrelemeye dahil etme" +#: templates/settings-personal.php:7 +msgid "File encryption is enabled." +msgstr "" -#: templates/settings.php:71 +#: templates/settings-personal.php:11 +msgid "The following file types will not be encrypted:" +msgstr "" + +#: templates/settings.php:7 +msgid "Exclude the following file types from encryption:" +msgstr "" + +#: templates/settings.php:12 msgid "None" msgstr "Hiçbiri" diff --git a/l10n/tr/files_trashbin.po b/l10n/tr/files_trashbin.po index e987986453..af04cb4549 100644 --- a/l10n/tr/files_trashbin.po +++ b/l10n/tr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ msgstr "" "Language: tr\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "İsim" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 dizin" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} dizin" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 dosya" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} dosya" diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index 15b5cc3f9e..0b51576c5a 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -25,6 +25,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "App Store'dan liste yüklenemiyor" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Eşleşme hata" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "Grup zaten mevcut" @@ -49,10 +58,6 @@ msgstr "Geçersiz eposta" msgid "Unable to delete group" msgstr "Grup silinemiyor" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Eşleşme hata" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "Kullanıcı silinemiyor" @@ -115,7 +120,7 @@ msgstr "Hata" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Kaydediliyor..." @@ -192,67 +197,83 @@ msgstr "Android İstemcisini İndir" msgid "Download iOS Client" msgstr "iOS İstemcisini İndir" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Parola" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "Şifreniz değiştirildi" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Parolanız değiştirilemiyor" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Mevcut parola" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Yeni parola" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "göster" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Parola değiştir" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "Eposta" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Eposta adresiniz" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Parola sıfırlamayı aktifleştirmek için eposta adresi girin" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Dil" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Çevirilere yardım edin" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "Sürüm" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -164,55 +164,55 @@ msgstr "Грудень" msgid "Settings" msgstr "Налаштування" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "секунди тому" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "1 хвилину тому" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "{minutes} хвилин тому" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "1 годину тому" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "{hours} години тому" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "сьогодні" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "вчора" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "{days} днів тому" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "минулого місяця" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "{months} місяців тому" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "місяці тому" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "минулого року" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "роки тому" @@ -567,14 +567,18 @@ msgstr "Будь ласка, змініть свій пароль, щоб зно msgid "Lost your password?" msgstr "Забули пароль?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "запам'ятати" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Вхід" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "попередній" diff --git a/l10n/uk/files.po b/l10n/uk/files.po index 97c4a8121e..021cefdc45 100644 --- a/l10n/uk/files.po +++ b/l10n/uk/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -20,46 +20,46 @@ msgstr "" "Language: uk\n" "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);\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Не завантажено жодного файлу. Невідома помилка" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Файл успішно вивантажено без помилок." -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Розмір звантаження перевищує upload_max_filesize параметра в php.ini: " -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Розмір відвантаженого файлу перевищує директиву MAX_FILE_SIZE вказану в HTML формі" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Файл відвантажено лише частково" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Не відвантажено жодного файлу" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Відсутній тимчасовий каталог" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Невдалося записати на диск" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -71,11 +71,15 @@ msgstr "Файли" msgid "Unshare" msgstr "Заборонити доступ" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Видалити" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Перейменувати" @@ -180,31 +184,31 @@ msgstr "URL не може бути пустим." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Ім'я" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Розмір" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Змінено" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 папка" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} папок" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 файл" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} файлів" diff --git a/l10n/uk/files_encryption.po b/l10n/uk/files_encryption.po index 884db2f7af..535f306855 100644 --- a/l10n/uk/files_encryption.po +++ b/l10n/uk/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-23 00:05+0100\n" -"PO-Revision-Date: 2013-01-22 23:05+0000\n" +"POT-Creation-Date: 2013-02-06 00:05+0100\n" +"PO-Revision-Date: 2013-02-05 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -40,44 +40,22 @@ msgstr "" msgid "Could not change your file encryption password to your login password" msgstr "" -#: templates/settings-personal.php:3 templates/settings.php:5 -msgid "Choose encryption mode:" -msgstr "" - -#: templates/settings-personal.php:20 templates/settings.php:24 -msgid "" -"Client side encryption (most secure but makes it impossible to access your " -"data from the web interface)" -msgstr "" - -#: templates/settings-personal.php:30 templates/settings.php:36 -msgid "" -"Server side encryption (allows you to access your files from the web " -"interface and the desktop client)" -msgstr "" - -#: templates/settings-personal.php:41 templates/settings.php:60 -msgid "None (no encryption at all)" -msgstr "" - -#: templates/settings.php:10 -msgid "" -"Important: Once you selected an encryption mode there is no way to change it" -" back" -msgstr "" - -#: templates/settings.php:48 -msgid "User specific (let the user decide)" -msgstr "" - -#: templates/settings.php:65 +#: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" msgstr "Шифрування" -#: templates/settings.php:67 -msgid "Exclude the following file types from encryption" -msgstr "Не шифрувати файли наступних типів" +#: templates/settings-personal.php:7 +msgid "File encryption is enabled." +msgstr "" -#: templates/settings.php:71 +#: templates/settings-personal.php:11 +msgid "The following file types will not be encrypted:" +msgstr "" + +#: templates/settings.php:7 +msgid "Exclude the following file types from encryption:" +msgstr "" + +#: templates/settings.php:12 msgid "None" msgstr "Жоден" diff --git a/l10n/uk/files_trashbin.po b/l10n/uk/files_trashbin.po index 7e9614c45d..299cd809b9 100644 --- a/l10n/uk/files_trashbin.po +++ b/l10n/uk/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ msgstr "" "Language: uk\n" "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);\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Ім'я" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 папка" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} папок" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 файл" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} файлів" diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po index bfce587020..7d6f148c4e 100644 --- a/l10n/uk/settings.po +++ b/l10n/uk/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -24,6 +24,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Не вдалося завантажити список з App Store" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Помилка автентифікації" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "Група вже існує" @@ -48,10 +57,6 @@ msgstr "Невірна адреса" msgid "Unable to delete group" msgstr "Не вдалося видалити групу" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Помилка автентифікації" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "Не вдалося видалити користувача" @@ -114,7 +119,7 @@ msgstr "Помилка" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Зберігаю..." @@ -191,67 +196,83 @@ msgstr "Завантажити клієнт для Android" msgid "Download iOS Client" msgstr "Завантажити клієнт для iOS" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Пароль" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "Ваш пароль змінено" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Не вдалося змінити Ваш пароль" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Поточний пароль" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Новий пароль" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "показати" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Змінити пароль" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "Ел.пошта" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Ваша адреса електронної пошти" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Введіть адресу електронної пошти для відновлення паролю" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Мова" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Допомогти з перекладом" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Використовуйте цю адресу для під'єднання до вашого ownCloud у вашому файловому менеджері" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "Версія" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -164,55 +164,55 @@ msgstr "Tháng 12" msgid "Settings" msgstr "Cài đặt" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "vài giây trước" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "1 phút trước" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "{minutes} phút trước" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "1 giờ trước" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "{hours} giờ trước" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "hôm nay" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "hôm qua" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "{days} ngày trước" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "tháng trước" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "{months} tháng trước" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "tháng trước" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "năm trước" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "năm trước" @@ -567,14 +567,18 @@ msgstr "Vui lòng thay đổi mật khẩu của bạn để đảm bảo tài k msgid "Lost your password?" msgstr "Bạn quên mật khẩu ?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "ghi nhớ" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Đăng nhập" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "Lùi lại" diff --git a/l10n/vi/files.po b/l10n/vi/files.po index 44b47a64cd..609e4ff590 100644 --- a/l10n/vi/files.po +++ b/l10n/vi/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -21,46 +21,46 @@ msgstr "" "Language: vi\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Không có tập tin nào được tải lên. Lỗi không xác định" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Không có lỗi, các tập tin đã được tải lên thành công" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Kích thước những tập tin tải lên vượt quá MAX_FILE_SIZE đã được quy định" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Tập tin tải lên mới chỉ tải lên được một phần" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Không có tập tin nào được tải lên" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Không tìm thấy thư mục tạm" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Không thể ghi " -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -72,11 +72,15 @@ msgstr "Tập tin" msgid "Unshare" msgstr "Không chia sẽ" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Xóa" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Sửa tên" @@ -181,31 +185,31 @@ msgstr "URL không được để trống." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Tên" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Kích cỡ" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Thay đổi" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 thư mục" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} thư mục" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 tập tin" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} tập tin" diff --git a/l10n/vi/files_encryption.po b/l10n/vi/files_encryption.po index a6019e0302..a845b05ea1 100644 --- a/l10n/vi/files_encryption.po +++ b/l10n/vi/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-23 00:05+0100\n" -"PO-Revision-Date: 2013-01-22 23:05+0000\n" +"POT-Creation-Date: 2013-02-06 00:05+0100\n" +"PO-Revision-Date: 2013-02-05 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -40,44 +40,22 @@ msgstr "" msgid "Could not change your file encryption password to your login password" msgstr "" -#: templates/settings-personal.php:3 templates/settings.php:5 -msgid "Choose encryption mode:" -msgstr "" - -#: templates/settings-personal.php:20 templates/settings.php:24 -msgid "" -"Client side encryption (most secure but makes it impossible to access your " -"data from the web interface)" -msgstr "" - -#: templates/settings-personal.php:30 templates/settings.php:36 -msgid "" -"Server side encryption (allows you to access your files from the web " -"interface and the desktop client)" -msgstr "" - -#: templates/settings-personal.php:41 templates/settings.php:60 -msgid "None (no encryption at all)" -msgstr "" - -#: templates/settings.php:10 -msgid "" -"Important: Once you selected an encryption mode there is no way to change it" -" back" -msgstr "" - -#: templates/settings.php:48 -msgid "User specific (let the user decide)" -msgstr "" - -#: templates/settings.php:65 +#: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" msgstr "Mã hóa" -#: templates/settings.php:67 -msgid "Exclude the following file types from encryption" -msgstr "Loại trừ các loại tập tin sau đây từ mã hóa" +#: templates/settings-personal.php:7 +msgid "File encryption is enabled." +msgstr "" -#: templates/settings.php:71 +#: templates/settings-personal.php:11 +msgid "The following file types will not be encrypted:" +msgstr "" + +#: templates/settings.php:7 +msgid "Exclude the following file types from encryption:" +msgstr "" + +#: templates/settings.php:12 msgid "None" msgstr "Không có gì hết" diff --git a/l10n/vi/files_trashbin.po b/l10n/vi/files_trashbin.po index 696681bd68..4882b64008 100644 --- a/l10n/vi/files_trashbin.po +++ b/l10n/vi/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ msgstr "" "Language: vi\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Tên" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 thư mục" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} thư mục" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 tập tin" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} tập tin" diff --git a/l10n/vi/settings.po b/l10n/vi/settings.po index d7a5c629f5..a8cdfa2fbb 100644 --- a/l10n/vi/settings.po +++ b/l10n/vi/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -27,6 +27,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Không thể tải danh sách ứng dụng từ App Store" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Lỗi xác thực" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "Nhóm đã tồn tại" @@ -51,10 +60,6 @@ msgstr "Email không hợp lệ" msgid "Unable to delete group" msgstr "Không thể xóa nhóm" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Lỗi xác thực" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "Không thể xóa người dùng" @@ -117,7 +122,7 @@ msgstr "Lỗi" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Đang tiến hành lưu ..." @@ -194,67 +199,83 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Mật khẩu" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "Mật khẩu của bạn đã được thay đổi." -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Không thể đổi mật khẩu" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Mật khẩu cũ" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Mật khẩu mới " -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "Hiện" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Đổi mật khẩu" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "Email" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Email của bạn" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Nhập địa chỉ email của bạn để khôi phục lại mật khẩu" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Ngôn ngữ" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Hỗ trợ dịch thuật" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -161,55 +161,55 @@ msgstr "十二月" msgid "Settings" msgstr "设置" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "秒前" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "1 分钟前" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "{minutes} 分钟前" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "今天" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "昨天" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "{days} 天前" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "上个月" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "月前" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "去年" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "年前" @@ -564,14 +564,18 @@ msgstr "请修改您的密码以保护账户。" msgid "Lost your password?" msgstr "忘记密码?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "备忘" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "登陆" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "后退" diff --git a/l10n/zh_CN.GB2312/files.po b/l10n/zh_CN.GB2312/files.po index 71d9b04822..31b335db11 100644 --- a/l10n/zh_CN.GB2312/files.po +++ b/l10n/zh_CN.GB2312/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -19,46 +19,46 @@ msgstr "" "Language: zh_CN.GB2312\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "没有上传文件。未知错误" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "没有任何错误,文件上传成功了" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "上传的文件超过了HTML表单指定的MAX_FILE_SIZE" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "文件只有部分被上传" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "没有上传完成的文件" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "丢失了一个临时文件夹" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "写磁盘失败" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -70,11 +70,15 @@ msgstr "文件" msgid "Unshare" msgstr "取消共享" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "删除" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "重命名" @@ -179,31 +183,31 @@ msgstr "网址不能为空。" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "名字" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "大小" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "修改日期" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 个文件夹" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} 个文件夹" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 个文件" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} 个文件" diff --git a/l10n/zh_CN.GB2312/files_encryption.po b/l10n/zh_CN.GB2312/files_encryption.po index f85989afca..bacd5c9294 100644 --- a/l10n/zh_CN.GB2312/files_encryption.po +++ b/l10n/zh_CN.GB2312/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-23 00:05+0100\n" -"PO-Revision-Date: 2013-01-22 23:05+0000\n" +"POT-Creation-Date: 2013-02-06 00:05+0100\n" +"PO-Revision-Date: 2013-02-05 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -40,44 +40,22 @@ msgstr "" msgid "Could not change your file encryption password to your login password" msgstr "" -#: templates/settings-personal.php:3 templates/settings.php:5 -msgid "Choose encryption mode:" -msgstr "" - -#: templates/settings-personal.php:20 templates/settings.php:24 -msgid "" -"Client side encryption (most secure but makes it impossible to access your " -"data from the web interface)" -msgstr "" - -#: templates/settings-personal.php:30 templates/settings.php:36 -msgid "" -"Server side encryption (allows you to access your files from the web " -"interface and the desktop client)" -msgstr "" - -#: templates/settings-personal.php:41 templates/settings.php:60 -msgid "None (no encryption at all)" -msgstr "" - -#: templates/settings.php:10 -msgid "" -"Important: Once you selected an encryption mode there is no way to change it" -" back" -msgstr "" - -#: templates/settings.php:48 -msgid "User specific (let the user decide)" -msgstr "" - -#: templates/settings.php:65 +#: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" msgstr "加密" -#: templates/settings.php:67 -msgid "Exclude the following file types from encryption" -msgstr "从加密中排除如下文件类型" +#: templates/settings-personal.php:7 +msgid "File encryption is enabled." +msgstr "" -#: templates/settings.php:71 +#: templates/settings-personal.php:11 +msgid "The following file types will not be encrypted:" +msgstr "" + +#: templates/settings.php:7 +msgid "Exclude the following file types from encryption:" +msgstr "" + +#: templates/settings.php:12 msgid "None" msgstr "无" diff --git a/l10n/zh_CN.GB2312/files_trashbin.po b/l10n/zh_CN.GB2312/files_trashbin.po index 722b4a5f8c..9add0d0faa 100644 --- a/l10n/zh_CN.GB2312/files_trashbin.po +++ b/l10n/zh_CN.GB2312/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ msgstr "" "Language: zh_CN.GB2312\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "名称" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 个文件夹" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} 个文件夹" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 个文件" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} 个文件" diff --git a/l10n/zh_CN.GB2312/settings.po b/l10n/zh_CN.GB2312/settings.po index 6aa5df4861..3335b00012 100644 --- a/l10n/zh_CN.GB2312/settings.po +++ b/l10n/zh_CN.GB2312/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -23,6 +23,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "不能从App Store 中加载列表" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "认证错误" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "群组已存在" @@ -47,10 +56,6 @@ msgstr "非法Email" msgid "Unable to delete group" msgstr "未能删除群组" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "认证错误" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "未能删除用户" @@ -113,7 +118,7 @@ msgstr "出错" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "保存中..." @@ -190,67 +195,83 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "密码" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "您的密码以变更" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "不能改变你的密码" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "现在的密码" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "新密码" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "展示" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "改变密码" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "Email" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "你的email地址" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "输入一个邮箱地址以激活密码恢复功能" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "语言" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "帮助翻译" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -165,55 +165,55 @@ msgstr "十二月" msgid "Settings" msgstr "设置" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "秒前" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "一分钟前" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "{minutes} 分钟前" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "1小时前" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "{hours} 小时前" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "今天" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "昨天" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "{days} 天前" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "上月" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "{months} 月前" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "月前" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "去年" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "年前" @@ -568,14 +568,18 @@ msgstr "请修改您的密码,以保护您的账户安全。" msgid "Lost your password?" msgstr "忘记密码?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "记住" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "登录" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "上一页" diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index b52527396d..1f00755a80 100644 --- a/l10n/zh_CN/files.po +++ b/l10n/zh_CN/files.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -24,46 +24,46 @@ msgstr "" "Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "没有文件被上传。未知错误" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "没有发生错误,文件上传成功。" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "上传文件大小已超过php.ini中upload_max_filesize所规定的值" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "上传的文件超过了在HTML 表单中指定的MAX_FILE_SIZE" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "只上传了文件的一部分" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "文件没有上传" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "缺少临时目录" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "写入磁盘失败" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "没有足够可用空间" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "无效文件夹。" @@ -75,11 +75,15 @@ msgstr "文件" msgid "Unshare" msgstr "取消分享" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "删除" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "重命名" @@ -184,31 +188,31 @@ msgstr "URL不能为空" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "无效文件夹名。'共享' 是 Owncloud 预留的文件夹名。" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "名称" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "大小" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "修改日期" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1个文件夹" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} 个文件夹" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 个文件" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} 个文件" diff --git a/l10n/zh_CN/files_encryption.po b/l10n/zh_CN/files_encryption.po index 5395d6734d..f7e50a5ccc 100644 --- a/l10n/zh_CN/files_encryption.po +++ b/l10n/zh_CN/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-23 00:05+0100\n" -"PO-Revision-Date: 2013-01-22 23:05+0000\n" +"POT-Creation-Date: 2013-02-06 00:05+0100\n" +"PO-Revision-Date: 2013-02-05 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -40,44 +40,22 @@ msgstr "" msgid "Could not change your file encryption password to your login password" msgstr "" -#: templates/settings-personal.php:3 templates/settings.php:5 -msgid "Choose encryption mode:" -msgstr "" - -#: templates/settings-personal.php:20 templates/settings.php:24 -msgid "" -"Client side encryption (most secure but makes it impossible to access your " -"data from the web interface)" -msgstr "" - -#: templates/settings-personal.php:30 templates/settings.php:36 -msgid "" -"Server side encryption (allows you to access your files from the web " -"interface and the desktop client)" -msgstr "" - -#: templates/settings-personal.php:41 templates/settings.php:60 -msgid "None (no encryption at all)" -msgstr "" - -#: templates/settings.php:10 -msgid "" -"Important: Once you selected an encryption mode there is no way to change it" -" back" -msgstr "" - -#: templates/settings.php:48 -msgid "User specific (let the user decide)" -msgstr "" - -#: templates/settings.php:65 +#: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" msgstr "加密" -#: templates/settings.php:67 -msgid "Exclude the following file types from encryption" -msgstr "从加密中排除列出的文件类型" +#: templates/settings-personal.php:7 +msgid "File encryption is enabled." +msgstr "" -#: templates/settings.php:71 +#: templates/settings-personal.php:11 +msgid "The following file types will not be encrypted:" +msgstr "" + +#: templates/settings.php:7 +msgid "Exclude the following file types from encryption:" +msgstr "" + +#: templates/settings.php:12 msgid "None" msgstr "None" diff --git a/l10n/zh_CN/files_trashbin.po b/l10n/zh_CN/files_trashbin.po index 71b559d7ba..151921754f 100644 --- a/l10n/zh_CN/files_trashbin.po +++ b/l10n/zh_CN/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ msgstr "" "Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "名称" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1个文件夹" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} 个文件夹" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 个文件" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} 个文件" diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po index 123e52ea0a..51c13db879 100644 --- a/l10n/zh_CN/settings.po +++ b/l10n/zh_CN/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -27,6 +27,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "无法从应用商店载入列表" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "认证错误" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "已存在该组" @@ -51,10 +60,6 @@ msgstr "无效的电子邮件" msgid "Unable to delete group" msgstr "无法删除组" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "认证错误" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "无法删除用户" @@ -117,7 +122,7 @@ msgstr "错误" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "正在保存" @@ -194,67 +199,83 @@ msgstr "下载 Android 客户端" msgid "Download iOS Client" msgstr "下载 iOS 客户端" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "密码" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "密码已修改" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "无法修改密码" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "当前密码" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "新密码" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "显示" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "修改密码" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "电子邮件" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "您的电子邮件" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "填写电子邮件地址以启用密码恢复功能" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "语言" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "帮助翻译" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "用该地址来连接文件管理器中的 ownCloud" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "版本" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -156,59 +156,59 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:280 templates/layout.user.php:47 templates/layout.user.php:48 +#: js/js.js:280 msgid "Settings" msgstr "" -#: js/js.js:762 +#: js/js.js:760 msgid "seconds ago" msgstr "" -#: js/js.js:763 +#: js/js.js:761 msgid "1 minute ago" msgstr "" -#: js/js.js:764 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:765 +#: js/js.js:763 msgid "1 hour ago" msgstr "" -#: js/js.js:766 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "" -#: js/js.js:767 +#: js/js.js:765 msgid "today" msgstr "" -#: js/js.js:768 +#: js/js.js:766 msgid "yesterday" msgstr "" -#: js/js.js:769 +#: js/js.js:767 msgid "{days} days ago" msgstr "" -#: js/js.js:770 +#: js/js.js:768 msgid "last month" msgstr "" -#: js/js.js:771 +#: js/js.js:769 msgid "{months} months ago" msgstr "" -#: js/js.js:772 +#: js/js.js:770 msgid "months ago" msgstr "" -#: js/js.js:773 +#: js/js.js:771 msgid "last year" msgstr "" -#: js/js.js:774 +#: js/js.js:772 msgid "years ago" msgstr "" @@ -541,7 +541,7 @@ msgstr "" msgid "web services under your control" msgstr "" -#: templates/layout.user.php:32 +#: templates/layout.user.php:49 msgid "Log out" msgstr "" @@ -563,14 +563,18 @@ msgstr "" msgid "Lost your password?" msgstr "" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "" diff --git a/l10n/zh_HK/files.po b/l10n/zh_HK/files.po index 3a61b47c5a..3679a52e34 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-31 17:02+0100\n" -"PO-Revision-Date: 2013-01-31 16:02+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -17,46 +17,46 @@ msgstr "" "Language: zh_HK\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -68,11 +68,15 @@ msgstr "" msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "" @@ -177,31 +181,31 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "" diff --git a/l10n/zh_HK/files_encryption.po b/l10n/zh_HK/files_encryption.po index adf957c6ee..c8652a2cde 100644 --- a/l10n/zh_HK/files_encryption.po +++ b/l10n/zh_HK/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-23 00:05+0100\n" -"PO-Revision-Date: 2013-01-22 23:05+0000\n" +"POT-Creation-Date: 2013-02-06 00:05+0100\n" +"PO-Revision-Date: 2013-02-05 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -39,44 +39,22 @@ msgstr "" msgid "Could not change your file encryption password to your login password" msgstr "" -#: templates/settings-personal.php:3 templates/settings.php:5 -msgid "Choose encryption mode:" -msgstr "" - -#: templates/settings-personal.php:20 templates/settings.php:24 -msgid "" -"Client side encryption (most secure but makes it impossible to access your " -"data from the web interface)" -msgstr "" - -#: templates/settings-personal.php:30 templates/settings.php:36 -msgid "" -"Server side encryption (allows you to access your files from the web " -"interface and the desktop client)" -msgstr "" - -#: templates/settings-personal.php:41 templates/settings.php:60 -msgid "None (no encryption at all)" -msgstr "" - -#: templates/settings.php:10 -msgid "" -"Important: Once you selected an encryption mode there is no way to change it" -" back" -msgstr "" - -#: templates/settings.php:48 -msgid "User specific (let the user decide)" -msgstr "" - -#: templates/settings.php:65 +#: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" msgstr "" -#: templates/settings.php:67 -msgid "Exclude the following file types from encryption" +#: templates/settings-personal.php:7 +msgid "File encryption is enabled." msgstr "" -#: templates/settings.php:71 +#: templates/settings-personal.php:11 +msgid "The following file types will not be encrypted:" +msgstr "" + +#: templates/settings.php:7 +msgid "Exclude the following file types from encryption:" +msgstr "" + +#: templates/settings.php:12 msgid "None" msgstr "" diff --git a/l10n/zh_HK/files_trashbin.po b/l10n/zh_HK/files_trashbin.po index 694862fdd6..61f53da0ef 100644 --- a/l10n/zh_HK/files_trashbin.po +++ b/l10n/zh_HK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ msgstr "" "Language: zh_HK\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "" diff --git a/l10n/zh_HK/settings.po b/l10n/zh_HK/settings.po index 58568a1c6e..e9501109c5 100644 --- a/l10n/zh_HK/settings.po +++ b/l10n/zh_HK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -21,6 +21,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "" @@ -45,10 +54,6 @@ msgstr "" msgid "Unable to delete group" msgstr "" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "" @@ -111,7 +116,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "" @@ -188,67 +193,83 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+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" @@ -164,55 +164,55 @@ msgstr "十二月" msgid "Settings" msgstr "設定" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "幾秒前" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "1 分鐘前" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "{minutes} 分鐘前" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "1 個小時前" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "{hours} 小時前" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "今天" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "昨天" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "{days} 天前" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "上個月" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "{months} 個月前" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "幾個月前" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "去年" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "幾年前" @@ -567,14 +567,18 @@ msgstr "請更改您的密碼以再次取得您的帳戶的控制權。" msgid "Lost your password?" msgstr "忘記密碼?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "記住" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "登入" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "上一頁" diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index 5775c873fa..0db332c721 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/files.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 13:40+0000\n" -"Last-Translator: pellaeon \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+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" @@ -23,46 +23,46 @@ msgstr "" "Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "沒有檔案被上傳。未知的錯誤。" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "無錯誤,檔案上傳成功" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "上傳的檔案大小超過 php.ini 當中 upload_max_filesize 參數的設定:" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "上傳的檔案大小超過 HTML 表單中 MAX_FILE_SIZE 的限制" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "只有檔案的一部分被上傳" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "無已上傳檔案" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "遺失暫存資料夾" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "寫入硬碟失敗" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "沒有足夠的可用空間" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "無效的資料夾。" @@ -74,11 +74,15 @@ msgstr "檔案" msgid "Unshare" msgstr "取消共享" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "刪除" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "重新命名" @@ -183,31 +187,31 @@ msgstr "URL 不能為空白." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "無效的資料夾名稱,'Shared' 的使用被 Owncloud 保留" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "名稱" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "大小" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "修改" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 個資料夾" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} 個資料夾" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 個檔案" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} 個檔案" diff --git a/l10n/zh_TW/files_encryption.po b/l10n/zh_TW/files_encryption.po index 0ff077a2b2..785876bb0f 100644 --- a/l10n/zh_TW/files_encryption.po +++ b/l10n/zh_TW/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-27 00:04+0100\n" -"PO-Revision-Date: 2013-01-26 01:44+0000\n" -"Last-Translator: pellaeon \n" +"POT-Creation-Date: 2013-02-06 00:05+0100\n" +"PO-Revision-Date: 2013-02-05 23:05+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -41,44 +41,22 @@ msgstr "請檢查您的密碼並再試一次。" msgid "Could not change your file encryption password to your login password" msgstr "無法變更您的檔案加密密碼為登入密碼" -#: templates/settings-personal.php:3 templates/settings.php:5 -msgid "Choose encryption mode:" -msgstr "選擇加密模式:" - -#: templates/settings-personal.php:20 templates/settings.php:24 -msgid "" -"Client side encryption (most secure but makes it impossible to access your " -"data from the web interface)" -msgstr "客戶端加密 (最安全但是會使您無法從網頁界面存取您的檔案)" - -#: templates/settings-personal.php:30 templates/settings.php:36 -msgid "" -"Server side encryption (allows you to access your files from the web " -"interface and the desktop client)" -msgstr "伺服器端加密 (您可以從網頁界面及客戶端程式存取您的檔案)" - -#: templates/settings-personal.php:41 templates/settings.php:60 -msgid "None (no encryption at all)" -msgstr "無 (不加密)" - -#: templates/settings.php:10 -msgid "" -"Important: Once you selected an encryption mode there is no way to change it" -" back" -msgstr "重要:一旦您選擇了加密就無法再改回來" - -#: templates/settings.php:48 -msgid "User specific (let the user decide)" -msgstr "使用者自訂 (讓使用者自己決定)" - -#: templates/settings.php:65 +#: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" msgstr "加密" -#: templates/settings.php:67 -msgid "Exclude the following file types from encryption" -msgstr "下列的檔案類型不加密" +#: templates/settings-personal.php:7 +msgid "File encryption is enabled." +msgstr "" -#: templates/settings.php:71 +#: templates/settings-personal.php:11 +msgid "The following file types will not be encrypted:" +msgstr "" + +#: templates/settings.php:7 +msgid "Exclude the following file types from encryption:" +msgstr "" + +#: templates/settings.php:12 msgid "None" msgstr "無" diff --git a/l10n/zh_TW/files_trashbin.po b/l10n/zh_TW/files_trashbin.po index 212c2b01ff..0f6d6a4b1f 100644 --- a/l10n/zh_TW/files_trashbin.po +++ b/l10n/zh_TW/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ msgstr "" "Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "名稱" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 個資料夾" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} 個資料夾" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 個檔案" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} 個檔案" diff --git a/l10n/zh_TW/settings.po b/l10n/zh_TW/settings.po index 96601994d5..b1edf5e539 100644 --- a/l10n/zh_TW/settings.po +++ b/l10n/zh_TW/settings.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-04 00:05+0100\n" -"PO-Revision-Date: 2013-02-03 06:00+0000\n" -"Last-Translator: pellaeon \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+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" @@ -29,6 +29,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "無法從 App Store 讀取清單" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "認證錯誤" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "群組已存在" @@ -53,10 +62,6 @@ msgstr "無效的email" msgid "Unable to delete group" msgstr "群組刪除錯誤" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "認證錯誤" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "使用者刪除錯誤" @@ -119,7 +124,7 @@ msgstr "錯誤" msgid "Updated" msgstr "已更新" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "儲存中..." @@ -196,67 +201,83 @@ msgstr "下載 Android 客戶端" msgid "Download iOS Client" msgstr "下載 iOS 客戶端" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "密碼" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "你的密碼已更改" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "無法變更你的密碼" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "目前密碼" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "新密碼" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "顯示" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "變更密碼" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "顯示名稱" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "電子郵件" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "你的電子郵件信箱" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "請填入電子郵件信箱以便回復密碼" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "語言" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "幫助翻譯" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "在您的檔案管理員中使用這個地址來連線到 ownCloud" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "版本" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the $slotclass, "name" => $slotname ); - + // No chance for failure ;-) return true; } @@ -49,14 +52,19 @@ class OC_Hook{ * TODO: write example */ static public function emit( $signalclass, $signalname, $params = array()) { - // Return false if there are no slots + + // Return false if no hook handlers are listening to this + // emitting class if( !array_key_exists( $signalclass, self::$registered )) { return false; } + + // Return false if no hook handlers are listening to this + // emitting method if( !array_key_exists( $signalname, self::$registered[$signalclass] )) { return false; } - + // Call all slots foreach( self::$registered[$signalclass][$signalname] as $i ) { try { diff --git a/lib/l10n/ru.php b/lib/l10n/ru.php index 3ed55f8e9d..5ef2cca3be 100644 --- a/lib/l10n/ru.php +++ b/lib/l10n/ru.php @@ -9,6 +9,7 @@ "Files need to be downloaded one by one." => "Файлы должны быть загружены по одному.", "Back to Files" => "Назад к файлам", "Selected files too large to generate zip file." => "Выбранные файлы слишком велики, чтобы создать zip файл.", +"couldn't be determined" => "Невозможно установить", "Application is not enabled" => "Приложение не разрешено", "Authentication error" => "Ошибка аутентификации", "Token expired. Please reload page." => "Токен просрочен. Перезагрузите страницу.", diff --git a/lib/public/share.php b/lib/public/share.php index 9aacf5e344..d46bee26dd 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -721,6 +721,7 @@ class Share { } $items = array(); $targets = array(); + $switchedItems = array(); while ($row = $result->fetchRow()) { // Filter out duplicate group shares for users with unique targets if ($row['share_type'] == self::$shareTypeGroupUserUnique && isset($items[$row['parent']])) { @@ -745,6 +746,7 @@ class Share { // Switch ids if sharing permission is granted on only one share to ensure correct parent is used if resharing if (~(int)$items[$id]['permissions'] & PERMISSION_SHARE && (int)$row['permissions'] & PERMISSION_SHARE) { $items[$row['id']] = $items[$id]; + $switchedItems[$id] = $row['id']; unset($items[$id]); $id = $row['id']; } @@ -848,7 +850,11 @@ class Share { } } // Remove collection item - unset($items[$row['id']]); + $toRemove = $row['id']; + if (array_key_exists($toRemove, $switchedItems)) { + $toRemove = $switchedItems[$toRemove]; + } + unset($items[$toRemove]); } } if (!empty($collectionItems)) { diff --git a/lib/public/util.php b/lib/public/util.php index a78a52f326..968ca891b4 100644 --- a/lib/public/util.php +++ b/lib/public/util.php @@ -59,9 +59,9 @@ class Util { * @param string $fromname * @param bool $html */ - public static function sendMail( $toaddress, $toname, $subject, $mailtext, $fromaddress, $fromname, $html=0, $altbody='', $ccaddress='', $ccname='', $bcc='') { + public static function sendMail( $toaddress, $toname, $subject, $mailtext, $fromaddress, $fromname, $html = 0, $altbody = '', $ccaddress = '', $ccname = '', $bcc = '') { // call the internal mail class - \OC_MAIL::send($toaddress, $toname, $subject, $mailtext, $fromaddress, $fromname, $html = 0, $altbody = '', $ccaddress = '', $ccname = '', $bcc = ''); + \OC_MAIL::send($toaddress, $toname, $subject, $mailtext, $fromaddress, $fromname, $html, $altbody, $ccaddress, $ccname, $bcc); } /** diff --git a/lib/user.php b/lib/user.php index f953d22154..9dc8cca97a 100644 --- a/lib/user.php +++ b/lib/user.php @@ -275,7 +275,7 @@ class OC_User { foreach(self::$_usedBackends as $backend) { if($backend->implementsActions(OC_USER_BACKEND_SET_DISPLAYNAME)) { if($backend->userExists($uid)) { - $success |= $backend->setDisplayName($uid, $displayName); + $result |= $backend->setDisplayName($uid, $displayName); } } } @@ -436,6 +436,24 @@ class OC_User { } return false; } + + /** + * @brief Check whether user can change his display name + * @param $uid The username + * @returns true/false + * + * Check whether a specified user can change his display name + */ + public static function canUserChangeDisplayName($uid) { + foreach(self::$_usedBackends as $backend) { + if($backend->implementsActions(OC_USER_BACKEND_SET_DISPLAYNAME)) { + if($backend->userExists($uid)) { + return true; + } + } + } + return false; + } /** * @brief Check if the password is correct diff --git a/lib/util.php b/lib/util.php index ae0900d7e8..5f796e7565 100755 --- a/lib/util.php +++ b/lib/util.php @@ -300,6 +300,8 @@ class OC_Util { $redirect_url = OC_Util::sanitizeHTML($_REQUEST['redirect_url']); $parameters['redirect_url'] = urlencode($redirect_url); } + + $parameters['alt_login'] = OC_App::getAlternativeLogIns(); OC_Template::printGuestPage("", "login", $parameters); } @@ -562,6 +564,14 @@ class OC_Util { } } + /** + * Check if the PHP module fileinfo is loaded. + * @return bool + */ + public static function fileInfoLoaded() { + return function_exists('finfo_open'); + } + /** * Check if the ownCloud server can connect to the internet */ diff --git a/settings/admin.php b/settings/admin.php index e256c5fe35..c784880309 100755 --- a/settings/admin.php +++ b/settings/admin.php @@ -32,6 +32,7 @@ $tmpl->assign('htaccessworking', $htaccessworking); $tmpl->assign('internetconnectionworking', OC_Util::isinternetconnectionworking()); $tmpl->assign('islocaleworking', OC_Util::issetlocaleworking()); $tmpl->assign('isWebDavWorking', OC_Util::isWebDAVWorking()); +$tmpl->assign('has_fileinfo', OC_Util::fileInfoLoaded()); $tmpl->assign('backgroundjobs_mode', OC_Appconfig::getValue('core', 'backgroundjobs_mode', 'ajax')); $tmpl->assign('shareAPIEnabled', OC_Appconfig::getValue('core', 'shareapi_enabled', 'yes')); diff --git a/settings/ajax/changedisplayname.php b/settings/ajax/changedisplayname.php index f80ecb7a0c..8f2ff865bd 100644 --- a/settings/ajax/changedisplayname.php +++ b/settings/ajax/changedisplayname.php @@ -1,5 +1,6 @@ array( "message" => "Authentication error" ))); + OC_JSON::error( array( "data" => array( "message" => $l->t("Authentication error") ))); exit(); } // Return Success story if( OC_User::setDisplayName( $username, $displayName )) { - OC_JSON::success(array("data" => array( "username" => $username ))); + OC_JSON::success(array("data" => array( "username" => $username, 'displayName' => $displayName ))); } else{ - OC_JSON::error(array("data" => array( "message" => "Unable to change display name" ))); + OC_JSON::error(array("data" => array( "message" => $l->t("Unable to change display name"), displayName => OC_User::getDisplayName($username) ))); } \ No newline at end of file diff --git a/settings/ajax/changepassword.php b/settings/ajax/changepassword.php index 8d45e62e4d..ceb4bbeecb 100644 --- a/settings/ajax/changepassword.php +++ b/settings/ajax/changepassword.php @@ -4,6 +4,9 @@ OCP\JSON::callCheck(); OC_JSON::checkLoggedIn(); +// Manually load apps to ensure hooks work correctly (workaround for issue 1503) +OC_APP::loadApps(); + $username = isset($_POST["username"]) ? $_POST["username"] : OC_User::getUser(); $password = $_POST["password"]; $oldPassword=isset($_POST["oldpassword"])?$_POST["oldpassword"]:''; @@ -15,14 +18,8 @@ if(OC_User::isAdminUser(OC_User::getUser())) { if(OC_SubAdmin::isUserAccessible(OC_User::getUser(), $username)) { $userstatus = 'subadmin'; } -if(OC_User::getUser() === $username) { - if (OC_User::checkPassword($username, $oldPassword)) { - $userstatus = 'user'; - } else { - if (!OC_Util::isUserVerified()) { - $userstatus = null; - } - } +if(OC_User::getUser() === $username && OC_User::checkPassword($username, $oldPassword)) { + $userstatus = 'user'; } if(is_null($userstatus)) { diff --git a/settings/css/settings.css b/settings/css/settings.css index 5a3ab2c6e9..9dd17daaeb 100644 --- a/settings/css/settings.css +++ b/settings/css/settings.css @@ -8,6 +8,8 @@ input#openid, input#webdav { width:20em; } /* PERSONAL */ #passworderror { display:none; } #passwordchanged { display:none; } +#displaynameerror { display:none; } +#displaynamechanged { display:none; } input#identity { width:20em; } #email { width: 17em; } @@ -31,7 +33,6 @@ tr:hover>td.password>span, tr:hover>td.displayName>span { margin:0; cursor:point tr:hover>td.remove>a, tr:hover>td.password>img,tr:hover>td.displayName>img, tr:hover>td.quota>img { visibility:visible; cursor:pointer; } tr:hover>td.remove>a { float:right; } li.selected { background-color:#ddd; } -#content>table:not(.nostyle) { margin-top:3em; } table:not(.nostyle) { width:100%; } #rightcontent { padding-left: 1em; } div.quota { float:right; display:block; position:absolute; right:25em; top:0; } diff --git a/settings/js/personal.js b/settings/js/personal.js index a866e321ad..d9455b3786 100644 --- a/settings/js/personal.js +++ b/settings/js/personal.js @@ -31,6 +31,33 @@ $(document).ready(function(){ } }); + + $("#displaynamebutton").click( function(){ + if ($('#displayName').val() != '' ) { + // Serialize the data + var post = $( "#displaynameform" ).serialize(); + $('#displaynamechanged').hide(); + $('#displaynemerror').hide(); + // Ajax foo + $.post( 'ajax/changedisplayname.php', post, function(data){ + if( data.status == "success" ){ + $('#displaynamechanged').show(); + } + else{ + $('#newdisplayname').val(data.data.displayName) + $('#displaynameerror').html( data.data.message ); + $('#displaynameerror').show(); + } + }); + return false; + } else { + $('#displayName').val($('#oldDisplayName').val()); + $('#displaynamechanged').hide(); + $('#displaynameerror').show(); + return false; + } + + }); $('#lostpassword #email').blur(function(event){ if ($(this).val() == this.defaultValue){ diff --git a/settings/l10n/ar.php b/settings/l10n/ar.php index 402d91c48f..499c237eb7 100644 --- a/settings/l10n/ar.php +++ b/settings/l10n/ar.php @@ -1,12 +1,12 @@ "فشل تحميل القائمة من الآب ستور", +"Authentication error" => "لم يتم التأكد من الشخصية بنجاح", "Group already exists" => "المجموعة موجودة مسبقاً", "Unable to add group" => "فشل إضافة المجموعة", "Could not enable app. " => "فشل عملية تفعيل التطبيق", "Email saved" => "تم حفظ البريد الإلكتروني", "Invalid email" => "البريد الإلكتروني غير صالح", "Unable to delete group" => "فشل إزالة المجموعة", -"Authentication error" => "لم يتم التأكد من الشخصية بنجاح", "Unable to delete user" => "فشل إزالة المستخدم", "Language changed" => "تم تغيير اللغة", "Invalid request" => "طلبك غير مفهوم", diff --git a/settings/l10n/bn_BD.php b/settings/l10n/bn_BD.php index 60ddcfdde6..fc90036536 100644 --- a/settings/l10n/bn_BD.php +++ b/settings/l10n/bn_BD.php @@ -1,12 +1,12 @@ "অ্যাপস্টোর থেকে তালিকা লোড করতে সক্ষম নয়", +"Authentication error" => "অনুমোদন ঘটিত সমস্যা", "Group already exists" => "গোষ্ঠীটি পূর্ব থেকেই বিদ্যমান", "Unable to add group" => "গোষ্ঠী যোগ করা সম্ভব হলো না", "Could not enable app. " => "অ্যপটি সক্রিয় করতে সক্ষম নয়।", "Email saved" => "ই-মেইল সংরক্ষন করা হয়েছে", "Invalid email" => "ই-মেইলটি সঠিক নয়", "Unable to delete group" => "গোষ্ঠী মুছে ফেলা সম্ভব হলো না ", -"Authentication error" => "অনুমোদন ঘটিত সমস্যা", "Unable to delete user" => "ব্যবহারকারী মুছে ফেলা সম্ভব হলো না ", "Language changed" => "ভাষা পরিবর্তন করা হয়েছে", "Invalid request" => "অনুরোধটি যথাযথ নয়", diff --git a/settings/l10n/ca.php b/settings/l10n/ca.php index 40b19c3b1c..e5df7b4ecd 100644 --- a/settings/l10n/ca.php +++ b/settings/l10n/ca.php @@ -1,12 +1,12 @@ "No s'ha pogut carregar la llista des de l'App Store", +"Authentication error" => "Error d'autenticació", "Group already exists" => "El grup ja existeix", "Unable to add group" => "No es pot afegir el grup", "Could not enable app. " => "No s'ha pogut activar l'apliació", "Email saved" => "S'ha desat el correu electrònic", "Invalid email" => "El correu electrònic no és vàlid", "Unable to delete group" => "No es pot eliminar el grup", -"Authentication error" => "Error d'autenticació", "Unable to delete user" => "No es pot eliminar l'usuari", "Language changed" => "S'ha canviat l'idioma", "Invalid request" => "Sol.licitud no vàlida", @@ -48,6 +48,7 @@ "New password" => "Contrasenya nova", "show" => "mostra", "Change password" => "Canvia la contrasenya", +"Display Name" => "Nom a mostrar", "Email" => "Correu electrònic", "Your email address" => "Correu electrònic", "Fill in an email address to enable password recovery" => "Ompliu el correu electrònic per activar la recuperació de contrasenya", @@ -63,7 +64,6 @@ "Default Storage" => "Emmagatzemament per defecte", "Unlimited" => "Il·limitat", "Other" => "Un altre", -"Display Name" => "Nom a mostrar", "Group Admin" => "Grup Admin", "Storage" => "Emmagatzemament", "change display name" => "canvia el nom a mostrar", diff --git a/settings/l10n/cs_CZ.php b/settings/l10n/cs_CZ.php index f1fd0b0b13..91c7c48115 100644 --- a/settings/l10n/cs_CZ.php +++ b/settings/l10n/cs_CZ.php @@ -1,12 +1,12 @@ "Nelze načíst seznam z App Store", +"Authentication error" => "Chyba ověření", "Group already exists" => "Skupina již existuje", "Unable to add group" => "Nelze přidat skupinu", "Could not enable app. " => "Nelze povolit aplikaci.", "Email saved" => "E-mail uložen", "Invalid email" => "Neplatný e-mail", "Unable to delete group" => "Nelze smazat skupinu", -"Authentication error" => "Chyba ověření", "Unable to delete user" => "Nelze smazat uživatele", "Language changed" => "Jazyk byl změněn", "Invalid request" => "Neplatný požadavek", @@ -48,6 +48,7 @@ "New password" => "Nové heslo", "show" => "zobrazit", "Change password" => "Změnit heslo", +"Display Name" => "Zobrazované jméno", "Email" => "E-mail", "Your email address" => "Vaše e-mailová adresa", "Fill in an email address to enable password recovery" => "Pro povolení změny hesla vyplňte adresu e-mailu", @@ -63,7 +64,6 @@ "Default Storage" => "Výchozí úložiště", "Unlimited" => "Neomezeně", "Other" => "Jiná", -"Display Name" => "Zobrazované jméno", "Group Admin" => "Správa skupiny", "Storage" => "Úložiště", "change display name" => "změnit zobrazované jméno", diff --git a/settings/l10n/da.php b/settings/l10n/da.php index 01c59d242c..294bd91821 100644 --- a/settings/l10n/da.php +++ b/settings/l10n/da.php @@ -1,12 +1,12 @@ "Kunne ikke indlæse listen fra App Store", +"Authentication error" => "Adgangsfejl", "Group already exists" => "Gruppen findes allerede", "Unable to add group" => "Gruppen kan ikke oprettes", "Could not enable app. " => "Applikationen kunne ikke aktiveres.", "Email saved" => "Email adresse gemt", "Invalid email" => "Ugyldig email adresse", "Unable to delete group" => "Gruppen kan ikke slettes", -"Authentication error" => "Adgangsfejl", "Unable to delete user" => "Bruger kan ikke slettes", "Language changed" => "Sprog ændret", "Invalid request" => "Ugyldig forespørgsel", diff --git a/settings/l10n/de.php b/settings/l10n/de.php index 04f65222b0..b7ace81cf5 100644 --- a/settings/l10n/de.php +++ b/settings/l10n/de.php @@ -1,12 +1,12 @@ "Die Liste der Anwendungen im Store konnte nicht geladen werden.", +"Authentication error" => "Fehler bei der Anmeldung", "Group already exists" => "Gruppe existiert bereits", "Unable to add group" => "Gruppe konnte nicht angelegt werden", "Could not enable app. " => "App konnte nicht aktiviert werden.", "Email saved" => "E-Mail Adresse gespeichert", "Invalid email" => "Ungültige E-Mail Adresse", "Unable to delete group" => "Gruppe konnte nicht gelöscht werden", -"Authentication error" => "Fehler bei der Anmeldung", "Unable to delete user" => "Benutzer konnte nicht gelöscht werden", "Language changed" => "Sprache geändert", "Invalid request" => "Ungültige Anfrage", @@ -43,6 +43,7 @@ "New password" => "Neues Passwort", "show" => "zeigen", "Change password" => "Passwort ändern", +"Display Name" => "Anzeigename", "Email" => "E-Mail", "Your email address" => "Deine E-Mail-Adresse", "Fill in an email address to enable password recovery" => "Trage eine E-Mail-Adresse ein, um die Passwort-Wiederherstellung zu aktivieren.", @@ -58,7 +59,6 @@ "Default Storage" => "Standard-Speicher", "Unlimited" => "Unbegrenzt", "Other" => "Andere", -"Display Name" => "Anzeigename", "Group Admin" => "Gruppenadministrator", "Storage" => "Speicher", "change display name" => "Anzeigenamen ändern", diff --git a/settings/l10n/de_DE.php b/settings/l10n/de_DE.php index 5358212dbc..463ccdbd15 100644 --- a/settings/l10n/de_DE.php +++ b/settings/l10n/de_DE.php @@ -1,12 +1,12 @@ "Die Liste der Anwendungen im Store konnte nicht geladen werden.", +"Authentication error" => "Fehler bei der Anmeldung", "Group already exists" => "Die Gruppe existiert bereits", "Unable to add group" => "Die Gruppe konnte nicht angelegt werden", "Could not enable app. " => "Die Anwendung konnte nicht aktiviert werden.", "Email saved" => "E-Mail-Adresse gespeichert", "Invalid email" => "Ungültige E-Mail-Adresse", "Unable to delete group" => "Die Gruppe konnte nicht gelöscht werden", -"Authentication error" => "Fehler bei der Anmeldung", "Unable to delete user" => "Der Benutzer konnte nicht gelöscht werden", "Language changed" => "Sprache geändert", "Invalid request" => "Ungültige Anfrage", @@ -48,6 +48,7 @@ "New password" => "Neues Passwort", "show" => "zeigen", "Change password" => "Passwort ändern", +"Display Name" => "Anzeigename", "Email" => "E-Mail", "Your email address" => "Ihre E-Mail-Adresse", "Fill in an email address to enable password recovery" => "Bitte tragen Sie eine E-Mail-Adresse ein, um die Passwort-Wiederherstellung zu aktivieren.", @@ -63,7 +64,6 @@ "Default Storage" => "Standard-Speicher", "Unlimited" => "Unbegrenzt", "Other" => "Andere", -"Display Name" => "Anzeigename", "Group Admin" => "Gruppenadministrator", "Storage" => "Speicher", "change display name" => "Anzeigenamen ändern", diff --git a/settings/l10n/el.php b/settings/l10n/el.php index 90335ceaf0..925ecf695a 100644 --- a/settings/l10n/el.php +++ b/settings/l10n/el.php @@ -1,12 +1,12 @@ "Σφάλμα στην φόρτωση της λίστας από το App Store", +"Authentication error" => "Σφάλμα πιστοποίησης", "Group already exists" => "Η ομάδα υπάρχει ήδη", "Unable to add group" => "Αδυναμία προσθήκης ομάδας", "Could not enable app. " => "Αδυναμία ενεργοποίησης εφαρμογής ", "Email saved" => "Το email αποθηκεύτηκε ", "Invalid email" => "Μη έγκυρο email", "Unable to delete group" => "Αδυναμία διαγραφής ομάδας", -"Authentication error" => "Σφάλμα πιστοποίησης", "Unable to delete user" => "Αδυναμία διαγραφής χρήστη", "Language changed" => "Η γλώσσα άλλαξε", "Invalid request" => "Μη έγκυρο αίτημα", diff --git a/settings/l10n/eo.php b/settings/l10n/eo.php index d9a7595255..f84526c3c9 100644 --- a/settings/l10n/eo.php +++ b/settings/l10n/eo.php @@ -1,12 +1,12 @@ "Ne eblis ŝargi liston el aplikaĵovendejo", +"Authentication error" => "Aŭtentiga eraro", "Group already exists" => "La grupo jam ekzistas", "Unable to add group" => "Ne eblis aldoni la grupon", "Could not enable app. " => "Ne eblis kapabligi la aplikaĵon.", "Email saved" => "La retpoŝtadreso konserviĝis", "Invalid email" => "Nevalida retpoŝtadreso", "Unable to delete group" => "Ne eblis forigi la grupon", -"Authentication error" => "Aŭtentiga eraro", "Unable to delete user" => "Ne eblis forigi la uzanton", "Language changed" => "La lingvo estas ŝanĝita", "Invalid request" => "Nevalida peto", diff --git a/settings/l10n/es.php b/settings/l10n/es.php index 0b82c3b7f0..7d1d1f7be5 100644 --- a/settings/l10n/es.php +++ b/settings/l10n/es.php @@ -1,21 +1,27 @@ "Imposible cargar la lista desde el App Store", +"Authentication error" => "Error de autenticación", "Group already exists" => "El grupo ya existe", "Unable to add group" => "No se pudo añadir el grupo", "Could not enable app. " => "No puedo habilitar la app.", "Email saved" => "Correo guardado", "Invalid email" => "Correo no válido", "Unable to delete group" => "No se pudo eliminar el grupo", -"Authentication error" => "Error de autenticación", "Unable to delete user" => "No se pudo eliminar el usuario", "Language changed" => "Idioma cambiado", "Invalid request" => "Solicitud 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" => "Imposible añadir el usuario al grupo %s", "Unable to remove user from group %s" => "Imposible eliminar al usuario del grupo %s", +"Couldn't update app." => "No se puedo actualizar la aplicacion.", +"Update to {appversion}" => "Actualizado a {appversion}", "Disable" => "Desactivar", "Enable" => "Activar", +"Please wait...." => "Espere por favor....", +"Updating...." => "Actualizando....", +"Error while updating app" => "Error mientras se actualizaba", "Error" => "Error", +"Updated" => "Actualizado", "Saving..." => "Guardando...", "__language_name__" => "Castellano", "Add your App" => "Añade tu aplicación", @@ -42,6 +48,7 @@ "New password" => "Nueva contraseña:", "show" => "mostrar", "Change password" => "Cambiar contraseña", +"Display Name" => "Nombre a mostrar", "Email" => "Correo electrónico", "Your email address" => "Tu dirección de correo", "Fill in an email address to enable password recovery" => "Escribe una dirección de correo electrónico para restablecer la contraseña", @@ -51,6 +58,7 @@ "Use this address to connect to your ownCloud in your file manager" => "Use esta dirección para conectarse a su cuenta de ownCloud en el administrador de archivos", "Version" => "Version", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Desarrollado por la comunidad ownCloud, el código fuente está bajo licencia AGPL.", +"Login Name" => "Nombre de usuario", "Groups" => "Grupos", "Create" => "Crear", "Default Storage" => "Almacenamiento Predeterminado", @@ -58,6 +66,8 @@ "Other" => "Otro", "Group Admin" => "Grupo admin", "Storage" => "Alamacenamiento", +"change display name" => "Cambiar nombre a mostrar", +"set new password" => "Configurar nueva contraseña", "Default" => "Predeterminado", "Delete" => "Eliminar" ); diff --git a/settings/l10n/es_AR.php b/settings/l10n/es_AR.php index 3ef0756ede..a33d9e8063 100644 --- a/settings/l10n/es_AR.php +++ b/settings/l10n/es_AR.php @@ -1,12 +1,12 @@ "Imposible cargar la lista desde el App Store", +"Authentication error" => "Error al autenticar", "Group already exists" => "El grupo ya existe", "Unable to add group" => "No fue posible añadir el grupo", "Could not enable app. " => "No se puede habilitar la aplicación.", "Email saved" => "e-mail guardado", "Invalid email" => "el e-mail no es válido ", "Unable to delete group" => "No fue posible eliminar el grupo", -"Authentication error" => "Error al autenticar", "Unable to delete user" => "No fue posible eliminar el usuario", "Language changed" => "Idioma cambiado", "Invalid request" => "Solicitud no válida", @@ -42,6 +42,7 @@ "New password" => "Nueva contraseña:", "show" => "mostrar", "Change password" => "Cambiar contraseña", +"Display Name" => "Nombre a mostrar", "Email" => "Correo electrónico", "Your email address" => "Tu dirección de e-mail", "Fill in an email address to enable password recovery" => "Escribí una dirección de correo electrónico para restablecer la contraseña", @@ -57,7 +58,6 @@ "Default Storage" => "Almacenamiento Predeterminado", "Unlimited" => "Ilimitado", "Other" => "Otro", -"Display Name" => "Nombre a mostrar", "Group Admin" => "Grupo Administrador", "Storage" => "Almacenamiento", "Default" => "Predeterminado", diff --git a/settings/l10n/et_EE.php b/settings/l10n/et_EE.php index 3f99aed1b8..df5b707fcd 100644 --- a/settings/l10n/et_EE.php +++ b/settings/l10n/et_EE.php @@ -1,12 +1,12 @@ "App Sotre'i nimekirja laadimine ebaõnnestus", +"Authentication error" => "Autentimise viga", "Group already exists" => "Grupp on juba olemas", "Unable to add group" => "Keela grupi lisamine", "Could not enable app. " => "Rakenduse sisselülitamine ebaõnnestus.", "Email saved" => "Kiri on salvestatud", "Invalid email" => "Vigane e-post", "Unable to delete group" => "Keela grupi kustutamine", -"Authentication error" => "Autentimise viga", "Unable to delete user" => "Keela kasutaja kustutamine", "Language changed" => "Keel on muudetud", "Invalid request" => "Vigane päring", diff --git a/settings/l10n/eu.php b/settings/l10n/eu.php index 4a6cdc365e..1be2c7940b 100644 --- a/settings/l10n/eu.php +++ b/settings/l10n/eu.php @@ -1,12 +1,12 @@ "Ezin izan da App Dendatik zerrenda kargatu", +"Authentication error" => "Autentifikazio errorea", "Group already exists" => "Taldea dagoeneko existitzenda", "Unable to add group" => "Ezin izan da taldea gehitu", "Could not enable app. " => "Ezin izan da aplikazioa gaitu.", "Email saved" => "Eposta gorde da", "Invalid email" => "Baliogabeko eposta", "Unable to delete group" => "Ezin izan da taldea ezabatu", -"Authentication error" => "Autentifikazio errorea", "Unable to delete user" => "Ezin izan da erabiltzailea ezabatu", "Language changed" => "Hizkuntza aldatuta", "Invalid request" => "Baliogabeko eskaria", @@ -42,6 +42,7 @@ "New password" => "Pasahitz berria", "show" => "erakutsi", "Change password" => "Aldatu pasahitza", +"Display Name" => "Bistaratze Izena", "Email" => "E-Posta", "Your email address" => "Zure e-posta", "Fill in an email address to enable password recovery" => "Idatz ezazu e-posta bat pasahitza berreskuratu ahal izateko", @@ -57,7 +58,6 @@ "Default Storage" => "Lehenetsitako Biltegiratzea", "Unlimited" => "Mugarik gabe", "Other" => "Besteak", -"Display Name" => "Bistaratze Izena", "Group Admin" => "Talde administradorea", "Storage" => "Biltegiratzea", "Default" => "Lehenetsia", diff --git a/settings/l10n/fa.php b/settings/l10n/fa.php index 349af0e503..d4290f6dee 100644 --- a/settings/l10n/fa.php +++ b/settings/l10n/fa.php @@ -1,18 +1,28 @@ "قادر به بارگذاری لیست از فروشگاه اپ نیستم", +"Authentication error" => "خطا در اعتبار سنجی", +"Group already exists" => "این گروه در حال حاضر موجود است", +"Unable to add group" => "افزودن گروه امکان پذیر نیست", "Email saved" => "ایمیل ذخیره شد", "Invalid email" => "ایمیل غیر قابل قبول", -"Authentication error" => "خطا در اعتبار سنجی", +"Unable to delete group" => "حذف گروه امکان پذیر نیست", +"Unable to delete user" => "حذف کاربر امکان پذیر نیست", "Language changed" => "زبان تغییر کرد", "Invalid request" => "درخواست غیر قابل قبول", "Disable" => "غیرفعال", "Enable" => "فعال", +"Please wait...." => "لطفا صبر کنید ...", +"Updating...." => "در حال بروز رسانی...", "Error" => "خطا", +"Updated" => "بروز رسانی انجام شد", "Saving..." => "درحال ذخیره ...", "__language_name__" => "__language_name__", "Add your App" => "برنامه خود را بیافزایید", +"More Apps" => "برنامه های بیشتر", "Select an App" => "یک برنامه انتخاب کنید", "See application page at apps.owncloud.com" => "صفحه این اٌپ را در apps.owncloud.com ببینید", +"Update" => "به روز رسانی", +"Forum" => "انجمن", "Clients" => "مشتریان", "Password" => "گذرواژه", "Your password was changed" => "رمز عبور شما تغییر یافت", @@ -26,8 +36,13 @@ "Fill in an email address to enable password recovery" => "پست الکترونیکی را پرکنید تا بازیابی گذرواژه فعال شود", "Language" => "زبان", "Help translate" => "به ترجمه آن کمک کنید", +"Version" => "نسخه", "Groups" => "گروه ها", "Create" => "ایجاد کردن", +"Default Storage" => "ذخیره سازی پیش فرض", +"Unlimited" => "نامحدود", "Other" => "سایر", +"Storage" => "حافظه", +"Default" => "پیش فرض", "Delete" => "پاک کردن" ); diff --git a/settings/l10n/fi_FI.php b/settings/l10n/fi_FI.php index c1763dca15..9f1feb74a1 100644 --- a/settings/l10n/fi_FI.php +++ b/settings/l10n/fi_FI.php @@ -1,12 +1,12 @@ "Ei pystytä lataamaan listaa sovellusvarastosta (App Store)", +"Authentication error" => "Todennusvirhe", "Group already exists" => "Ryhmä on jo olemassa", "Unable to add group" => "Ryhmän lisäys epäonnistui", "Could not enable app. " => "Sovelluksen käyttöönotto epäonnistui.", "Email saved" => "Sähköposti tallennettu", "Invalid email" => "Virheellinen sähköposti", "Unable to delete group" => "Ryhmän poisto epäonnistui", -"Authentication error" => "Todennusvirhe", "Unable to delete user" => "Käyttäjän poisto epäonnistui", "Language changed" => "Kieli on vaihdettu", "Invalid request" => "Virheellinen pyyntö", @@ -48,6 +48,7 @@ "New password" => "Uusi salasana", "show" => "näytä", "Change password" => "Vaihda salasana", +"Display Name" => "Näyttönimi", "Email" => "Sähköposti", "Your email address" => "Sähköpostiosoitteesi", "Fill in an email address to enable password recovery" => "Anna sähköpostiosoitteesi, jotta unohdettu salasana on mahdollista palauttaa", @@ -62,7 +63,6 @@ "Create" => "Luo", "Unlimited" => "Rajoittamaton", "Other" => "Muu", -"Display Name" => "Näyttönimi", "Group Admin" => "Ryhmän ylläpitäjä", "change display name" => "vaihda näyttönimi", "set new password" => "aseta uusi salasana", diff --git a/settings/l10n/fr.php b/settings/l10n/fr.php index 1e80ce13c1..7ada83f424 100644 --- a/settings/l10n/fr.php +++ b/settings/l10n/fr.php @@ -1,12 +1,12 @@ "Impossible de charger la liste depuis l'App Store", +"Authentication error" => "Erreur d'authentification", "Group already exists" => "Ce groupe existe déjà", "Unable to add group" => "Impossible d'ajouter le groupe", "Could not enable app. " => "Impossible d'activer l'Application", "Email saved" => "E-mail sauvegardé", "Invalid email" => "E-mail invalide", "Unable to delete group" => "Impossible de supprimer le groupe", -"Authentication error" => "Erreur d'authentification", "Unable to delete user" => "Impossible de supprimer l'utilisateur", "Language changed" => "Langue changée", "Invalid request" => "Requête invalide", @@ -18,6 +18,7 @@ "Disable" => "Désactiver", "Enable" => "Activer", "Please wait...." => "Veuillez patienter…", +"Updating...." => "Mise à jour...", "Error while updating app" => "Erreur lors de la mise à jour de l'application", "Error" => "Erreur", "Updated" => "Mise à jour effectuée avec succès", @@ -47,6 +48,7 @@ "New password" => "Nouveau mot de passe", "show" => "Afficher", "Change password" => "Changer de mot de passe", +"Display Name" => "Nom affiché", "Email" => "E-mail", "Your email address" => "Votre adresse e-mail", "Fill in an email address to enable password recovery" => "Entrez votre adresse e-mail pour permettre la réinitialisation du mot de passe", @@ -62,7 +64,6 @@ "Default Storage" => "Support de stockage par défaut", "Unlimited" => "Illimité", "Other" => "Autre", -"Display Name" => "Nom affiché", "Group Admin" => "Groupe Admin", "Storage" => "Support de stockage", "change display name" => "Changer le nom affiché", diff --git a/settings/l10n/gl.php b/settings/l10n/gl.php index 595248f7c5..997ac53de7 100644 --- a/settings/l10n/gl.php +++ b/settings/l10n/gl.php @@ -1,12 +1,12 @@ "Non foi posíbel cargar a lista desde a App Store", +"Authentication error" => "Produciuse un erro de autenticación", "Group already exists" => "O grupo xa existe", "Unable to add group" => "Non é posíbel engadir o grupo", "Could not enable app. " => "Non é posíbel activar o aplicativo.", "Email saved" => "Correo gardado", "Invalid email" => "correo incorrecto", "Unable to delete group" => "Non é posíbel eliminar o grupo.", -"Authentication error" => "Produciuse un erro de autenticación", "Unable to delete user" => "Non é posíbel eliminar o usuario", "Language changed" => "O idioma cambiou", "Invalid request" => "Petición incorrecta", diff --git a/settings/l10n/he.php b/settings/l10n/he.php index a3db2b9a36..be776d4fa2 100644 --- a/settings/l10n/he.php +++ b/settings/l10n/he.php @@ -1,12 +1,12 @@ "לא ניתן לטעון רשימה מה־App Store", +"Authentication error" => "שגיאת הזדהות", "Group already exists" => "הקבוצה כבר קיימת", "Unable to add group" => "לא ניתן להוסיף קבוצה", "Could not enable app. " => "לא ניתן להפעיל את היישום", "Email saved" => "הדוא״ל נשמר", "Invalid email" => "דוא״ל לא חוקי", "Unable to delete group" => "לא ניתן למחוק את הקבוצה", -"Authentication error" => "שגיאת הזדהות", "Unable to delete user" => "לא ניתן למחוק את המשתמש", "Language changed" => "שפה השתנתה", "Invalid request" => "בקשה לא חוקית", diff --git a/settings/l10n/hr.php b/settings/l10n/hr.php index 0548b0f84c..f55cdcc687 100644 --- a/settings/l10n/hr.php +++ b/settings/l10n/hr.php @@ -1,8 +1,8 @@ "Nemogićnost učitavanja liste sa Apps Stora", +"Authentication error" => "Greška kod autorizacije", "Email saved" => "Email spremljen", "Invalid email" => "Neispravan email", -"Authentication error" => "Greška kod autorizacije", "Language changed" => "Jezik promijenjen", "Invalid request" => "Neispravan zahtjev", "Disable" => "Isključi", diff --git a/settings/l10n/hu_HU.php b/settings/l10n/hu_HU.php index d56ff7aa58..23d6c3f5f7 100644 --- a/settings/l10n/hu_HU.php +++ b/settings/l10n/hu_HU.php @@ -1,12 +1,12 @@ "Nem tölthető le a lista az App Store-ból", +"Authentication error" => "Azonosítási hiba", "Group already exists" => "A csoport már létezik", "Unable to add group" => "A csoport nem hozható létre", "Could not enable app. " => "A program nem aktiválható.", "Email saved" => "Email mentve", "Invalid email" => "Hibás email", "Unable to delete group" => "A csoport nem törölhető", -"Authentication error" => "Azonosítási hiba", "Unable to delete user" => "A felhasználó nem törölhető", "Language changed" => "A nyelv megváltozott", "Invalid request" => "Érvénytelen kérés", diff --git a/settings/l10n/id.php b/settings/l10n/id.php index 6a4d7a292b..181450e58b 100644 --- a/settings/l10n/id.php +++ b/settings/l10n/id.php @@ -1,7 +1,7 @@ "autentikasi bermasalah", "Email saved" => "Email tersimpan", "Invalid email" => "Email tidak sah", -"Authentication error" => "autentikasi bermasalah", "Language changed" => "Bahasa telah diganti", "Invalid request" => "Permintaan tidak valid", "Disable" => "NonAktifkan", diff --git a/settings/l10n/is.php b/settings/l10n/is.php index 2421916a5c..75f46a0192 100644 --- a/settings/l10n/is.php +++ b/settings/l10n/is.php @@ -1,12 +1,12 @@ "Ekki tókst að hlaða lista frá forrita síðu", +"Authentication error" => "Villa við auðkenningu", "Group already exists" => "Hópur er þegar til", "Unable to add group" => "Ekki tókst að bæta við hóp", "Could not enable app. " => "Gat ekki virkjað forrit", "Email saved" => "Netfang vistað", "Invalid email" => "Ógilt netfang", "Unable to delete group" => "Ekki tókst að eyða hóp", -"Authentication error" => "Villa við auðkenningu", "Unable to delete user" => "Ekki tókst að eyða notenda", "Language changed" => "Tungumáli breytt", "Invalid request" => "Ógild fyrirspurn", diff --git a/settings/l10n/it.php b/settings/l10n/it.php index 714c5c29c4..2af8615508 100644 --- a/settings/l10n/it.php +++ b/settings/l10n/it.php @@ -1,12 +1,12 @@ "Impossibile caricare l'elenco dall'App Store", +"Authentication error" => "Errore di autenticazione", "Group already exists" => "Il gruppo esiste già", "Unable to add group" => "Impossibile aggiungere il gruppo", "Could not enable app. " => "Impossibile abilitare l'applicazione.", "Email saved" => "Email salvata", "Invalid email" => "Email non valida", "Unable to delete group" => "Impossibile eliminare il gruppo", -"Authentication error" => "Errore di autenticazione", "Unable to delete user" => "Impossibile eliminare l'utente", "Language changed" => "Lingua modificata", "Invalid request" => "Richiesta non valida", @@ -48,6 +48,7 @@ "New password" => "Nuova password", "show" => "mostra", "Change password" => "Modifica password", +"Display Name" => "Nome visualizzato", "Email" => "Email", "Your email address" => "Il tuo indirizzo email", "Fill in an email address to enable password recovery" => "Inserisci il tuo indirizzo email per abilitare il recupero della password", @@ -63,7 +64,6 @@ "Default Storage" => "Archiviazione predefinita", "Unlimited" => "Illimitata", "Other" => "Altro", -"Display Name" => "Nome visualizzato", "Group Admin" => "Gruppi amministrati", "Storage" => "Archiviazione", "change display name" => "cambia il nome visualizzato", diff --git a/settings/l10n/ja_JP.php b/settings/l10n/ja_JP.php index 41f16051fe..2e96739ac2 100644 --- a/settings/l10n/ja_JP.php +++ b/settings/l10n/ja_JP.php @@ -1,12 +1,12 @@ "アプリストアからリストをロードできません", +"Authentication error" => "認証エラー", "Group already exists" => "グループは既に存在しています", "Unable to add group" => "グループを追加できません", "Could not enable app. " => "アプリを有効にできませんでした。", "Email saved" => "メールアドレスを保存しました", "Invalid email" => "無効なメールアドレス", "Unable to delete group" => "グループを削除できません", -"Authentication error" => "認証エラー", "Unable to delete user" => "ユーザを削除できません", "Language changed" => "言語が変更されました", "Invalid request" => "無効なリクエストです", @@ -48,6 +48,7 @@ "New password" => "新しいパスワード", "show" => "表示", "Change password" => "パスワードを変更", +"Display Name" => "表示名", "Email" => "Email", "Your email address" => "あなたのメールアドレス", "Fill in an email address to enable password recovery" => "※パスワード回復を有効にするにはメールアドレスの入力が必要です", @@ -63,7 +64,6 @@ "Default Storage" => "デフォルトストレージ", "Unlimited" => "無制限", "Other" => "その他", -"Display Name" => "表示名", "Group Admin" => "グループ管理者", "Storage" => "ストレージ", "change display name" => "表示名を変更", diff --git a/settings/l10n/ka_GE.php b/settings/l10n/ka_GE.php index 346c89dbc7..0fc42d4272 100644 --- a/settings/l10n/ka_GE.php +++ b/settings/l10n/ka_GE.php @@ -1,12 +1,12 @@ "აპლიკაციების სია ვერ ჩამოიტვირთა App Store", +"Authentication error" => "ავთენტიფიკაციის შეცდომა", "Group already exists" => "ჯგუფი უკვე არსებობს", "Unable to add group" => "ჯგუფის დამატება ვერ მოხერხდა", "Could not enable app. " => "ვერ მოხერხდა აპლიკაციის ჩართვა.", "Email saved" => "იმეილი შენახულია", "Invalid email" => "არასწორი იმეილი", "Unable to delete group" => "ჯგუფის წაშლა ვერ მოხერხდა", -"Authentication error" => "ავთენტიფიკაციის შეცდომა", "Unable to delete user" => "მომხმარებლის წაშლა ვერ მოხერხდა", "Language changed" => "ენა შეცვლილია", "Invalid request" => "არასწორი მოთხოვნა", diff --git a/settings/l10n/ko.php b/settings/l10n/ko.php index e82ecaeba6..a542b35fee 100644 --- a/settings/l10n/ko.php +++ b/settings/l10n/ko.php @@ -1,12 +1,12 @@ "앱 스토어에서 목록을 가져올 수 없습니다", +"Authentication error" => "인증 오류", "Group already exists" => "그룹이 이미 존재합니다.", "Unable to add group" => "그룹을 추가할 수 없습니다.", "Could not enable app. " => "앱을 활성화할 수 없습니다.", "Email saved" => "이메일 저장됨", "Invalid email" => "잘못된 이메일 주소", "Unable to delete group" => "그룹을 삭제할 수 없습니다.", -"Authentication error" => "인증 오류", "Unable to delete user" => "사용자를 삭제할 수 없습니다.", "Language changed" => "언어가 변경되었습니다", "Invalid request" => "잘못된 요청", @@ -42,6 +42,7 @@ "New password" => "새 암호", "show" => "보이기", "Change password" => "암호 변경", +"Display Name" => "표시 이름", "Email" => "이메일", "Your email address" => "이메일 주소", "Fill in an email address to enable password recovery" => "암호 찾기 기능을 사용하려면 이메일 주소를 입력하십시오.", @@ -57,7 +58,6 @@ "Default Storage" => "기본 저장소", "Unlimited" => "무제한", "Other" => "기타", -"Display Name" => "표시 이름", "Group Admin" => "그룹 관리자", "Storage" => "저장소", "change display name" => "표시 이름 변경", diff --git a/settings/l10n/lb.php b/settings/l10n/lb.php index 1c8cff81b0..5ef88f2789 100644 --- a/settings/l10n/lb.php +++ b/settings/l10n/lb.php @@ -1,8 +1,8 @@ "Konnt Lescht net vum App Store lueden", +"Authentication error" => "Authentifikatioun's Fehler", "Email saved" => "E-mail gespäichert", "Invalid email" => "Ongülteg e-mail", -"Authentication error" => "Authentifikatioun's Fehler", "Language changed" => "Sprooch huet geännert", "Invalid request" => "Ongülteg Requête", "Disable" => "Ofschalten", diff --git a/settings/l10n/lt_LT.php b/settings/l10n/lt_LT.php index 335505b453..e514e7f775 100644 --- a/settings/l10n/lt_LT.php +++ b/settings/l10n/lt_LT.php @@ -1,9 +1,9 @@ "Neįmanoma įkelti sąrašo iš Programų Katalogo", +"Authentication error" => "Autentikacijos klaida", "Could not enable app. " => "Nepavyksta įjungti aplikacijos.", "Email saved" => "El. paštas išsaugotas", "Invalid email" => "Netinkamas el. paštas", -"Authentication error" => "Autentikacijos klaida", "Language changed" => "Kalba pakeista", "Invalid request" => "Klaidinga užklausa", "Disable" => "Išjungti", diff --git a/settings/l10n/lv.php b/settings/l10n/lv.php index efbbc8f1ab..f05ee1d749 100644 --- a/settings/l10n/lv.php +++ b/settings/l10n/lv.php @@ -1,12 +1,12 @@ "Nevar lejupielādēt sarakstu no lietotņu veikala", +"Authentication error" => "Autentifikācijas kļūda", "Group already exists" => "Grupa jau eksistē", "Unable to add group" => "Nevar pievienot grupu", "Could not enable app. " => "Nevarēja aktivēt lietotni.", "Email saved" => "E-pasts tika saglabāts", "Invalid email" => "Nederīgs epasts", "Unable to delete group" => "Nevar izdzēst grupu", -"Authentication error" => "Autentifikācijas kļūda", "Unable to delete user" => "Nevar izdzēst lietotāju", "Language changed" => "Valoda tika nomainīta", "Invalid request" => "Nederīgs pieprasījums", @@ -48,6 +48,7 @@ "New password" => "Jauna parole", "show" => "parādīt", "Change password" => "Mainīt paroli", +"Display Name" => "Redzamais vārds", "Email" => "E-pasts", "Your email address" => "Jūsu e-pasta adrese", "Fill in an email address to enable password recovery" => "Ievadiet epasta adresi, lai vēlāk varētu atgūt paroli, ja būs nepieciešamība", @@ -63,7 +64,6 @@ "Default Storage" => "Noklusējuma krātuve", "Unlimited" => "Neierobežota", "Other" => "Cits", -"Display Name" => "Redzamais vārds", "Group Admin" => "Grupas administrators", "Storage" => "Krātuve", "change display name" => "mainīt redzamo vārdu", diff --git a/settings/l10n/mk.php b/settings/l10n/mk.php index 7705b870b3..aba63bc057 100644 --- a/settings/l10n/mk.php +++ b/settings/l10n/mk.php @@ -1,12 +1,12 @@ "Неможам да вчитам листа од App Store", +"Authentication error" => "Грешка во автентикација", "Group already exists" => "Групата веќе постои", "Unable to add group" => "Неможе да додадам група", "Could not enable app. " => "Неможе да овозможам апликација.", "Email saved" => "Електронската пошта е снимена", "Invalid email" => "Неисправна електронска пошта", "Unable to delete group" => "Неможе да избришам група", -"Authentication error" => "Грешка во автентикација", "Unable to delete user" => "Неможам да избришам корисник", "Language changed" => "Јазикот е сменет", "Invalid request" => "неправилно барање", diff --git a/settings/l10n/ms_MY.php b/settings/l10n/ms_MY.php index 22114cfc2d..95c1d01e3b 100644 --- a/settings/l10n/ms_MY.php +++ b/settings/l10n/ms_MY.php @@ -1,7 +1,7 @@ "Ralat pengesahan", "Email saved" => "Emel disimpan", "Invalid email" => "Emel tidak sah", -"Authentication error" => "Ralat pengesahan", "Language changed" => "Bahasa diubah", "Invalid request" => "Permintaan tidak sah", "Disable" => "Nyahaktif", diff --git a/settings/l10n/nb_NO.php b/settings/l10n/nb_NO.php index 0e627120bd..caf0a55186 100644 --- a/settings/l10n/nb_NO.php +++ b/settings/l10n/nb_NO.php @@ -1,12 +1,12 @@ "Lasting av liste fra App Store feilet.", +"Authentication error" => "Autentikasjonsfeil", "Group already exists" => "Gruppen finnes allerede", "Unable to add group" => "Kan ikke legge til gruppe", "Could not enable app. " => "Kan ikke aktivere app.", "Email saved" => "Epost lagret", "Invalid email" => "Ugyldig epost", "Unable to delete group" => "Kan ikke slette gruppe", -"Authentication error" => "Autentikasjonsfeil", "Unable to delete user" => "Kan ikke slette bruker", "Language changed" => "Språk endret", "Invalid request" => "Ugyldig forespørsel", diff --git a/settings/l10n/nl.php b/settings/l10n/nl.php index 72c9108ef9..3488536821 100644 --- a/settings/l10n/nl.php +++ b/settings/l10n/nl.php @@ -1,12 +1,12 @@ "Kan de lijst niet van de App store laden", +"Authentication error" => "Authenticatie fout", "Group already exists" => "Groep bestaat al", "Unable to add group" => "Niet in staat om groep toe te voegen", "Could not enable app. " => "Kan de app. niet activeren", "Email saved" => "E-mail bewaard", "Invalid email" => "Ongeldige e-mail", "Unable to delete group" => "Niet in staat om groep te verwijderen", -"Authentication error" => "Authenticatie fout", "Unable to delete user" => "Niet in staat om gebruiker te verwijderen", "Language changed" => "Taal aangepast", "Invalid request" => "Ongeldig verzoek", @@ -47,6 +47,7 @@ "New password" => "Nieuw wachtwoord", "show" => "weergeven", "Change password" => "Wijzig wachtwoord", +"Display Name" => "Weergavenaam", "Email" => "E-mailadres", "Your email address" => "Uw e-mailadres", "Fill in an email address to enable password recovery" => "Vul een e-mailadres in om wachtwoord reset uit te kunnen voeren", @@ -62,7 +63,6 @@ "Default Storage" => "Default opslag", "Unlimited" => "Ongelimiteerd", "Other" => "Andere", -"Display Name" => "Weergavenaam", "Group Admin" => "Groep beheerder", "Storage" => "Opslag", "change display name" => "wijzig weergavenaam", diff --git a/settings/l10n/nn_NO.php b/settings/l10n/nn_NO.php index 279939b3d3..8faa2d02ca 100644 --- a/settings/l10n/nn_NO.php +++ b/settings/l10n/nn_NO.php @@ -1,8 +1,8 @@ "Klarer ikkje å laste inn liste fra App Store", +"Authentication error" => "Feil i autentisering", "Email saved" => "E-postadresse lagra", "Invalid email" => "Ugyldig e-postadresse", -"Authentication error" => "Feil i autentisering", "Language changed" => "Språk endra", "Invalid request" => "Ugyldig førespurnad", "Disable" => "Slå av", diff --git a/settings/l10n/oc.php b/settings/l10n/oc.php index c89fa2ae50..9accb3acba 100644 --- a/settings/l10n/oc.php +++ b/settings/l10n/oc.php @@ -1,12 +1,12 @@ "Pas possible de cargar la tièra dempuèi App Store", +"Authentication error" => "Error d'autentificacion", "Group already exists" => "Lo grop existís ja", "Unable to add group" => "Pas capable d'apondre un grop", "Could not enable app. " => "Pòt pas activar app. ", "Email saved" => "Corrièl enregistrat", "Invalid email" => "Corrièl incorrècte", "Unable to delete group" => "Pas capable d'escafar un grop", -"Authentication error" => "Error d'autentificacion", "Unable to delete user" => "Pas capable d'escafar un usancièr", "Language changed" => "Lengas cambiadas", "Invalid request" => "Demanda invalida", diff --git a/settings/l10n/pl.php b/settings/l10n/pl.php index 9c05904f25..a06b39e7bd 100644 --- a/settings/l10n/pl.php +++ b/settings/l10n/pl.php @@ -1,12 +1,12 @@ "Nie mogę załadować listy aplikacji", +"Authentication error" => "Błąd uwierzytelniania", "Group already exists" => "Grupa już istnieje", "Unable to add group" => "Nie można dodać grupy", "Could not enable app. " => "Nie można włączyć aplikacji.", "Email saved" => "Email zapisany", "Invalid email" => "Niepoprawny email", "Unable to delete group" => "Nie można usunąć grupy", -"Authentication error" => "Błąd uwierzytelniania", "Unable to delete user" => "Nie można usunąć użytkownika", "Language changed" => "Język zmieniony", "Invalid request" => "Nieprawidłowe żądanie", diff --git a/settings/l10n/pt_BR.php b/settings/l10n/pt_BR.php index a9285d8c40..5a8281446d 100644 --- a/settings/l10n/pt_BR.php +++ b/settings/l10n/pt_BR.php @@ -1,12 +1,12 @@ "Não foi possível carregar lista da App Store", +"Authentication error" => "Erro de autenticação", "Group already exists" => "Grupo já existe", "Unable to add group" => "Não foi possível adicionar grupo", "Could not enable app. " => "Não foi possível habilitar aplicativo.", "Email saved" => "E-mail guardado", "Invalid email" => "E-mail inválido", "Unable to delete group" => "Não foi possível remover grupo", -"Authentication error" => "Erro de autenticação", "Unable to delete user" => "Não foi possível remover usuário", "Language changed" => "Idioma alterado", "Invalid request" => "Pedido inválido", @@ -41,6 +41,7 @@ "New password" => "Nova senha", "show" => "mostrar", "Change password" => "Alterar senha", +"Display Name" => "Nome de Exibição", "Email" => "E-mail", "Your email address" => "Seu endereço de e-mail", "Fill in an email address to enable password recovery" => "Preencha um endereço de e-mail para habilitar a recuperação de senha", @@ -56,7 +57,6 @@ "Default Storage" => "Armazenamento Padrão", "Unlimited" => "Ilimitado", "Other" => "Outro", -"Display Name" => "Nome de Exibição", "Group Admin" => "Grupo Administrativo", "Storage" => "Armazenamento", "Default" => "Padrão", diff --git a/settings/l10n/pt_PT.php b/settings/l10n/pt_PT.php index 243dbeb856..03982fd5e8 100644 --- a/settings/l10n/pt_PT.php +++ b/settings/l10n/pt_PT.php @@ -1,12 +1,12 @@ "Incapaz de carregar a lista da App Store", +"Authentication error" => "Erro de autenticação", "Group already exists" => "O grupo já existe", "Unable to add group" => "Impossível acrescentar o grupo", "Could not enable app. " => "Não foi possível activar a app.", "Email saved" => "Email guardado", "Invalid email" => "Email inválido", "Unable to delete group" => "Impossível apagar grupo", -"Authentication error" => "Erro de autenticação", "Unable to delete user" => "Impossível apagar utilizador", "Language changed" => "Idioma alterado", "Invalid request" => "Pedido inválido", @@ -48,6 +48,7 @@ "New password" => "Nova palavra-chave", "show" => "mostrar", "Change password" => "Alterar palavra-chave", +"Display Name" => "Nome público", "Email" => "endereço de email", "Your email address" => "O seu endereço de email", "Fill in an email address to enable password recovery" => "Preencha com o seu endereço de email para ativar a recuperação da palavra-chave", @@ -63,7 +64,6 @@ "Default Storage" => "Armazenamento Padrão", "Unlimited" => "Ilimitado", "Other" => "Outro", -"Display Name" => "Nome público", "Group Admin" => "Grupo Administrador", "Storage" => "Armazenamento", "change display name" => "modificar nome exibido", diff --git a/settings/l10n/ro.php b/settings/l10n/ro.php index d244bad31b..dcc55a843d 100644 --- a/settings/l10n/ro.php +++ b/settings/l10n/ro.php @@ -1,12 +1,12 @@ "Imposibil de încărcat lista din App Store", +"Authentication error" => "Eroare de autentificare", "Group already exists" => "Grupul există deja", "Unable to add group" => "Nu s-a putut adăuga grupul", "Could not enable app. " => "Nu s-a putut activa aplicația.", "Email saved" => "E-mail salvat", "Invalid email" => "E-mail nevalid", "Unable to delete group" => "Nu s-a putut șterge grupul", -"Authentication error" => "Eroare de autentificare", "Unable to delete user" => "Nu s-a putut șterge utilizatorul", "Language changed" => "Limba a fost schimbată", "Invalid request" => "Cerere eronată", diff --git a/settings/l10n/ru.php b/settings/l10n/ru.php index c364be95e5..7f3a114df5 100644 --- a/settings/l10n/ru.php +++ b/settings/l10n/ru.php @@ -1,21 +1,25 @@ "Загрузка из App Store запрещена", +"Authentication error" => "Ошибка авторизации", "Group already exists" => "Группа уже существует", "Unable to add group" => "Невозможно добавить группу", "Could not enable app. " => "Не удалось включить приложение.", "Email saved" => "Email сохранен", "Invalid email" => "Неправильный Email", "Unable to delete group" => "Невозможно удалить группу", -"Authentication error" => "Ошибка авторизации", "Unable to delete user" => "Невозможно удалить пользователя", "Language changed" => "Язык изменён", "Invalid request" => "Неверный запрос", "Admins can't remove themself from the admin group" => "Администратор не может удалить сам себя из группы admin", "Unable to add user to group %s" => "Невозможно добавить пользователя в группу %s", "Unable to remove user from group %s" => "Невозможно удалить пользователя из группы %s", +"Couldn't update app." => "Невозможно обновить приложение", "Disable" => "Выключить", "Enable" => "Включить", +"Please wait...." => "Повремени...", +"Updating...." => "Обновление...", "Error" => "Ошибка", +"Updated" => "Обновлено", "Saving..." => "Сохранение...", "__language_name__" => "Русский ", "Add your App" => "Добавить приложение", @@ -42,6 +46,7 @@ "New password" => "Новый пароль", "show" => "показать", "Change password" => "Сменить пароль", +"Display Name" => "Отображаемое имя", "Email" => "e-mail", "Your email address" => "Ваш адрес электронной почты", "Fill in an email address to enable password recovery" => "Введите адрес электронной почты, чтобы появилась возможность восстановления пароля", @@ -51,6 +56,7 @@ "Use this address to connect to your ownCloud in your file manager" => "Используйте этот URL для подключения файлового менеджера к Вашему хранилищу", "Version" => "Версия", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Разрабатывается сообществом ownCloud, исходный код доступен под лицензией AGPL.", +"Login Name" => "Имя пользователя", "Groups" => "Группы", "Create" => "Создать", "Default Storage" => "Хранилище по-умолчанию", @@ -58,6 +64,8 @@ "Other" => "Другое", "Group Admin" => "Группа Администраторы", "Storage" => "Хранилище", +"change display name" => "изменить отображаемое имя", +"set new password" => "установить новый пароль", "Default" => "По-умолчанию", "Delete" => "Удалить" ); diff --git a/settings/l10n/ru_RU.php b/settings/l10n/ru_RU.php index 8d9ecf7e55..7dde545e2e 100644 --- a/settings/l10n/ru_RU.php +++ b/settings/l10n/ru_RU.php @@ -1,12 +1,12 @@ "Невозможно загрузить список из App Store", +"Authentication error" => "Ошибка авторизации", "Group already exists" => "Группа уже существует", "Unable to add group" => "Невозможно добавить группу", "Could not enable app. " => "Не удалось запустить приложение", "Email saved" => "Email сохранен", "Invalid email" => "Неверный email", "Unable to delete group" => "Невозможно удалить группу", -"Authentication error" => "Ошибка авторизации", "Unable to delete user" => "Невозможно удалить пользователя", "Language changed" => "Язык изменен", "Invalid request" => "Неверный запрос", diff --git a/settings/l10n/si_LK.php b/settings/l10n/si_LK.php index 4dbe31b991..b2613290f9 100644 --- a/settings/l10n/si_LK.php +++ b/settings/l10n/si_LK.php @@ -1,11 +1,11 @@ "සත්‍යාපන දෝෂයක්", "Group already exists" => "කණ්ඩායම දැනටමත් තිබේ", "Unable to add group" => "කාණඩයක් එක් කළ නොහැකි විය", "Could not enable app. " => "යෙදුම සක්‍රීය කළ නොහැකි විය.", "Email saved" => "වි-තැපෑල සුරකින ලදී", "Invalid email" => "අවලංගු වි-තැපෑල", "Unable to delete group" => "කණ්ඩායම මැකීමට නොහැක", -"Authentication error" => "සත්‍යාපන දෝෂයක්", "Unable to delete user" => "පරිශීලකයා මැකීමට නොහැක", "Language changed" => "භාෂාව ාවනස් කිරීම", "Invalid request" => "අවලංගු අයදුම", diff --git a/settings/l10n/sk_SK.php b/settings/l10n/sk_SK.php index 6148f1476a..162e4d3d01 100644 --- a/settings/l10n/sk_SK.php +++ b/settings/l10n/sk_SK.php @@ -1,12 +1,12 @@ "Nie je možné nahrať zoznam z App Store", +"Authentication error" => "Chyba pri autentifikácii", "Group already exists" => "Skupina už existuje", "Unable to add group" => "Nie je možné pridať skupinu", "Could not enable app. " => "Nie je možné zapnúť aplikáciu.", "Email saved" => "Email uložený", "Invalid email" => "Neplatný email", "Unable to delete group" => "Nie je možné odstrániť skupinu", -"Authentication error" => "Chyba pri autentifikácii", "Unable to delete user" => "Nie je možné odstrániť používateľa", "Language changed" => "Jazyk zmenený", "Invalid request" => "Neplatná požiadavka", @@ -48,6 +48,7 @@ "New password" => "Nové heslo", "show" => "zobraziť", "Change password" => "Zmeniť heslo", +"Display Name" => "Zobrazované meno", "Email" => "Email", "Your email address" => "Vaša emailová adresa", "Fill in an email address to enable password recovery" => "Vyplňte emailovú adresu pre aktivovanie obnovy hesla", @@ -63,7 +64,6 @@ "Default Storage" => "Predvolené úložisko", "Unlimited" => "Nelimitované", "Other" => "Iné", -"Display Name" => "Zobrazované meno", "Group Admin" => "Správca skupiny", "Storage" => "Úložisko", "change display name" => "zmeniť zobrazované meno", diff --git a/settings/l10n/sl.php b/settings/l10n/sl.php index 1524f3c33d..8f4fb9435e 100644 --- a/settings/l10n/sl.php +++ b/settings/l10n/sl.php @@ -1,12 +1,12 @@ "Ni mogoče naložiti seznama iz App Store", +"Authentication error" => "Napaka overitve", "Group already exists" => "Skupina že obstaja", "Unable to add group" => "Ni mogoče dodati skupine", "Could not enable app. " => "Programa ni mogoče omogočiti.", "Email saved" => "Elektronski naslov je shranjen", "Invalid email" => "Neveljaven elektronski naslov", "Unable to delete group" => "Ni mogoče izbrisati skupine", -"Authentication error" => "Napaka overitve", "Unable to delete user" => "Ni mogoče izbrisati uporabnika", "Language changed" => "Jezik je bil spremenjen", "Invalid request" => "Neveljavna zahteva", diff --git a/settings/l10n/sr.php b/settings/l10n/sr.php index e9c12e2ea0..1b12a0178d 100644 --- a/settings/l10n/sr.php +++ b/settings/l10n/sr.php @@ -1,12 +1,12 @@ "Грешка приликом учитавања списка из Складишта Програма", +"Authentication error" => "Грешка при аутентификацији", "Group already exists" => "Група већ постоји", "Unable to add group" => "Не могу да додам групу", "Could not enable app. " => "Не могу да укључим програм", "Email saved" => "Е-порука сачувана", "Invalid email" => "Неисправна е-адреса", "Unable to delete group" => "Не могу да уклоним групу", -"Authentication error" => "Грешка при аутентификацији", "Unable to delete user" => "Не могу да уклоним корисника", "Language changed" => "Језик је промењен", "Invalid request" => "Неисправан захтев", diff --git a/settings/l10n/sv.php b/settings/l10n/sv.php index 239948a0f4..fb8c7854e9 100644 --- a/settings/l10n/sv.php +++ b/settings/l10n/sv.php @@ -1,12 +1,12 @@ "Kan inte ladda listan från App Store", +"Authentication error" => "Autentiseringsfel", "Group already exists" => "Gruppen finns redan", "Unable to add group" => "Kan inte lägga till grupp", "Could not enable app. " => "Kunde inte aktivera appen.", "Email saved" => "E-post sparad", "Invalid email" => "Ogiltig e-post", "Unable to delete group" => "Kan inte radera grupp", -"Authentication error" => "Autentiseringsfel", "Unable to delete user" => "Kan inte radera användare", "Language changed" => "Språk ändrades", "Invalid request" => "Ogiltig begäran", @@ -48,6 +48,7 @@ "New password" => "Nytt lösenord", "show" => "visa", "Change password" => "Ändra lösenord", +"Display Name" => "Visat namn", "Email" => "E-post", "Your email address" => "Din e-postadress", "Fill in an email address to enable password recovery" => "Fyll i en e-postadress för att aktivera återställning av lösenord", @@ -63,7 +64,6 @@ "Default Storage" => "Förvald lagring", "Unlimited" => "Obegränsad", "Other" => "Annat", -"Display Name" => "Visat namn", "Group Admin" => "Gruppadministratör", "Storage" => "Lagring", "change display name" => "ändra visat namn", diff --git a/settings/l10n/ta_LK.php b/settings/l10n/ta_LK.php index e383a297c4..5e94df0dfb 100644 --- a/settings/l10n/ta_LK.php +++ b/settings/l10n/ta_LK.php @@ -1,12 +1,12 @@ "செயலி சேமிப்பிலிருந்து பட்டியலை ஏற்றமுடியாதுள்ளது", +"Authentication error" => "அத்தாட்சிப்படுத்தலில் வழு", "Group already exists" => "குழு ஏற்கனவே உள்ளது", "Unable to add group" => "குழுவை சேர்க்க முடியாது", "Could not enable app. " => "செயலியை இயலுமைப்படுத்த முடியாது", "Email saved" => "மின்னஞ்சல் சேமிக்கப்பட்டது", "Invalid email" => "செல்லுபடியற்ற மின்னஞ்சல்", "Unable to delete group" => "குழுவை நீக்க முடியாது", -"Authentication error" => "அத்தாட்சிப்படுத்தலில் வழு", "Unable to delete user" => "பயனாளரை நீக்க முடியாது", "Language changed" => "மொழி மாற்றப்பட்டது", "Invalid request" => "செல்லுபடியற்ற வேண்டுகோள்", diff --git a/settings/l10n/th_TH.php b/settings/l10n/th_TH.php index 9350b78297..309dbc2657 100644 --- a/settings/l10n/th_TH.php +++ b/settings/l10n/th_TH.php @@ -1,12 +1,12 @@ "ไม่สามารถโหลดรายการจาก App Store ได้", +"Authentication error" => "เกิดข้อผิดพลาดเกี่ยวกับสิทธิ์การเข้าใช้งาน", "Group already exists" => "มีกลุ่มดังกล่าวอยู่ในระบบอยู่แล้ว", "Unable to add group" => "ไม่สามารถเพิ่มกลุ่มได้", "Could not enable app. " => "ไม่สามารถเปิดใช้งานแอปได้", "Email saved" => "อีเมลถูกบันทึกแล้ว", "Invalid email" => "อีเมลไม่ถูกต้อง", "Unable to delete group" => "ไม่สามารถลบกลุ่มได้", -"Authentication error" => "เกิดข้อผิดพลาดเกี่ยวกับสิทธิ์การเข้าใช้งาน", "Unable to delete user" => "ไม่สามารถลบผู้ใช้งานได้", "Language changed" => "เปลี่ยนภาษาเรียบร้อยแล้ว", "Invalid request" => "คำร้องขอไม่ถูกต้อง", @@ -48,6 +48,7 @@ "New password" => "รหัสผ่านใหม่", "show" => "แสดง", "Change password" => "เปลี่ยนรหัสผ่าน", +"Display Name" => "ชื่อที่ต้องการแสดง", "Email" => "อีเมล์", "Your email address" => "ที่อยู่อีเมล์ของคุณ", "Fill in an email address to enable password recovery" => "กรอกที่อยู่อีเมล์ของคุณเพื่อเปิดให้มีการกู้คืนรหัสผ่านได้", @@ -63,7 +64,6 @@ "Default Storage" => "พื้นที่จำกัดข้อมูลเริ่มต้น", "Unlimited" => "ไม่จำกัดจำนวน", "Other" => "อื่นๆ", -"Display Name" => "ชื่อที่ต้องการแสดง", "Group Admin" => "ผู้ดูแลกลุ่ม", "Storage" => "พื้นที่จัดเก็บข้อมูล", "change display name" => "เปลี่ยนชื่อที่ต้องการให้แสดง", diff --git a/settings/l10n/tr.php b/settings/l10n/tr.php index 89c8cf2829..db55491612 100644 --- a/settings/l10n/tr.php +++ b/settings/l10n/tr.php @@ -1,12 +1,12 @@ "App Store'dan liste yüklenemiyor", +"Authentication error" => "Eşleşme hata", "Group already exists" => "Grup zaten mevcut", "Unable to add group" => "Gruba eklenemiyor", "Could not enable app. " => "Uygulama devreye alınamadı", "Email saved" => "Eposta kaydedildi", "Invalid email" => "Geçersiz eposta", "Unable to delete group" => "Grup silinemiyor", -"Authentication error" => "Eşleşme hata", "Unable to delete user" => "Kullanıcı silinemiyor", "Language changed" => "Dil değiştirildi", "Invalid request" => "Geçersiz istek", diff --git a/settings/l10n/uk.php b/settings/l10n/uk.php index 035dbec391..54e43b5137 100644 --- a/settings/l10n/uk.php +++ b/settings/l10n/uk.php @@ -1,12 +1,12 @@ "Не вдалося завантажити список з App Store", +"Authentication error" => "Помилка автентифікації", "Group already exists" => "Група вже існує", "Unable to add group" => "Не вдалося додати групу", "Could not enable app. " => "Не вдалося активувати програму. ", "Email saved" => "Адресу збережено", "Invalid email" => "Невірна адреса", "Unable to delete group" => "Не вдалося видалити групу", -"Authentication error" => "Помилка автентифікації", "Unable to delete user" => "Не вдалося видалити користувача", "Language changed" => "Мова змінена", "Invalid request" => "Помилковий запит", diff --git a/settings/l10n/vi.php b/settings/l10n/vi.php index 3a133460a3..a7682e7ed0 100644 --- a/settings/l10n/vi.php +++ b/settings/l10n/vi.php @@ -1,12 +1,12 @@ "Không thể tải danh sách ứng dụng từ App Store", +"Authentication error" => "Lỗi xác thực", "Group already exists" => "Nhóm đã tồn tại", "Unable to add group" => "Không thể thêm nhóm", "Could not enable app. " => "không thể kích hoạt ứng dụng.", "Email saved" => "Lưu email", "Invalid email" => "Email không hợp lệ", "Unable to delete group" => "Không thể xóa nhóm", -"Authentication error" => "Lỗi xác thực", "Unable to delete user" => "Không thể xóa người dùng", "Language changed" => "Ngôn ngữ đã được thay đổi", "Invalid request" => "Yêu cầu không hợp lệ", diff --git a/settings/l10n/zh_CN.GB2312.php b/settings/l10n/zh_CN.GB2312.php index 6a95751856..c7d73ae2de 100644 --- a/settings/l10n/zh_CN.GB2312.php +++ b/settings/l10n/zh_CN.GB2312.php @@ -1,12 +1,12 @@ "不能从App Store 中加载列表", +"Authentication error" => "认证错误", "Group already exists" => "群组已存在", "Unable to add group" => "未能添加群组", "Could not enable app. " => "未能启用应用", "Email saved" => "Email 保存了", "Invalid email" => "非法Email", "Unable to delete group" => "未能删除群组", -"Authentication error" => "认证错误", "Unable to delete user" => "未能删除用户", "Language changed" => "语言改变了", "Invalid request" => "非法请求", diff --git a/settings/l10n/zh_CN.php b/settings/l10n/zh_CN.php index 48f890fb0c..40c571a876 100644 --- a/settings/l10n/zh_CN.php +++ b/settings/l10n/zh_CN.php @@ -1,12 +1,12 @@ "无法从应用商店载入列表", +"Authentication error" => "认证错误", "Group already exists" => "已存在该组", "Unable to add group" => "无法添加组", "Could not enable app. " => "无法开启App", "Email saved" => "电子邮件已保存", "Invalid email" => "无效的电子邮件", "Unable to delete group" => "无法删除组", -"Authentication error" => "认证错误", "Unable to delete user" => "无法删除用户", "Language changed" => "语言已修改", "Invalid request" => "非法请求", diff --git a/settings/l10n/zh_TW.php b/settings/l10n/zh_TW.php index b540549524..ecff21604f 100644 --- a/settings/l10n/zh_TW.php +++ b/settings/l10n/zh_TW.php @@ -1,12 +1,12 @@ "無法從 App Store 讀取清單", +"Authentication error" => "認證錯誤", "Group already exists" => "群組已存在", "Unable to add group" => "群組增加失敗", "Could not enable app. " => "未能啟動此app", "Email saved" => "Email已儲存", "Invalid email" => "無效的email", "Unable to delete group" => "群組刪除錯誤", -"Authentication error" => "認證錯誤", "Unable to delete user" => "使用者刪除錯誤", "Language changed" => "語言已變更", "Invalid request" => "無效請求", @@ -48,6 +48,7 @@ "New password" => "新密碼", "show" => "顯示", "Change password" => "變更密碼", +"Display Name" => "顯示名稱", "Email" => "電子郵件", "Your email address" => "你的電子郵件信箱", "Fill in an email address to enable password recovery" => "請填入電子郵件信箱以便回復密碼", @@ -63,7 +64,6 @@ "Default Storage" => "預設儲存區", "Unlimited" => "無限制", "Other" => "其他", -"Display Name" => "顯示名稱", "Group Admin" => "群組 管理員", "Storage" => "儲存區", "change display name" => "修改顯示名稱", diff --git a/settings/personal.php b/settings/personal.php index a2e510a6d3..c2df8db1cc 100644 --- a/settings/personal.php +++ b/settings/personal.php @@ -39,15 +39,24 @@ foreach($languageCodes as $lang) { $languages[]=array('code'=>$lang, 'name'=>$lang); } } +//links to clients +$clients = array( + 'desktop' => OC_Config::getValue('customclient_desktop', 'http://owncloud.org/sync-clients/'), + 'android' => OC_Config::getValue('customclient_android', 'https://play.google.com/store/apps/details?id=com.owncloud.android'), + 'ios' => OC_Config::getValue('customclient_ios', 'https://itunes.apple.com/us/app/owncloud/id543672169?mt=8') +); // Return template $tmpl = new OC_Template( 'settings', 'personal', 'user'); $tmpl->assign('usage', OC_Helper::humanFileSize($storageInfo['used'])); $tmpl->assign('total_space', OC_Helper::humanFileSize($storageInfo['total'])); $tmpl->assign('usage_relative', $storageInfo['relative']); +$tmpl->assign('clients', $clients); $tmpl->assign('email', $email); $tmpl->assign('languages', $languages); $tmpl->assign('passwordChangeSupported', OC_User::canUserChangePassword(OC_User::getUser())); +$tmpl->assign('displayNameChangeSupported', OC_User::canUserChangeDisplayName(OC_User::getUser())); +$tmpl->assign('displayName', OC_User::getDisplayName()); $forms=OC_App::getForms('personal'); $tmpl->assign('forms', array()); diff --git a/settings/templates/admin.php b/settings/templates/admin.php index 8c2b6148a6..fac8a68988 100644 --- a/settings/templates/admin.php +++ b/settings/templates/admin.php @@ -37,6 +37,20 @@ if (!$_['isWebDavWorking']) { +
    + t('Module \'fileinfo\' missing');?> + + + t('The PHP module \'fileinfo\' is missing. We strongly recommend to enable this module to get best results with mime-type detection.'); ?> + + +
    + diff --git a/settings/templates/apps.php b/settings/templates/apps.php index 3f0d2a9d1c..ed1232ac32 100644 --- a/settings/templates/apps.php +++ b/settings/templates/apps.php @@ -10,7 +10,7 @@ t('Add your App');?> t('More Apps');?>
  • -
    - +
    diff --git a/tests/bootstrap.php b/tests/bootstrap.php index b97161ee6e..fb667263e4 100644 --- a/tests/bootstrap.php +++ b/tests/bootstrap.php @@ -2,6 +2,9 @@ global $RUNTIME_NOAPPS; $RUNTIME_NOAPPS = true; + +define('PHPUNIT_RUN', 1); + require_once __DIR__.'/../lib/base.php'; if(!class_exists('PHPUnit_Framework_TestCase')) { diff --git a/tests/lib/files/filesystem.php b/tests/lib/files/filesystem.php index 5837093fdd..fd116af2d2 100644 --- a/tests/lib/files/filesystem.php +++ b/tests/lib/files/filesystem.php @@ -93,14 +93,14 @@ class Filesystem extends \PHPUnit_Framework_TestCase { $rootView->mkdir('/'.$user); $rootView->mkdir('/'.$user.'/files'); - \OC\Files\Filesystem::file_put_contents('/foo', 'foo'); +// \OC\Files\Filesystem::file_put_contents('/foo', 'foo'); \OC\Files\Filesystem::mkdir('/bar'); - \OC\Files\Filesystem::file_put_contents('/bar//foo', 'foo'); +// \OC\Files\Filesystem::file_put_contents('/bar//foo', 'foo'); $tmpFile = \OC_Helper::tmpFile(); file_put_contents($tmpFile, 'foo'); $fh = fopen($tmpFile, 'r'); - \OC\Files\Filesystem::file_put_contents('/bar//foo', $fh); +// \OC\Files\Filesystem::file_put_contents('/bar//foo', $fh); } public function dummyHook($arguments) { diff --git a/tests/lib/public/contacts.php b/tests/lib/public/contacts.php index 23994667a2..ce5d762226 100644 --- a/tests/lib/public/contacts.php +++ b/tests/lib/public/contacts.php @@ -39,7 +39,7 @@ class Test_Contacts extends PHPUnit_Framework_TestCase public function testEnabledAfterRegister() { // create mock for the addressbook - $stub = $this->getMock("SimpleAddressBook", array('getKey')); + $stub = $this->getMockForAbstractClass("OCP\IAddressBook", array('getKey')); // we expect getKey to be called twice: // first time on register @@ -65,7 +65,7 @@ class Test_Contacts extends PHPUnit_Framework_TestCase public function testAddressBookEnumeration() { // create mock for the addressbook - $stub = $this->getMock("SimpleAddressBook", array('getKey', 'getDisplayName')); + $stub = $this->getMockForAbstractClass("OCP\IAddressBook", array('getKey', 'getDisplayName')); // setup return for method calls $stub->expects($this->any()) @@ -85,8 +85,8 @@ class Test_Contacts extends PHPUnit_Framework_TestCase public function testSearchInAddressBook() { // create mock for the addressbook - $stub1 = $this->getMock("SimpleAddressBook1", array('getKey', 'getDisplayName', 'search')); - $stub2 = $this->getMock("SimpleAddressBook2", array('getKey', 'getDisplayName', 'search')); + $stub1 = $this->getMockForAbstractClass("OCP\IAddressBook", array('getKey', 'getDisplayName', 'search')); + $stub2 = $this->getMockForAbstractClass("OCP\IAddressBook", array('getKey', 'getDisplayName', 'search')); $searchResult1 = array( array('id' => 0, 'FN' => 'Frank Karlitschek', 'EMAIL' => 'a@b.c', 'GEO' => '37.386013;-122.082932'), diff --git a/tests/phpunit-autotest.xml b/tests/phpunit-autotest.xml new file mode 100644 index 0000000000..23cd123edc --- /dev/null +++ b/tests/phpunit-autotest.xml @@ -0,0 +1,14 @@ + + + + lib/ + apps.php + + + + .. + + ../3rdparty + + + diff --git a/tests/win32-phpunit.php b/tests/win32-phpunit.php new file mode 100644 index 0000000000..ac8f95efcb --- /dev/null +++ b/tests/win32-phpunit.php @@ -0,0 +1,347 @@ +printHeader(); + $this->printFooter($result); + } + + protected function writeProgress($progress) + { + //ignore + } + } + break; + } +} + +//loading of OC_PHPUnit_TextUI_Command +switch (OC_PHPUnit_Loader::$PHPUnitVersionId) { + case "36": + case "37": { + class OC_PHPUnit_TextUI_Command extends PHPUnit_TextUI_Command + { + + public static function main($exit = TRUE) + { + $command = new OC_PHPUnit_TextUI_Command(); + $command->run($_SERVER['argv'], $exit); + } + + protected function handleArguments(array $argv) + { + parent::handleArguments($argv); + $this->arguments['listeners'][] = new OC_PHPUnit_Framework_TestListener(); + $this->arguments['printer'] = new OC_PHPUnit_TextUI_ResultPrinter(); + } + + protected function createRunner() + { + $coverage_Filter = new PHP_CodeCoverage_Filter(); + $coverage_Filter->addFileToBlacklist(__FILE__); + $runner = new PHPUnit_TextUI_TestRunner($this->arguments['loader'], $coverage_Filter); + return $runner; + } + } + break; + } +} + +class OC_PHPUnit_Loader +{ + + const SUCCESS_EXIT = 0; + const FAILURE_EXIT = 1; + const EXCEPTION_EXIT = 2; + + public static $PHPUnitVersionId; + + /** + * @return void + */ + public static function checkIncludePath() + { + //check include path + $PHPUnitParentDirectory = self::getPHPUnitParentDirectory(); + if (is_null($PHPUnitParentDirectory)) { + echo "Cannot find PHPUnit in include path (" . ini_get('include_path') . ")"; + exit(OC_PHPUnit_Loader::FAILURE_EXIT); + } + } + + /** + * @return null | string + */ + private static function getPHPUnitParentDirectory() + { + $pathArray = explode(PATH_SEPARATOR, ini_get('include_path')); + foreach ($pathArray as $path) + { + if (file_exists($path . DIRECTORY_SEPARATOR . 'PHPUnit/')) { + return $path; + } + } + return null; + } + + /** + * @return void + */ + public static function detectPHPUnitVersionId() + { + require_once 'PHPUnit/Runner/Version.php'; + + $PHPUnitVersion = PHPUnit_Runner_Version::id(); + + if ($PHPUnitVersion === "@package_version@") { + + self::$PHPUnitVersionId = "37"; + } + else if (version_compare($PHPUnitVersion, '3.7.0') >= 0) { + + self::$PHPUnitVersionId = "37"; + } + else if (version_compare($PHPUnitVersion, '3.6.0') >= 0) { + + self::$PHPUnitVersionId = "36"; + } + else if (version_compare($PHPUnitVersion, '3.6.0') >= 0) { + + echo "unsupported PHPUnit version: $PHPUnitVersion"; + exit(OC_PHPUnit_Loader::FAILURE_EXIT); + } + } + + /** + * @return void + */ + public static function load37() + { + + require 'PHPUnit/Autoload.php'; + + } + + + /** + * @return void + */ + public static function load36() + { + define('PHPUnit_MAIN_METHOD', 'OC_PHPUnit_TextUI_Command::main'); + + require 'PHPUnit/Autoload.php'; + + } +} + +class OC_PHPUnit_Framework_TestListener implements PHPUnit_Framework_TestListener +{ + + private $isSummaryTestCountPrinted = false; + + public static function printEvent($eventName, $params = array()) + { + self::printText("\n[$eventName"); + foreach ($params as $key => $value) { + self::printText(" $key='$value'"); + } + self::printText("]\n"); + } + + public static function printText($text) + { + file_put_contents('php://stderr', $text); + } + + private static function getMessage(Exception $e) + { + $message = ""; + if (strlen(get_class($e)) != 0) { + $message = $message . get_class($e); + } + if (strlen($message) != 0 && strlen($e->getMessage()) != 0) { + $message = $message . " : "; + } + $message = $message . $e->getMessage(); + return self::escapeValue($message); + } + + private static function getDetails(Exception $e) + { + return self::escapeValue($e->getTraceAsString()); + } + + public static function getValueAsString($value) + { + if (is_null($value)) { + return "null"; + } + else if (is_bool($value)) { + return $value == true ? "true" : "false"; + } + else if (is_array($value) || is_string($value)) { + $valueAsString = print_r($value, true); + if (strlen($valueAsString) > 10000) { + return null; + } + return $valueAsString; + } + else if (is_scalar($value)){ + return print_r($value, true); + } + return null; + } + + private static function escapeValue($text) { + $text = str_replace("|", "||", $text); + $text = str_replace("'", "|'", $text); + $text = str_replace("\n", "|n", $text); + $text = str_replace("\r", "|r", $text); + $text = str_replace("]", "|]", $text); + return $text; + } + + public static function getFileName($className) + { + $reflectionClass = new ReflectionClass($className); + $fileName = $reflectionClass->getFileName(); + return $fileName; + } + + public function addError(PHPUnit_Framework_Test $test, Exception $e, $time) + { + self::printEvent("testFailed", array( + "name" => $test->getName(), + "message" => self::getMessage($e), + "details" => self::getDetails($e) + )); + } + + public function addFailure(PHPUnit_Framework_Test $test, PHPUnit_Framework_AssertionFailedError $e, $time) + { + $params = array( + "name" => $test->getName(), + "message" => self::getMessage($e), + "details" => self::getDetails($e) + ); + if ($e instanceof PHPUnit_Framework_ExpectationFailedException) { + $comparisonFailure = $e->getComparisonFailure(); + if ($comparisonFailure instanceof PHPUnit_Framework_ComparisonFailure) { + $actualResult = $comparisonFailure->getActual(); + $expectedResult = $comparisonFailure->getExpected(); + $actualString = self::getValueAsString($actualResult); + $expectedString = self::getValueAsString($expectedResult); + if (!is_null($actualString) && !is_null($expectedString)) { + $params['actual'] = self::escapeValue($actualString); + $params['expected'] = self::escapeValue($expectedString); + } + } + } + self::printEvent("testFailed", $params); + } + + public function addIncompleteTest(PHPUnit_Framework_Test $test, Exception $e, $time) + { + self::printEvent("testIgnored", array( + "name" => $test->getName(), + "message" => self::getMessage($e), + "details" => self::getDetails($e) + )); + } + + public function addSkippedTest(PHPUnit_Framework_Test $test, Exception $e, $time) + { + self::printEvent("testIgnored", array( + "name" => $test->getName(), + "message" => self::getMessage($e), + "details" => self::getDetails($e) + )); + } + + public function startTest(PHPUnit_Framework_Test $test) + { + $testName = $test->getName(); + $params = array( + "name" => $testName + ); + if ($test instanceof PHPUnit_Framework_TestCase) { + $className = get_class($test); + $fileName = self::getFileName($className); + $params['locationHint'] = "php_qn://$fileName::\\$className::$testName"; + } + self::printEvent("testStarted", $params); + } + + public function endTest(PHPUnit_Framework_Test $test, $time) + { + self::printEvent("testFinished", array( + "name" => $test->getName(), + "duration" => (int)(round($time, 2) * 1000) + )); + } + + public function startTestSuite(PHPUnit_Framework_TestSuite $suite) + { + if (!$this->isSummaryTestCountPrinted) { + $this->isSummaryTestCountPrinted = true; + //print tests count + self::printEvent("testCount", array( + "count" => count($suite) + )); + } + + $suiteName = $suite->getName(); + if (empty($suiteName)) { + return; + } + $params = array( + "name" => $suiteName, + ); + if (class_exists($suiteName, false)) { + $fileName = self::getFileName($suiteName); + $params['locationHint'] = "php_qn://$fileName::\\$suiteName"; + } + self::printEvent("testSuiteStarted", $params); + } + + public function endTestSuite(PHPUnit_Framework_TestSuite $suite) + { + $suiteName = $suite->getName(); + if (empty($suiteName)) { + return; + } + self::printEvent("testSuiteFinished", + array( + "name" => $suite->getName() + )); + } + +} + +OC_PHPUnit_TextUI_Command::main();
    t('Login Name')?>