Merge branch 'master' into fixing-windows-datadir-master

This commit is contained in:
Thomas Mueller 2013-03-19 14:43:55 +01:00
commit 9dd3dcc5cd
227 changed files with 6160 additions and 2998 deletions

1
.gitignore vendored
View file

@ -4,7 +4,6 @@ owncloud
config/config.php
config/mount.php
apps/inc.php
3rdparty
# ignore all apps except core ones
apps/*

3
.gitmodules vendored Normal file
View file

@ -0,0 +1,3 @@
[submodule "3rdparty"]
path = 3rdparty
url = git://github.com/owncloud/3rdparty.git

1
3rdparty Submodule

@ -0,0 +1 @@
Subproject commit 63cb2847921d668c2b48b572872cfddbcf41bea4

View file

@ -47,7 +47,7 @@ $totalSize = 0;
foreach ($files['size'] as $size) {
$totalSize += $size;
}
if ($totalSize > $maxUploadFilesize) {
if ($maxUploadFilesize >= 0 and $totalSize > $maxUploadFilesize) {
OCP\JSON::error(array('data' => array('message' => $l->t('Not enough storage available'),
'uploadMaxFilesize' => $maxUploadFilesize,
'maxHumanFilesize' => $maxHumanFilesize)));

View file

@ -112,7 +112,7 @@ var FileActions = {
addAction(name, action);
}
});
if(actions.Share){
if(actions.Share && !($('#dir').val() === '/' && file === 'Shared')){
addAction('Share', actions.Share);
}

View file

@ -1,24 +1,73 @@
<?php $TRANSLATIONS = array(
"Could not move %s - File with this name already exists" => "فشل في نقل الملف %s - يوجد ملف بنفس هذا الاسم",
"Could not move %s" => "فشل في نقل %s",
"Unable to rename file" => "فشل في اعادة تسمية الملف",
"No file was uploaded. Unknown error" => "لم يتم رفع أي ملف , خطأ غير معروف",
"There is no error, the file uploaded with success" => "تم ترفيع الملفات بنجاح.",
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "حجم الملف المرفوع تجاوز قيمة upload_max_filesize الموجودة في ملف php.ini ",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "حجم الملف الذي تريد ترفيعه أعلى مما MAX_FILE_SIZE يسمح به في واجهة ال HTML.",
"The uploaded file was only partially uploaded" => "تم ترفيع جزء من الملفات الذي تريد ترفيعها فقط",
"No file was uploaded" => "لم يتم ترفيع أي من الملفات",
"Missing a temporary folder" => "المجلد المؤقت غير موجود",
"Failed to write to disk" => "خطأ في الكتابة على القرص الصلب",
"Not enough storage available" => "لا يوجد مساحة تخزينية كافية",
"Invalid directory." => "مسار غير صحيح.",
"Files" => "الملفات",
"Delete permanently" => "حذف بشكل دائم",
"Delete" => "محذوف",
"Rename" => "إعادة تسميه",
"Pending" => "قيد الانتظار",
"{new_name} already exists" => "{new_name} موجود مسبقا",
"replace" => "استبدال",
"suggest name" => "اقترح إسم",
"cancel" => "إلغاء",
"replaced {new_name} with {old_name}" => "استبدل {new_name} بـ {old_name}",
"undo" => "تراجع",
"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}%)" => "مساحتك التخزينية امتلأت تقريبا ",
"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" => "إغلق",
"1 file uploading" => "جاري رفع 1 ملف",
"{count} files uploading" => "جاري رفع {count} ملفات",
"Upload cancelled." => "تم إلغاء عملية رفع الملفات .",
"File upload is in progress. Leaving the page now will cancel the upload." => "عملية رفع الملفات قيد التنفيذ. اغلاق الصفحة سوف يلغي عملية رفع الملفات.",
"URL cannot be empty." => "عنوان ال URL لا يجوز أن يكون فارغا.",
"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "إسم مجلد غير صحيح. استخدام مصطلح \"Shared\" محجوز للنظام",
"Name" => "الاسم",
"Size" => "حجم",
"Modified" => "معدل",
"1 folder" => "مجلد عدد 1",
"{count} folders" => "{count} مجلدات",
"1 file" => "ملف واحد",
"{count} files" => "{count} ملفات",
"Upload" => "إرفع",
"File handling" => "التعامل مع الملف",
"Maximum upload size" => "الحد الأقصى لحجم الملفات التي يمكن رفعها",
"max. possible: " => "الحد الأقصى المسموح به",
"Needed for multi-file and folder downloads." => "اجباري للسماح بالتحميل المتعدد للمجلدات والملفات",
"Enable ZIP-download" => "تفعيل خاصية تحميل ملفات ZIP",
"0 is unlimited" => "0 = غير محدود",
"Maximum input size for ZIP files" => "الحد الأقصى المسموح به لملفات ZIP",
"Save" => "حفظ",
"New" => "جديد",
"Text file" => "ملف",
"Folder" => "مجلد",
"From link" => "من رابط",
"Deleted files" => "حذف الملفات",
"Cancel upload" => "إلغاء رفع الملفات",
"You dont have write permissions here." => "لا تملك صلاحيات الكتابة هنا.",
"Nothing in here. Upload something!" => "لا يوجد شيء هنا. إرفع بعض الملفات!",
"Download" => "تحميل",
"Unshare" => "إلغاء مشاركة",
"Upload too large" => "حجم الترفيع أعلى من المسموح",
"The files you are trying to upload exceed the maximum size for file uploads on this server." => "حجم الملفات التي تريد ترفيعها أعلى من المسموح على الخادم."
"The files you are trying to upload exceed the maximum size for file uploads on this server." => "حجم الملفات التي تريد ترفيعها أعلى من المسموح على الخادم.",
"Files are being scanned, please wait." => "يرجى الانتظار , جاري فحص الملفات .",
"Current scanning" => "الفحص الحالي",
"Upgrading filesystem cache..." => "تحديث ذاكرة التخزين المؤقت(الكاش) الخاصة بملفات النظام ..."
);

View file

@ -61,6 +61,7 @@
"From link" => "Από σύνδεσμο",
"Deleted files" => "Διαγραμμένα αρχεία",
"Cancel upload" => "Ακύρωση αποστολής",
"You dont have write permissions here." => "Δεν έχετε δικαιώματα εγγραφής εδώ.",
"Nothing in here. Upload something!" => "Δεν υπάρχει τίποτα εδώ. Μεταφορτώστε κάτι!",
"Download" => "Λήψη",
"Unshare" => "Διακοπή κοινής χρήσης",

View file

@ -61,6 +61,7 @@
"From link" => "Desde enlace",
"Deleted files" => "Archivos Borrados",
"Cancel upload" => "Cancelar subida",
"You dont have write permissions here." => "No tenés permisos de escritura acá.",
"Nothing in here. Upload something!" => "No hay nada. ¡Subí contenido!",
"Download" => "Descargar",
"Unshare" => "Dejar de compartir",

View file

@ -10,6 +10,7 @@
"No file was uploaded" => "هیچ فایلی بارگذاری نشده",
"Missing a temporary folder" => "یک پوشه موقت گم شده است",
"Failed to write to disk" => "نوشتن بر روی دیسک سخت ناموفق بود",
"Not enough storage available" => "فضای کافی در دسترس نیست",
"Invalid directory." => "فهرست راهنما نامعتبر می باشد.",
"Files" => "فایل ها",
"Delete permanently" => "حذف قطعی",
@ -22,9 +23,12 @@
"cancel" => "لغو",
"replaced {new_name} with {old_name}" => "{نام_جدید} با { نام_قدیمی} جایگزین شد.",
"undo" => "بازگشت",
"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" => "خطا در بار گذاری",
@ -57,11 +61,13 @@
"From link" => "از پیوند",
"Deleted files" => "فایل های حذف شده",
"Cancel upload" => "متوقف کردن بار گذاری",
"You dont have write permissions here." => "شما اجازه ی نوشتن در اینجا را ندارید",
"Nothing in here. Upload something!" => "اینجا هیچ چیز نیست.",
"Download" => "بارگیری",
"Unshare" => "لغو اشتراک",
"Upload too large" => "حجم بارگذاری بسیار زیاد است",
"The files you are trying to upload exceed the maximum size for file uploads on this server." => "فایلها بیش از حد تعیین شده در این سرور هستند\nمترجم:با تغییر فایل php,ini میتوان این محدودیت را برطرف کرد",
"Files are being scanned, please wait." => "پرونده ها در حال بازرسی هستند لطفا صبر کنید",
"Current scanning" => "بازرسی کنونی"
"Current scanning" => "بازرسی کنونی",
"Upgrading filesystem cache..." => "بهبود فایل سیستمی ذخیره گاه..."
);

View file

@ -61,6 +61,7 @@
"From link" => "Depuis le lien",
"Deleted files" => "Fichiers supprimés",
"Cancel upload" => "Annuler l'envoi",
"You dont have write permissions here." => "Vous n'avez pas le droit d'écriture ici.",
"Nothing in here. Upload something!" => "Il n'y a rien ici ! Envoyez donc quelque chose :)",
"Download" => "Télécharger",
"Unshare" => "Ne plus partager",

View file

@ -61,6 +61,7 @@
"From link" => "Bağlantıdan",
"Deleted files" => "Dosyalar silindi",
"Cancel upload" => "Yüklemeyi iptal et",
"You dont have write permissions here." => "Buraya erişim hakkınız yok.",
"Nothing in here. Upload something!" => "Burada hiçbir şey yok. Birşeyler yükleyin!",
"Download" => "İndir",
"Unshare" => "Paylaşılmayan",

View file

@ -10,8 +10,10 @@
"No file was uploaded" => "文件没有上传",
"Missing a temporary folder" => "缺少临时目录",
"Failed to write to disk" => "写入磁盘失败",
"Not enough storage available" => "没有足够的存储空间",
"Invalid directory." => "无效文件夹。",
"Files" => "文件",
"Delete permanently" => "永久删除",
"Delete" => "删除",
"Rename" => "重命名",
"Pending" => "操作等待中",
@ -21,9 +23,12 @@
"cancel" => "取消",
"replaced {new_name} with {old_name}" => "已将 {old_name}替换成 {new_name}",
"undo" => "撤销",
"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" => "上传错误",
@ -54,12 +59,15 @@
"Text file" => "文本文件",
"Folder" => "文件夹",
"From link" => "来自链接",
"Deleted files" => "删除文件",
"Cancel upload" => "取消上传",
"You dont have write permissions here." => "您没有写权限",
"Nothing in here. Upload something!" => "这里还什么都没有。上传些东西吧!",
"Download" => "下载",
"Unshare" => "取消分享",
"Upload too large" => "上传文件过大",
"The files you are trying to upload exceed the maximum size for file uploads on this server." => "您正尝试上传的文件超过了此服务器可以上传的最大容量限制",
"Files are being scanned, please wait." => "文件正在被扫描,请稍候。",
"Current scanning" => "当前扫描"
"Current scanning" => "当前扫描",
"Upgrading filesystem cache..." => "正在更新文件系统缓存..."
);

View file

@ -0,0 +1,9 @@
<?php $TRANSLATIONS = array(
"Files" => "文件",
"Delete" => "刪除",
"Name" => "名稱",
"Upload" => "上傳",
"Save" => "儲存",
"Download" => "下載",
"Unshare" => "取消分享"
);

View file

@ -23,8 +23,10 @@
method="post"
enctype="multipart/form-data"
target="file_upload_target_1">
<?php if($_['uploadMaxFilesize'] >= 0):?>
<input type="hidden" name="MAX_FILE_SIZE" id="max_upload"
value="<?php p($_['uploadMaxFilesize']) ?>">
<?php endif;?>
<!-- Send the requesttoken, this is needed for older IE versions
because they don't send the CSRF token via HTTP header in this case -->
<input type="hidden" name="requesttoken" value="<?php p($_['requesttoken']) ?>" id="requesttoken">

View file

@ -1,4 +1,7 @@
<?php $TRANSLATIONS = array(
"Encryption" => "التشفير",
"File encryption is enabled." => "تشفير الملفات فعال.",
"The following file types will not be encrypted:" => "الملفات الاتية لن يتم تشفيرها:",
"Exclude the following file types from encryption:" => "إستثناء أنواع الملفات الاتية من التشفير: ",
"None" => "لا شيء"
);

View file

@ -1,4 +1,7 @@
<?php $TRANSLATIONS = array(
"Encryption" => "رمزگذاری",
"File encryption is enabled." => "رمزنگاری فایلها فعال شد.",
"The following file types will not be encrypted:" => "فایلهای زیر رمزنگاری نخواهند شد:",
"Exclude the following file types from encryption:" => "فایلهای زیر از رمزنگاری نادیده گرفته می شوند:",
"None" => "هیچ‌کدام"
);

View file

@ -2,6 +2,6 @@
"Encryption" => "Šifriranje",
"File encryption is enabled." => "Šifriranje datotek je omogočeno.",
"The following file types will not be encrypted:" => "Navedene vrste datotek ne bodo šifrirane:",
"Exclude the following file types from encryption:" => "Izloči navedene vrste datotek med šifriranjem:",
"Exclude the following file types from encryption:" => "Ne šifriraj navedenih vrst datotek:",
"None" => "Brez"
);

View file

@ -1,4 +1,7 @@
<?php $TRANSLATIONS = array(
"Encryption" => "加密",
"None" => "None"
"File encryption is enabled." => "文件加密已启用.",
"The following file types will not be encrypted:" => "如下的文件类型将不会被加密:",
"Exclude the following file types from encryption:" => "从加密中排除如下的文件类型:",
"None" => ""
);

View file

@ -0,0 +1,6 @@
<?php $TRANSLATIONS = array(
"Encryption" => "加密",
"File encryption is enabled." => "檔案加密已開啟",
"The following file types will not be encrypted:" => "以下文件類別將不會被加密",
"None" => ""
);

View file

@ -3,9 +3,11 @@
"Configuration" => "پیکربندی",
"Options" => "تنظیمات",
"Applicable" => "قابل اجرا",
"None set" => "تنظیم نشده",
"All Users" => "تمام کاربران",
"Groups" => "گروه ها",
"Users" => "کاربران",
"Delete" => "حذف",
"Enable User External Storage" => "فعال سازی حافظه خارجی کاربر"
"Enable User External Storage" => "فعال سازی حافظه خارجی کاربر",
"Allow users to mount their own external storage" => "اجازه به کاربران برای متصل کردن منابع ذخیره ی خارجی خودشان"
);

View file

@ -8,9 +8,11 @@
"<b>Warning:</b> The FTP support in PHP is not enabled or installed. Mounting of FTP shares is not possible. Please ask your system administrator to install it." => "<b>Attention : </b> Le support FTP de PHP n'est pas activé ou installé. Le montage des partages FTP n'est pas disponible. Contactez votre administrateur système pour l'installer.",
"External Storage" => "Stockage externe",
"Folder name" => "Nom du dossier",
"External storage" => "Stockage externe",
"Configuration" => "Configuration",
"Options" => "Options",
"Applicable" => "Disponible",
"Add storage" => "Ajouter un support de stockage",
"None set" => "Aucun spécifié",
"All Users" => "Tous les utilisateurs",
"Groups" => "Groupes",

View file

@ -8,9 +8,11 @@
"<b>Warning:</b> The FTP support in PHP is not enabled or installed. Mounting of FTP shares is not possible. Please ask your system administrator to install it." => "<b>警告:</b>PHP中尚未启用或安装FTP。FTP 分享挂载无法实现。请咨询系统管理员进行安装。",
"External Storage" => "外部存储",
"Folder name" => "目录名称",
"External storage" => "外部存储",
"Configuration" => "配置",
"Options" => "选项",
"Applicable" => "适用的",
"Add storage" => "添加存储",
"None set" => "未设置",
"All Users" => "所有用户",
"Groups" => "",

View file

@ -0,0 +1,5 @@
<?php $TRANSLATIONS = array(
"Groups" => "群組",
"Users" => "用戶",
"Delete" => "刪除"
);

View file

@ -155,7 +155,7 @@
</tbody>
</table>
<input type="hidden" name="requesttoken" value="<?php p($_['requesttoken']); ?>">
<input type="file" id="rootcert_import" name="rootcert_import" style="width:230px;">
<input type="file" id="rootcert_import" name="rootcert_import">
<input type="submit" name="cert_import" value="<?php p($l->t('Import Root Certificate')); ?>" />
</fieldset>
</form>

View file

@ -12,7 +12,7 @@ OCP\Share::registerBackend('file', 'OC_Share_Backend_File');
OCP\Share::registerBackend('folder', 'OC_Share_Backend_Folder', 'file');
OCP\Util::addScript('files_sharing', 'share');
\OC_Hook::connect('OC_Filesystem', 'post_write', '\OC\Files\Cache\Shared_Updater', 'writeHook');
\OC_Hook::connect('OC_Filesystem', 'post_delete', '\OC\Files\Cache\Shared_Updater', 'deleteHook');
\OC_Hook::connect('OC_Filesystem', 'delete', '\OC\Files\Cache\Shared_Updater', 'deleteHook');
\OC_Hook::connect('OC_Filesystem', 'post_rename', '\OC\Files\Cache\Shared_Updater', 'renameHook');
\OC_Hook::connect('OCP\Share', 'post_shared', '\OC\Files\Cache\Shared_Updater', 'shareHook');
\OC_Hook::connect('OCP\Share', 'pre_unshare', '\OC\Files\Cache\Shared_Updater', 'shareHook');

View file

@ -0,0 +1,4 @@
<?php $TRANSLATIONS = array(
"Password" => "密碼",
"Download" => "下載"
);

View file

@ -10,6 +10,7 @@ $list = json_decode($files);
$error = array();
$success = array();
$i = 0;
foreach ($list as $file) {
if ( $dirlisting=='0') {
@ -28,6 +29,7 @@ foreach ($list as $file) {
$i++;
} else {
$error[] = $filename;
OC_Log::write('trashbin','can\'t delete ' . $filename . ' permanently.', OC_Log::ERROR);
}
}

View file

@ -24,6 +24,7 @@ foreach ($list as $file) {
if ( !OCA\Files_Trashbin\Trashbin::restore($file, $filename, $timestamp) ) {
$error[] = $filename;
OC_Log::write('trashbin','can\'t restore ' . $filename, OC_Log::ERROR);
} else {
$success[$i]['filename'] = $file;
$success[$i]['timestamp'] = $timestamp;

View file

@ -43,7 +43,7 @@ if ($dir) {
} else {
$dirlisting = false;
$query = \OC_DB::prepare('SELECT `id`,`location`,`timestamp`,`type`,`mime` FROM `*PREFIX*files_trash` WHERE user = ?');
$query = \OC_DB::prepare('SELECT `id`,`location`,`timestamp`,`type`,`mime` FROM `*PREFIX*files_trash` WHERE `user` = ?');
$result = $query->execute(array($user))->fetchAll();
}

View file

@ -1,4 +1,9 @@
<?php $TRANSLATIONS = array(
"Delete permanently" => "حذف بشكل دائم",
"Name" => "اسم",
"1 folder" => "مجلد عدد 1",
"{count} folders" => "{count} مجلدات",
"1 file" => "ملف واحد",
"{count} files" => "{count} ملفات",
"Delete" => "إلغاء"
);

View file

@ -3,7 +3,7 @@
"Couldn't restore %s" => "Konnte %s nicht wiederherstellen",
"perform restore operation" => "Wiederherstellung ausführen",
"delete file permanently" => "Datei dauerhaft löschen",
"Delete permanently" => "Permanent löschen",
"Delete permanently" => "Endgültig löschen",
"Name" => "Name",
"Deleted" => "gelöscht",
"1 folder" => "1 Ordner",

View file

@ -13,5 +13,5 @@
"Nothing in here. Your trash bin is empty!" => "Nichts zu löschen, Ihr Papierkorb ist leer!",
"Restore" => "Wiederherstellen",
"Delete" => "Löschen",
"Deleted Files" => "gelöschte Dateien"
"Deleted Files" => "Gelöschte Dateien"
);

View file

@ -1,10 +1,17 @@
<?php $TRANSLATIONS = array(
"Couldn't delete %s permanently" => "%s را نمی توان برای همیشه حذف کرد",
"Couldn't restore %s" => "%s را نمی توان بازگرداند",
"perform restore operation" => "انجام عمل بازگرداندن",
"delete file permanently" => "حذف فایل برای همیشه",
"Delete permanently" => "حذف قطعی",
"Name" => "نام",
"Deleted" => "حذف شده",
"1 folder" => "1 پوشه",
"{count} folders" => "{ شمار} پوشه ها",
"1 file" => "1 پرونده",
"{count} files" => "{ شمار } فایل ها",
"Nothing in here. Your trash bin is empty!" => "هیچ چیزی اینجا نیست. سطل زباله ی شما خالی است.",
"Restore" => "بازیابی",
"Delete" => "حذف"
"Delete" => "حذف",
"Deleted Files" => "فایلهای حذف شده"
);

View file

@ -1,9 +1,17 @@
<?php $TRANSLATIONS = array(
"Couldn't delete %s permanently" => "无法彻底删除文件%s",
"Couldn't restore %s" => "无法恢复%s",
"perform restore operation" => "执行恢复操作",
"delete file permanently" => "彻底删除文件",
"Delete permanently" => "永久删除",
"Name" => "名称",
"Deleted" => "已删除",
"1 folder" => "1个文件夹",
"{count} folders" => "{count} 个文件夹",
"1 file" => "1 个文件",
"{count} files" => "{count} 个文件",
"Nothing in here. Your trash bin is empty!" => "这里没有东西. 你的回收站是空的!",
"Restore" => "恢复",
"Delete" => "删除",
"Deleted Files" => "已删除文件"
);

View file

@ -0,0 +1,4 @@
<?php $TRANSLATIONS = array(
"Name" => "名稱",
"Delete" => "刪除"
);

View file

@ -64,7 +64,7 @@ class Trashbin {
$trashbinSize += self::copy_recursive($file_path, 'files_trashbin/files/'.$deleted.'.d'.$timestamp, $view);
if ( $view->file_exists('files_trashbin/files/'.$deleted.'.d'.$timestamp) ) {
$query = \OC_DB::prepare("INSERT INTO *PREFIX*files_trash (id,timestamp,location,type,mime,user) VALUES (?,?,?,?,?,?)");
$query = \OC_DB::prepare("INSERT INTO *PREFIX*files_trash (`id`,`timestamp`,`location`,`type`,`mime`,`user`) VALUES (?,?,?,?,?,?)");
$result = $query->execute(array($deleted, $timestamp, $location, $type, $mime, $user));
if ( !$result ) { // if file couldn't be added to the database than also don't store it in the trash bin.
$view->deleteAll('files_trashbin/files/'.$deleted.'.d'.$timestamp);
@ -144,8 +144,8 @@ class Trashbin {
$trashbinSize = self::calculateSize(new \OC\Files\View('/'. $user.'/files_trashbin'));
}
if ( $timestamp ) {
$query = \OC_DB::prepare('SELECT location,type FROM *PREFIX*files_trash'
.' WHERE user=? AND id=? AND timestamp=?');
$query = \OC_DB::prepare('SELECT `location`,`type` FROM *PREFIX*files_trash'
.' WHERE `user`=? AND `id`=? AND `timestamp`=?');
$result = $query->execute(array($user,$filename,$timestamp))->fetchAll();
if ( count($result) != 1 ) {
\OC_Log::write('files_trashbin', 'trash bin database inconsistent!', \OC_Log::ERROR);
@ -228,7 +228,7 @@ class Trashbin {
}
if ( $timestamp ) {
$query = \OC_DB::prepare('DELETE FROM *PREFIX*files_trash WHERE user=? AND id=? AND timestamp=?');
$query = \OC_DB::prepare('DELETE FROM *PREFIX*files_trash WHERE `user`=? AND `id`=? AND `timestamp`=?');
$query->execute(array($user,$filename,$timestamp));
}
@ -259,7 +259,7 @@ class Trashbin {
}
if ( $timestamp ) {
$query = \OC_DB::prepare('DELETE FROM *PREFIX*files_trash WHERE user=? AND id=? AND 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 {
@ -344,7 +344,7 @@ class Trashbin {
$view = new \OC\Files\View('/'.$user);
$size = 0;
$query = \OC_DB::prepare('SELECT location,type,id,timestamp FROM *PREFIX*files_trash WHERE user=?');
$query = \OC_DB::prepare('SELECT `location`,`type`,`id`,`timestamp` FROM *PREFIX*files_trash WHERE `user`=?');
$result = $query->execute(array($user))->fetchAll();
$retention_obligation = \OC_Config::getValue('trashbin_retention_obligation',
@ -362,8 +362,8 @@ class Trashbin {
$availableSpace = $availableSpace + $size;
// if size limit for trash bin reached, delete oldest files in trash bin
if ($availableSpace < 0) {
$query = \OC_DB::prepare('SELECT location,type,id,timestamp FROM *PREFIX*files_trash'
.' WHERE user=? ORDER BY timestamp ASC');
$query = \OC_DB::prepare('SELECT `location`,`type`,`id`,`timestamp` FROM *PREFIX*files_trash'
.' WHERE `user`=? ORDER BY `timestamp` ASC');
$result = $query->execute(array($user))->fetchAll();
$length = count($result);
$i = 0;
@ -490,7 +490,7 @@ class Trashbin {
* @return mixed trash bin size or false if no trash bin size is stored
*/
private static function getTrashbinSize($user) {
$query = \OC_DB::prepare('SELECT size FROM *PREFIX*files_trashsize WHERE user=?');
$query = \OC_DB::prepare('SELECT `size` FROM *PREFIX*files_trashsize WHERE `user`=?');
$result = $query->execute(array($user))->fetchAll();
if ($result) {
@ -507,9 +507,9 @@ class Trashbin {
*/
private static function setTrashbinSize($user, $size) {
if ( self::getTrashbinSize($user) === false) {
$query = \OC_DB::prepare('INSERT INTO *PREFIX*files_trashsize (size, user) VALUES (?, ?)');
$query = \OC_DB::prepare('INSERT INTO *PREFIX*files_trashsize (`size`, `user`) VALUES (?, ?)');
}else {
$query = \OC_DB::prepare('UPDATE *PREFIX*files_trashsize SET size=? WHERE user=?');
$query = \OC_DB::prepare('UPDATE *PREFIX*files_trashsize SET `size`=? WHERE `user`=?');
}
$query->execute(array($size, $user));
}

View file

@ -6,5 +6,6 @@
"File %s could not be reverted to version %s" => "Le fichier %s ne peut être restauré dans sa version %s",
"No old versions available" => "Aucune ancienne version n'est disponible",
"No path specified" => "Aucun chemin spécifié",
"Versions" => "Versions",
"Revert a file to a previous version by clicking on its revert button" => "Restaurez un fichier dans une version antérieure en cliquant sur son bouton de restauration"
);

View file

@ -3,7 +3,7 @@
"success" => "uspešno",
"File %s was reverted to version %s" => "Datoteka %s je povrnjena na različico %s.",
"failure" => "spodletelo",
"File %s could not be reverted to version %s" => "Datoteka %s ni mogoče povrniti na različico %s.",
"File %s could not be reverted to version %s" => "Datoteke %s ni mogoče povrniti na različico %s.",
"No old versions available" => "Ni starejših različic.",
"No path specified" => "Ni določene poti",
"Versions" => "Različice",

View file

@ -0,0 +1,6 @@
<?php $TRANSLATIONS = array(
"success" => "成功",
"failure" => "失敗",
"No old versions available" => "沒有以往版本",
"Versions" => "版本"
);

View file

@ -53,7 +53,7 @@ class Storage {
* @return mixed versions size or false if no versions size is stored
*/
private static function getVersionsSize($user) {
$query = \OC_DB::prepare('SELECT size FROM *PREFIX*files_versions WHERE user=?');
$query = \OC_DB::prepare('SELECT `size` FROM *PREFIX*files_versions WHERE `user`=?');
$result = $query->execute(array($user))->fetchAll();
if ($result) {
@ -70,9 +70,9 @@ class Storage {
*/
private static function setVersionsSize($user, $size) {
if ( self::getVersionsSize($user) === false) {
$query = \OC_DB::prepare('INSERT INTO *PREFIX*files_versions (size, user) VALUES (?, ?)');
$query = \OC_DB::prepare('INSERT INTO *PREFIX*files_versions (`size`, `user`) VALUES (?, ?)');
}else {
$query = \OC_DB::prepare('UPDATE *PREFIX*files_versions SET size=? WHERE user=?');
$query = \OC_DB::prepare('UPDATE *PREFIX*files_versions SET `size`=? WHERE `user`=?');
}
$query->execute(array($size, $user));
}
@ -156,11 +156,18 @@ class Storage {
/**
* rename versions of a file
*/
public static function rename($oldpath, $newpath) {
list($uid, $oldpath) = self::getUidAndFilename($oldpath);
list($uidn, $newpath) = self::getUidAndFilename($newpath);
public static function rename($old_path, $new_path) {
list($uid, $oldpath) = self::getUidAndFilename($old_path);
list($uidn, $newpath) = self::getUidAndFilename($new_path);
$versions_view = new \OC\Files\View('/'.$uid .'/files_versions');
$files_view = new \OC\Files\View('/'.$uid .'/files');
// if the file already exists than it was a upload of a existing file
// over the web interface -> store() is the right function we need here
if ($files_view->file_exists($newpath)) {
return self::store($new_path);
}
$abs_newpath = $versions_view->getLocalFile($newpath);
if ( $files_view->is_dir($oldpath) && $versions_view->is_dir($oldpath) ) {

View file

@ -139,6 +139,9 @@ class GROUP_LDAP extends lib\Access implements \OCP\GroupInterface {
if(!$this->enabled) {
return array();
}
if(!$this->groupExists($gid)) {
return false;
}
$cachekey = 'usersInGroup-'.$gid.'-'.$search.'-'.$limit.'-'.$offset;
// check for cache of the exact query
$groupUsers = $this->connection->getFromCache($cachekey);
@ -214,6 +217,12 @@ class GROUP_LDAP extends lib\Access implements \OCP\GroupInterface {
* @returns array with display names (value) and user ids(key)
*/
public function displayNamesInGroup($gid, $search, $limit, $offset) {
if(!$this->enabled) {
return array();
}
if(!$this->groupExists($gid)) {
return false;
}
$users = $this->usersInGroup($gid, $search, $limit, $offset);
$displayNames = array();
foreach($users as $user) {

View file

@ -68,6 +68,7 @@
"Quota Default" => "Cuota por defecto",
"in bytes" => "en bytes",
"Email Field" => "E-mail",
"User Home Folder Naming Rule" => "Regla para la carpeta Home de usuario",
"Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Vacío para el nombre de usuario (por defecto). En otro caso, especifique un atributo LDAP/AD.",
"Test Configuration" => "Configuración de prueba",
"Help" => "Ayuda"

View file

@ -48,6 +48,7 @@
"Turn off SSL certificate validation." => "Desactivar la validación por certificado SSL.",
"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.",
"Cache Time-To-Live" => "Tiempo de vida del caché",
"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",
@ -63,7 +64,12 @@
"Group Search Attributes" => "Atributos de búsqueda de grupo",
"Group-Member association" => "Asociación Grupo-Miembro",
"Special Attributes" => "Atributos Especiales",
"Quota Field" => "Campo de cuota",
"Quota Default" => "Cuota por defecto",
"in bytes" => "en bytes",
"Email Field" => "Campo de e-mail",
"User Home Folder Naming Rule" => "Regla de nombre de los directorios de usuario",
"Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Vacío para el nombre de usuario (por defecto). En otro caso, especificá un atributo LDAP/AD.",
"Test Configuration" => "Probar configuración",
"Help" => "Ayuda"
);

View file

@ -11,6 +11,7 @@
"Add Server Configuration" => "افزودن پیکربندی سرور",
"Host" => "میزبانی",
"Password" => "رمز عبور",
"Group Filter" => "فیلتر گروه",
"Port" => "درگاه",
"in bytes" => "در بایت",
"Help" => "راه‌نما"

View file

@ -48,6 +48,7 @@
"Turn off SSL certificate validation." => "Désactiver la validation du certificat SSL.",
"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.",
"Cache Time-To-Live" => "Durée de vie du cache",
"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",
@ -63,7 +64,12 @@
"Group Search Attributes" => "Recherche des attributs du groupe",
"Group-Member association" => "Association groupe-membre",
"Special Attributes" => "Attributs spéciaux",
"Quota Field" => "Champ du quota",
"Quota Default" => "Quota par défaut",
"in bytes" => "en octets",
"Email Field" => "Champ Email",
"User Home Folder Naming Rule" => "Convention de nommage du répertoire utilisateur",
"Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Laisser vide ",
"Test Configuration" => "Tester la configuration",
"Help" => "Aide"
);

View file

@ -41,7 +41,7 @@
"Give an optional backup host. It must be a replica of the main LDAP/AD server." => "Podati je treba izbirno varnostno kopijo gostitelja. Ta mora biti natančna replika strežnika LDAP/AD.",
"Backup (Replica) Port" => "Varnostna kopija (replika) podatka vrat",
"Disable Main Server" => "Onemogoči glavni strežnik",
"When switched on, ownCloud will only connect to the replica server." => "Ob priklopu bo strežnik ownCloud povezan le z kopijo (repliko) strežnika.",
"When switched on, ownCloud will only connect to the replica server." => "Ob priklopu bo strežnik ownCloud povezan le s kopijo (repliko) strežnika.",
"Use TLS" => "Uporabi TLS",
"Do not use it additionally for LDAPS connections, it will fail." => "Strežnika ni priporočljivo uporabljati za povezave LDAPS. Povezava bo spodletela.",
"Case insensitve LDAP server (Windows)" => "Strežnik LDAP ne upošteva velikosti črk (Windows)",

View file

@ -1,9 +1,24 @@
<?php $TRANSLATIONS = array(
"Failed to delete the server configuration" => "未能删除服务器配置",
"The configuration is valid and the connection could be established!" => "配置有效,能够建立连接!",
"The configuration is valid, but the Bind failed. Please check the server settings and credentials." => "配置有效但绑定失败。请检查服务器设置和认证信息。",
"The configuration is invalid. Please look in the ownCloud log for further details." => "配置无效。更多细节请查看 ownCloud 日志。",
"Deletion failed" => "删除失败",
"Take over settings from recent server configuration?" => "从近期的服务器配置中导入设置?",
"Keep settings?" => "保留设置吗?",
"Cannot add server configuration" => "无法添加服务器配置",
"Connection test succeeded" => "连接测试成功",
"Connection test failed" => "连接测试失败",
"Do you really want to delete the current Server Configuration?" => "您真的想要删除当前服务器配置吗?",
"Confirm Deletion" => "确认删除",
"<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "<b>警告:</b>应用 user_ldap 和 user_webdavauth 不兼容。您可能遭遇未预料的行为。请垂询您的系统管理员禁用其中一个。",
"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." => "<b>警告:</b> PHP LDAP 模块未安装,后端将无法工作。请请求您的系统管理员安装该模块。",
"Server configuration" => "服务器配置",
"Add Server Configuration" => "添加服务器配置",
"Host" => "主机",
"You can omit the protocol, except you require SSL. Then start with ldaps://" => "可以忽略协议但如要使用SSL则需以ldaps://开头",
"Base DN" => "Base DN",
"One Base DN per line" => "每行一个基本判别名",
"You can specify Base DN for users and groups in the Advanced tab" => "您可以在高级选项卡里为用户和组指定Base DN",
"User DN" => "User DN",
"The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." => "客户端使用的DN必须与绑定的相同比如uid=agent,dc=example,dc=com\n如需匿名访问将DN和密码保留为空",
@ -18,21 +33,43 @@
"Group Filter" => "组过滤",
"Defines the filter to apply, when retrieving groups." => "定义拉取组信息时的过滤器",
"without any placeholder, e.g. \"objectClass=posixGroup\"." => "无需占位符,例如\"objectClass=posixGroup\"",
"Connection Settings" => "连接设置",
"Configuration Active" => "现行配置",
"When unchecked, this configuration will be skipped." => "当反选后,此配置将被忽略。",
"Port" => "端口",
"Backup (Replica) Host" => "备份 (镜像) 主机",
"Give an optional backup host. It must be a replica of the main LDAP/AD server." => "给出一个可选的备份主机。它必须为主 LDAP/AD 服务器的一个镜像。",
"Backup (Replica) Port" => "备份 (镜像) 端口",
"Disable Main Server" => "禁用主服务器",
"When switched on, ownCloud will only connect to the replica server." => "当开启后ownCloud 将仅连接到镜像服务器。",
"Use TLS" => "使用TLS",
"Do not use it additionally for LDAPS connections, it will fail." => "对于 LDAPS 连接不要额外启用它,连接必然失败。",
"Case insensitve LDAP server (Windows)" => "大小写敏感LDAP服务器(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." => "如果链接仅在此选项时可用在您的ownCloud服务器中导入LDAP服务器的SSL证书。",
"Not recommended, use for testing only." => "暂不推荐,仅供测试",
"Cache Time-To-Live" => "缓存存活时间",
"in seconds. A change empties the cache." => "以秒计。修改将清空缓存。",
"Directory Settings" => "目录设置",
"User Display Name Field" => "用户显示名称字段",
"The LDAP attribute to use to generate the user`s ownCloud name." => "用来生成用户的ownCloud名称的 LDAP属性",
"Base User Tree" => "基础用户树",
"One User Base DN per line" => "每行一个用户基准判别名",
"User Search Attributes" => "用户搜索属性",
"Optional; one attribute per line" => "可选;每行一个属性",
"Group Display Name Field" => "组显示名称字段",
"The LDAP attribute to use to generate the groups`s ownCloud name." => "用来生成组的ownCloud名称的LDAP属性",
"Base Group Tree" => "基础组树",
"One Group Base DN per line" => "每行一个群组基准判别名",
"Group Search Attributes" => "群组搜索属性",
"Group-Member association" => "组成员关联",
"Special Attributes" => "特殊属性",
"Quota Field" => "配额字段",
"Quota Default" => "默认配额",
"in bytes" => "字节数",
"Email Field" => "电邮字段",
"User Home Folder Naming Rule" => "用户主目录命名规则",
"Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "将用户名称留空(默认)。否则指定一个LDAP/AD属性",
"Test Configuration" => "测试配置",
"Help" => "帮助"
);

View file

@ -0,0 +1,5 @@
<?php $TRANSLATIONS = array(
"Password" => "密碼",
"Port" => "連接埠",
"Help" => "幫助"
);

View file

@ -62,7 +62,10 @@ abstract class Access {
$dn = $this->DNasBaseParameter($dn);
$rr = @ldap_read($cr, $dn, $filter, array($attr));
if(!is_resource($rr)) {
\OCP\Util::writeLog('user_ldap', 'readAttribute failed for DN '.$dn, \OCP\Util::DEBUG);
if(!empty($attr)) {
//do not throw this message on userExists check, irritates
\OCP\Util::writeLog('user_ldap', 'readAttribute failed for DN '.$dn, \OCP\Util::DEBUG);
}
//in case an error occurs , e.g. object does not exist
return false;
}
@ -84,7 +87,7 @@ abstract class Access {
for($i=0;$i<$result[$attr]['count'];$i++) {
if($this->resemblesDN($attr)) {
$values[] = $this->sanitizeDN($result[$attr][$i]);
} elseif(strtolower($attr) == 'objectguid') {
} elseif(strtolower($attr) == 'objectguid' || strtolower($attr) == 'guid') {
$values[] = $this->convertObjectGUID2Str($result[$attr][$i]);
} else {
$values[] = $result[$attr][$i];
@ -895,7 +898,7 @@ abstract class Access {
}
//for now, supported (known) attributes are entryUUID, nsuniqueid, objectGUID
$testAttributes = array('entryuuid', 'nsuniqueid', 'objectguid');
$testAttributes = array('entryuuid', 'nsuniqueid', 'objectguid', 'guid');
foreach($testAttributes as $attribute) {
\OCP\Util::writeLog('user_ldap', 'Testing '.$attribute.' as UUID attr', \OCP\Util::DEBUG);

View file

@ -212,7 +212,6 @@ class Connection {
*/
private function readConfiguration($force = false) {
if((!$this->configured || $force) && !is_null($this->configID)) {
$defaults = $this->getDefaults();
$v = 'getValue';
$this->config['ldapHost'] = $this->$v('ldap_host');
$this->config['ldapBackupHost'] = $this->$v('ldap_backup_host');

View file

@ -51,7 +51,8 @@ class Helper {
$query = '
SELECT DISTINCT `configkey`
FROM `*PREFIX*appconfig`
WHERE `configkey` LIKE ?
WHERE `appid` = \'user_ldap\'
AND `configkey` LIKE ?
';
if($activeConfigurations) {
$query .= ' AND `configvalue` = \'1\'';

View file

@ -180,6 +180,11 @@ class USER_LDAP extends lib\Access implements \OCP\UserInterface {
* @return boolean
*/
public function getHome($uid) {
// user Exists check required as it is not done in user proxy!
if(!$this->userExists($uid)) {
return false;
}
$cacheKey = 'getHome'.$uid;
if($this->connection->isCached($cacheKey)) {
return $this->connection->getFromCache($cacheKey);
@ -217,6 +222,10 @@ class USER_LDAP extends lib\Access implements \OCP\UserInterface {
* @return display name
*/
public function getDisplayName($uid) {
if(!$this->userExists($uid)) {
return false;
}
$cacheKey = 'getDisplayName'.$uid;
if(!is_null($displayName = $this->connection->getFromCache($cacheKey))) {
return $displayName;

View file

@ -95,12 +95,12 @@ if (isset($_POST['action']) && isset($_POST['itemType']) && isset($_POST['itemSo
// setup the email
$subject = (string)$l->t('User %s shared a file with you', $displayName);
if ($type === 'dir')
if ($type === 'folder')
$subject = (string)$l->t('User %s shared a folder with you', $displayName);
$text = (string)$l->t('User %s shared the file "%s" with you. It is available for download here: %s',
array($displayName, $file, $link));
if ($type === 'dir')
if ($type === 'folder')
$text = (string)$l->t('User %s shared the folder "%s" with you. It is available for download here: %s',
array($displayName, $file, $link));
@ -110,7 +110,7 @@ if (isset($_POST['action']) && isset($_POST['itemType']) && isset($_POST['itemSo
// send it out now
try {
OCP\Util::sendMail($to_address, $to_address, $subject, $text, $from_address, $user);
OCP\Util::sendMail($to_address, $to_address, $subject, $text, $from_address, $displayName);
OCP\JSON::success();
} catch (Exception $exception) {
OCP\JSON::error(array('data' => array('message' => OC_Util::sanitizeHTML($exception->getMessage()))));

View file

@ -1,13 +1,14 @@
/**
* @license In-Field Label jQuery Plugin
* http://fuelyourcoding.com/scripts/infield.html
/*
* jquery.infieldlabel
* A simple jQuery plugin for adding labels that sit over a form field and fade away when the fields are populated.
*
* Copyright (c) 2009 - 2013 Doug Neiner <doug@dougneiner.com> (http://code.dougneiner.com)
* Source: https://github.com/dcneiner/In-Field-Labels-jQuery-Plugin
* Dual licensed MIT or GPL
* MIT (http://www.opensource.org/licenses/mit-license)
* GPL (http://www.opensource.org/licenses/gpl-license)
*
* Copyright (c) 2009-2010 Doug Neiner
* Dual licensed under the MIT and GPL licenses.
* Uses the same license as jQuery, see:
* http://docs.jquery.com/License
*
* @version 0.1.6
* @version 0.1.3
*/
(function ($) {
@ -27,15 +28,20 @@
base.showing = true;
base.init = function () {
var initialSet;
// Merge supplied options with default options
base.options = $.extend({}, $.InFieldLabels.defaultOptions, options);
// Check if the field is already filled in
// Check if the field is already filled in
// add a short delay to handle autocomplete
setTimeout(function() {
if (base.$field.val() !== "") {
base.$label.hide();
base.showing = false;
} else {
base.$label.show();
base.showing = true;
}
}, 200);
@ -47,23 +53,28 @@
// Use of a namespace (.infieldlabel) allows us to
// unbind just this method later
base.hideOnChange(e);
}).bind('paste', function (e) {
}).bind('paste', function () {
// Since you can not paste an empty string we can assume
// that the fieldis not empty and the label can be cleared.
base.setOpacity(0.0);
}).change(function (e) {
}).change(function () {
base.checkForEmpty();
}).bind('onPropertyChange', function () {
base.checkForEmpty();
}).bind('keyup.infieldlabel', function () {
base.checkForEmpty()
base.checkForEmpty();
});
setInterval(function(){
if(base.$field.val() != ""){
base.$label.hide();
base.showing = false;
};
},100);
if ( base.options.pollDuration > 0 ) {
initialSet = setInterval( function () {
if (base.$field.val() !== "") {
base.$label.hide();
base.showing = false;
clearInterval( initialSet );
}
}, base.options.pollDuration );
}
};
// If the label is currently showing
@ -92,7 +103,7 @@
}
};
base.prepForShow = function (e) {
base.prepForShow = function () {
if (!base.showing) {
// Prepare for a animate in...
base.$label.css({opacity: 0.0}).show();
@ -127,37 +138,39 @@
$.InFieldLabels.defaultOptions = {
fadeOpacity: 0.5, // Once a field has focus, how transparent should the label be
fadeDuration: 300 // How long should it take to animate from 1.0 opacity to the fadeOpacity
fadeDuration: 300, // How long should it take to animate from 1.0 opacity to the fadeOpacity
pollDuration: 0, // If set to a number greater than zero, this will poll until content is detected in a field
enabledInputTypes: [ "text", "search", "tel", "url", "email", "password", "number", "textarea" ]
};
$.fn.inFieldLabels = function (options) {
var allowed_types = options && options.enabledInputTypes || $.InFieldLabels.defaultOptions.enabledInputTypes;
return this.each(function () {
// Find input or textarea based on for= attribute
// The for attribute on the label must contain the ID
// of the input or textarea element
var for_attr = $(this).attr('for'), $field;
var for_attr = $(this).attr('for'), field, restrict_type;
if (!for_attr) {
return; // Nothing to attach, since the for field wasn't used
}
// Find the referenced input or textarea element
$field = $(
"input#" + for_attr + "[type='text']," +
"input#" + for_attr + "[type='search']," +
"input#" + for_attr + "[type='tel']," +
"input#" + for_attr + "[type='url']," +
"input#" + for_attr + "[type='email']," +
"input#" + for_attr + "[type='password']," +
"textarea#" + for_attr
);
field = document.getElementById( for_attr );
if ( !field ) {
return; // No element found
}
if ($field.length === 0) {
// Restrict input type
restrict_type = $.inArray( field.type, allowed_types );
if ( restrict_type === -1 && field.nodeName !== "TEXTAREA" ) {
return; // Again, nothing to attach
}
// Only create object for input[text], input[password], or textarea
(new $.InFieldLabels(this, $field[0], options));
// Only create object for matched input types and textarea
(new $.InFieldLabels(this, field, options));
});
};

View file

@ -643,7 +643,9 @@ $(document).ready(function(){
$('#pass2').showPassword();
//use infield labels
$("label.infield").inFieldLabels();
$("label.infield").inFieldLabels({
pollDuration: 100
});
var checkShowCredentials = function() {
var empty = false;

View file

@ -1,6 +1,16 @@
<?php $TRANSLATIONS = array(
"User %s shared a file with you" => "المستخدم %s قام بمشاركة ملف معك",
"User %s shared a folder with you" => "المستخدم %s قام بمشاركة مجلد معك",
"User %s shared the file \"%s\" with you. It is available for download here: %s" => "المستخدم %s قام بمشاركة الملف \"%s\" معك . الملف متاح للتحميل من هنا : %s",
"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "المستخدم %s قام بمشاركة المجلد \"%s\" معك . المجلد متاح للتحميل من هنا : %s",
"Category type not provided." => "نوع التصنيف لم يدخل",
"No category to add?" => "ألا توجد فئة للإضافة؟",
"This category already exists: %s" => "هذا التصنيف موجود مسبقا : %s",
"Object type not provided." => "نوع العنصر لم يدخل",
"%s ID not provided." => "رقم %s لم يدخل",
"Error adding %s to favorites." => "خطأ في اضافة %s الى المفضلة",
"No categories selected for deletion." => "لم يتم اختيار فئة للحذف",
"Error removing %s from favorites." => "خطأ في حذف %s من المفضلة",
"Sunday" => "الاحد",
"Monday" => "الأثنين",
"Tuesday" => "الثلاثاء",
@ -24,13 +34,26 @@
"seconds ago" => "منذ ثواني",
"1 minute ago" => "منذ دقيقة",
"{minutes} minutes ago" => "{minutes} منذ دقائق",
"1 hour ago" => "قبل ساعة مضت",
"{hours} hours ago" => "{hours} ساعة مضت",
"today" => "اليوم",
"yesterday" => "يوم أمس",
"{days} days ago" => "{days} يوم سابق",
"last month" => "الشهر الماضي",
"{months} months ago" => "{months} شهر مضت",
"months ago" => "شهر مضى",
"last year" => "السنةالماضية",
"years ago" => "سنة مضت",
"Choose" => "اختيار",
"Cancel" => "الغاء",
"No" => "لا",
"Yes" => "نعم",
"Ok" => "موافق",
"The object type is not specified." => "نوع العنصر غير محدد.",
"Error" => "خطأ",
"The app name is not specified." => "اسم التطبيق غير محدد.",
"The required file {file} is not installed!" => "الملف المطلوب {file} غير منصّب.",
"Shared" => "مشارك",
"Share" => "شارك",
"Error while sharing" => "حصل خطأ عند عملية المشاركة",
"Error while unsharing" => "حصل خطأ عند عملية إزالة المشاركة",
@ -41,6 +64,8 @@
"Share with link" => "شارك مع رابط",
"Password protect" => "حماية كلمة السر",
"Password" => "كلمة السر",
"Email link to person" => "ارسل الرابط بالبريد الى صديق",
"Send" => "أرسل",
"Set expiration date" => "تعيين تاريخ إنتهاء الصلاحية",
"Expiration date" => "تاريخ إنتهاء الصلاحية",
"Share via email:" => "مشاركة عبر البريد الإلكتروني:",
@ -57,6 +82,10 @@
"Password protected" => "محمي بكلمة السر",
"Error unsetting expiration date" => "حصل خطأ عند عملية إزالة تاريخ إنتهاء الصلاحية",
"Error setting expiration date" => "حصل خطأ عند عملية تعيين تاريخ إنتهاء الصلاحية",
"Sending ..." => "جاري الارسال ...",
"Email sent" => "تم ارسال البريد الالكتروني",
"The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "حصل خطأ في عملية التحديث, يرجى ارسال تقرير بهذه المشكلة الى <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>.",
"The update was successful. Redirecting you to ownCloud now." => "تم التحديث بنجاح , يتم اعادة توجيهك الان الى Owncloud",
"ownCloud password reset" => "إعادة تعيين كلمة سر ownCloud",
"Use the following link to reset your password: {link}" => "استخدم هذه الوصلة لاسترجاع كلمة السر: {link}",
"You will receive a link to reset your password via Email." => "سوف نرسل لك بريد يحتوي على وصلة لتجديد كلمة السر.",
@ -79,6 +108,9 @@
"Add" => "أدخل",
"Security Warning" => "تحذير أمان",
"No secure random number generator is available, please enable the PHP OpenSSL extension." => "لا يوجد مولّد أرقام عشوائية ، الرجاء تفعيل الـ PHP OpenSSL extension.",
"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "بدون وجود مولد أرقام عشوائية آمن قد يتمكن المهاجم من التنبؤ بكلمات اعادة ضبط كلمة المرور والتمكن من السيطرة على حسابك",
"Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "مجلدات البيانات والملفات الخاصة قد تكون قابلة للوصول اليها عن طريق شبكة الانترنت وذلك بسبب ان ملف .htaccess لا يعمل بشكل صحيح.",
"For information how to properly configure your server, please see the <a href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" target=\"_blank\">documentation</a>." => "للحصول على معلومات عن كيفية اعداد الخادم الخاص بك , يرجى زيارة الرابط التالي <a href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" target=\"_blank\">documentation</a>.",
"Create an <strong>admin account</strong>" => "أضف </strong>مستخدم رئيسي <strong>",
"Advanced" => "خيارات متقدمة",
"Data folder" => "مجلد المعلومات",
@ -98,6 +130,8 @@
"Lost your password?" => "هل نسيت كلمة السر؟",
"remember" => "تذكر",
"Log in" => "أدخل",
"Alternative Logins" => "اسماء دخول بديلة",
"prev" => "السابق",
"next" => "التالي"
"next" => "التالي",
"Updating ownCloud to version %s, this may take a while." => "جاري تحديث Owncloud الى اصدار %s , قد يستغرق هذا بعض الوقت."
);

View file

@ -128,7 +128,7 @@
"If you did not change your password recently, your account may be compromised!" => "V nedávné době jste nezměnili své heslo, Váš účet může být kompromitován.",
"Please change your password to secure your account again." => "Změňte, prosím, své heslo pro opětovné zabezpečení Vašeho účtu.",
"Lost your password?" => "Ztratili jste své heslo?",
"remember" => "zapamatovat si",
"remember" => "zapamatovat",
"Log in" => "Přihlásit",
"Alternative Logins" => "Alternativní přihlášení",
"prev" => "předchozí",

View file

@ -109,6 +109,8 @@
"Security Warning" => "اخطار امنیتی",
"No secure random number generator is available, please enable the PHP OpenSSL extension." => "هیچ مولد تصادفی امن در دسترس نیست، لطفا فرمت PHP OpenSSL را فعال نمایید.",
"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "بدون وجود یک تولید کننده اعداد تصادفی امن ، یک مهاجم ممکن است این قابلیت را داشته باشد که پیشگویی کند پسوورد های راه انداز گرفته شده و کنترلی روی حساب کاربری شما داشته باشد .",
"Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "فایلها و فهرست های داده های شما قابل از اینترنت قابل دسترسی هستند، چونکه فایل htacces. کار نمی کند.",
"For information how to properly configure your server, please see the <a href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" target=\"_blank\">documentation</a>." => "برای مطلع شدن از چگونگی تنظیم سرورتان،لطفا <a href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" target=\"_blank\">این</a> را ببینید.",
"Create an <strong>admin account</strong>" => "لطفا یک <strong> شناسه برای مدیر</strong> بسازید",
"Advanced" => "حرفه ای",
"Data folder" => "پوشه اطلاعاتی",
@ -128,6 +130,7 @@
"Lost your password?" => "آیا گذرواژه تان را به یاد نمی آورید؟",
"remember" => "بیاد آوری",
"Log in" => "ورود",
"Alternative Logins" => "ورود متناوب",
"prev" => "بازگشت",
"next" => "بعدی",
"Updating ownCloud to version %s, this may take a while." => "به روز رسانی OwnCloud به نسخه ی %s، این عملیات ممکن است زمان بر باشد."

View file

@ -122,7 +122,7 @@
"Database tablespace" => "Datubāzes tabulas telpa",
"Database host" => "Datubāzes serveris",
"Finish setup" => "Pabeigt iestatīšanu",
"web services under your control" => "jūsu vadībā esošie tīmekļa servisi",
"web services under your control" => "tīmekļa servisi tavā varā",
"Log out" => "Izrakstīties",
"Automatic logon rejected!" => "Automātiskā ierakstīšanās ir noraidīta!",
"If you did not change your password recently, your account may be compromised!" => "Ja neesat pēdējā laikā mainījis paroli, iespējams, ka jūsu konts ir kompromitēts.",

View file

@ -5,6 +5,7 @@
"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "用户 %s 与您共享了文件夹\"%s\"。文件夹下载地址:%s",
"Category type not provided." => "未提供分类类型。",
"No category to add?" => "没有可添加分类?",
"This category already exists: %s" => "此分类已存在:%s",
"Object type not provided." => "未提供对象类型。",
"%s ID not provided." => "%s ID未提供。",
"Error adding %s to favorites." => "向收藏夹中新增%s时出错。",
@ -83,6 +84,8 @@
"Error setting expiration date" => "设置过期日期时出错",
"Sending ..." => "正在发送...",
"Email sent" => "邮件已发送",
"The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "更新不成功。请汇报将此问题汇报给 <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud 社区</a>。",
"The update was successful. Redirecting you to ownCloud now." => "更新成功。正在重定向至 ownCloud。",
"ownCloud password reset" => "重置 ownCloud 密码",
"Use the following link to reset your password: {link}" => "使用以下链接重置您的密码:{link}",
"You will receive a link to reset your password via Email." => "您将会收到包含可以重置密码链接的邮件。",
@ -106,6 +109,8 @@
"Security Warning" => "安全警告",
"No secure random number generator is available, please enable the PHP OpenSSL extension." => "随机数生成器无效请启用PHP的OpenSSL扩展",
"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "没有安全随机码生成器,攻击者可能会猜测密码重置信息从而窃取您的账户",
"Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "您的数据目录和文件可能可以直接被互联网访问,因为 .htaccess 并未正常工作。",
"For information how to properly configure your server, please see the <a href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" target=\"_blank\">documentation</a>." => "关于如何配置服务器,请参见 <a href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" target=\"_blank\">此文档</a>。",
"Create an <strong>admin account</strong>" => "创建<strong>管理员账号</strong>",
"Advanced" => "高级",
"Data folder" => "数据目录",
@ -125,6 +130,7 @@
"Lost your password?" => "忘记密码?",
"remember" => "记住",
"Log in" => "登录",
"Alternative Logins" => "其他登录方式",
"prev" => "上一页",
"next" => "下一页",
"Updating ownCloud to version %s, this may take a while." => "更新 ownCloud 到版本 %s这可能需要一些时间。"

View file

@ -1,3 +1,90 @@
<?php $TRANSLATIONS = array(
"You are logged out." => "你已登出。"
"Sunday" => "星期日",
"Monday" => "星期一",
"Tuesday" => "星期二",
"Wednesday" => "星期三",
"Thursday" => "星期四",
"Friday" => "星期五",
"Saturday" => "星期六",
"January" => "一月",
"February" => "二月",
"March" => "三月",
"April" => "四月",
"May" => "五月",
"June" => "六月",
"July" => "七月",
"August" => "八月",
"September" => "九月",
"October" => "十月",
"November" => "十一月",
"December" => "十二月",
"Settings" => "設定",
"today" => "今日",
"yesterday" => "昨日",
"last month" => "前一月",
"months ago" => "個月之前",
"Cancel" => "取消",
"No" => "No",
"Yes" => "Yes",
"Ok" => "OK",
"Error" => "錯誤",
"Shared" => "已分享",
"Share" => "分享",
"Error while sharing" => "分享時發生錯誤",
"Error while unsharing" => "取消分享時發生錯誤",
"Error while changing permissions" => "更改權限時發生錯誤",
"Shared with you and the group {group} by {owner}" => "{owner}與你及群組的分享",
"Shared with you by {owner}" => "{owner}與你的分享",
"Share with" => "分享",
"Share with link" => "以連結分享",
"Password protect" => "密碼保護",
"Password" => "密碼",
"Send" => "傳送",
"Set expiration date" => "設定分享期限",
"Expiration date" => "分享期限",
"Share via email:" => "以電郵分享",
"No people found" => "找不到",
"Unshare" => "取消分享",
"create" => "新增",
"update" => "更新",
"delete" => "刪除",
"share" => "分享",
"Password protected" => "密碼保護",
"Sending ..." => "傳送中",
"Email sent" => "郵件已傳",
"The update was successful. Redirecting you to ownCloud now." => "更新成功, 正",
"Use the following link to reset your password: {link}" => "請用以下連結重設你的密碼: {link}",
"You will receive a link to reset your password via Email." => "你將收到一封電郵",
"Reset email send." => "重設密碼郵件已傳",
"Request failed!" => "請求失敗",
"Username" => "用戶名稱",
"Request reset" => "重設",
"Your password was reset" => "你的密碼已被重設",
"To login page" => "前往登入版面",
"New password" => "新密碼",
"Reset password" => "重設密碼",
"Personal" => "個人",
"Users" => "用戶",
"Apps" => "軟件",
"Admin" => "管理",
"Help" => "幫助",
"Cloud not found" => "未找到Cloud",
"Add" => "加入",
"Create an <strong>admin account</strong>" => "建立管理員帳戶",
"Advanced" => "進階",
"Configure the database" => "設定資料庫",
"will be used" => "將被使用",
"Database user" => "資料庫帳戶",
"Database password" => "資料庫密碼",
"Database name" => "資料庫名稱",
"Log out" => "登出",
"Automatic logon rejected!" => "自動登入被拒",
"If you did not change your password recently, your account may be compromised!" => "如果你近期未曾更改密碼, 你的帳號可能被洩露!",
"Please change your password to secure your account again." => "請更改你的密碼以保護你的帳戶",
"Lost your password?" => "忘記密碼",
"remember" => "記住",
"Log in" => "登入",
"prev" => "前一步",
"next" => "下一步",
"Updating ownCloud to version %s, this may take a while." => "ownCloud (ver. %s)更新中, 請耐心等侯"
);

View file

@ -38,7 +38,7 @@
src="<?php print_unescaped(image_path('', 'logo-wide.svg')); ?>" alt="ownCloud" /></a>
<ul id="settings" class="svg">
<span id="expand">
<span id="expand" tabindex="0" role="link">
<span id="expandDisplayName"><?php p(trim($_['user_displayname']) != '' ? $_['user_displayname'] : $_['user_uid']) ?></span>
<img class="svg" src="<?php print_unescaped(image_path('', 'actions/caret.svg')); ?>" />
</span>

View file

@ -48,6 +48,8 @@ function handleUnexpectedShutdown() {
$RUNTIME_NOSETUPFS = true;
require_once 'lib/base.php';
session_write_close();
// Don't do anything if ownCloud has not been installed
if( !OC_Config::getValue( 'installed', false )) {
exit( 0 );

View file

@ -37,6 +37,8 @@
<index>
<name>appconfig_appid_key_index</name>
<primary>true</primary>
<unique>true</unique>
<field>
<name>appid</name>
<sorting>ascending</sorting>
@ -134,6 +136,7 @@
<index>
<name>file_map_lp_index</name>
<primary>true</primary>
<unique>true</unique>
<field>
<name>logic_path_hash</name>
@ -379,6 +382,7 @@
<index>
<name>id_user_index</name>
<unique>true</unique>
<primary>true</primary>
<field>
<name>fileid</name>
<sorting>ascending</sorting>
@ -415,6 +419,20 @@
<length>64</length>
</field>
<index>
<name>gu_gid_uid_index</name>
<primary>true</primary>
<unique>true</unique>
<field>
<name>gid</name>
<sorting>ascending</sorting>
</field>
<field>
<name>uid</name>
<sorting>ascending</sorting>
</field>
</index>
</declaration>
</table>
@ -448,6 +466,20 @@
</field>
</index>
<index>
<name>ga_gid_uid_index</name>
<primary>true</primary>
<unique>true</unique>
<field>
<name>gid</name>
<sorting>ascending</sorting>
</field>
<field>
<name>uid</name>
<sorting>ascending</sorting>
</field>
</index>
</declaration>
</table>
@ -596,6 +628,8 @@
<index>
<name>pref_userid_appid_key_index</name>
<primary>true</primary>
<unique>true</unique>
<field>
<name>userid</name>
<sorting>ascending</sorting>
@ -620,6 +654,15 @@
<declaration>
<field>
<name>id</name>
<autoincrement>1</autoincrement>
<type>integer</type>
<default>0</default>
<notnull>true</notnull>
<length>4</length>
</field>
<field>
<name>userid</name>
<type>text</type>
@ -651,6 +694,17 @@
<length>255</length>
</field>
<index>
<name>user_propertypath_index</name>
<field>
<name>userid</name>
<sorting>ascending</sorting>
</field>
<field>
<name>propertypath</name>
<sorting>ascending</sorting>
</field>
</index>
</declaration>
</table>

View file

@ -3,15 +3,16 @@
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
# Ahmad Matalqah <houfa2005@yahoo.com>, 2013.
# <shiningmoon25@gmail.com>, 2012.
# <tarek.taha@gmail.com>, 2011, 2012.
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-02-22 00:06+0100\n"
"PO-Revision-Date: 2013-02-20 23:20+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"POT-Creation-Date: 2013-03-19 00:04+0100\n"
"PO-Revision-Date: 2013-03-18 11:00+0000\n"
"Last-Translator: Matalqah <houfa2005@yahoo.com>\n"
"Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -19,33 +20,33 @@ 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/share.php:85
#: ajax/share.php:97
#, php-format
msgid "User %s shared a file with you"
msgstr ""
msgstr "المستخدم %s قام بمشاركة ملف معك"
#: ajax/share.php:87
#: ajax/share.php:99
#, php-format
msgid "User %s shared a folder with you"
msgstr ""
msgstr "المستخدم %s قام بمشاركة مجلد معك"
#: ajax/share.php:89
#: ajax/share.php:101
#, php-format
msgid ""
"User %s shared the file \"%s\" with you. It is available for download here: "
"%s"
msgstr ""
msgstr "المستخدم %s قام بمشاركة الملف \"%s\" معك . الملف متاح للتحميل من هنا : %s"
#: ajax/share.php:91
#: ajax/share.php:104
#, php-format
msgid ""
"User %s shared the folder \"%s\" with you. It is available for download "
"here: %s"
msgstr ""
msgstr "المستخدم %s قام بمشاركة المجلد \"%s\" معك . المجلد متاح للتحميل من هنا : %s"
#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25
msgid "Category type not provided."
msgstr ""
msgstr "نوع التصنيف لم يدخل"
#: ajax/vcategories/add.php:30
msgid "No category to add?"
@ -54,24 +55,24 @@ msgstr "ألا توجد فئة للإضافة؟"
#: ajax/vcategories/add.php:37
#, php-format
msgid "This category already exists: %s"
msgstr ""
msgstr "هذا التصنيف موجود مسبقا : %s"
#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27
#: ajax/vcategories/favorites.php:24
#: ajax/vcategories/removeFromFavorites.php:26
msgid "Object type not provided."
msgstr ""
msgstr "نوع العنصر لم يدخل"
#: ajax/vcategories/addToFavorites.php:30
#: ajax/vcategories/removeFromFavorites.php:30
#, php-format
msgid "%s ID not provided."
msgstr ""
msgstr "رقم %s لم يدخل"
#: ajax/vcategories/addToFavorites.php:35
#, php-format
msgid "Error adding %s to favorites."
msgstr ""
msgstr "خطأ في اضافة %s الى المفضلة"
#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136
msgid "No categories selected for deletion."
@ -80,81 +81,81 @@ msgstr "لم يتم اختيار فئة للحذف"
#: ajax/vcategories/removeFromFavorites.php:35
#, php-format
msgid "Error removing %s from favorites."
msgstr ""
msgstr "خطأ في حذف %s من المفضلة"
#: js/config.php:32
#: js/config.php:34
msgid "Sunday"
msgstr "الاحد"
#: js/config.php:32
#: js/config.php:35
msgid "Monday"
msgstr "الأثنين"
#: js/config.php:32
#: js/config.php:36
msgid "Tuesday"
msgstr "الثلاثاء"
#: js/config.php:32
#: js/config.php:37
msgid "Wednesday"
msgstr "الاربعاء"
#: js/config.php:32
#: js/config.php:38
msgid "Thursday"
msgstr "الخميس"
#: js/config.php:32
#: js/config.php:39
msgid "Friday"
msgstr "الجمعه"
#: js/config.php:32
#: js/config.php:40
msgid "Saturday"
msgstr "السبت"
#: js/config.php:33
#: js/config.php:45
msgid "January"
msgstr "كانون الثاني"
#: js/config.php:33
#: js/config.php:46
msgid "February"
msgstr "شباط"
#: js/config.php:33
#: js/config.php:47
msgid "March"
msgstr "آذار"
#: js/config.php:33
#: js/config.php:48
msgid "April"
msgstr "نيسان"
#: js/config.php:33
#: js/config.php:49
msgid "May"
msgstr "أيار"
#: js/config.php:33
#: js/config.php:50
msgid "June"
msgstr "حزيران"
#: js/config.php:33
#: js/config.php:51
msgid "July"
msgstr "تموز"
#: js/config.php:33
#: js/config.php:52
msgid "August"
msgstr "آب"
#: js/config.php:33
#: js/config.php:53
msgid "September"
msgstr "أيلول"
#: js/config.php:33
#: js/config.php:54
msgid "October"
msgstr "تشرين الاول"
#: js/config.php:33
#: js/config.php:55
msgid "November"
msgstr "تشرين الثاني"
#: js/config.php:33
#: js/config.php:56
msgid "December"
msgstr "كانون الاول"
@ -162,57 +163,57 @@ msgstr "كانون الاول"
msgid "Settings"
msgstr "تعديلات"
#: js/js.js:767
#: js/js.js:779
msgid "seconds ago"
msgstr "منذ ثواني"
#: js/js.js:768
#: js/js.js:780
msgid "1 minute ago"
msgstr "منذ دقيقة"
#: js/js.js:769
#: js/js.js:781
msgid "{minutes} minutes ago"
msgstr "{minutes} منذ دقائق"
#: js/js.js:770
#: js/js.js:782
msgid "1 hour ago"
msgstr ""
msgstr "قبل ساعة مضت"
#: js/js.js:771
#: js/js.js:783
msgid "{hours} hours ago"
msgstr ""
msgstr "{hours} ساعة مضت"
#: js/js.js:772
#: js/js.js:784
msgid "today"
msgstr "اليوم"
#: js/js.js:773
#: js/js.js:785
msgid "yesterday"
msgstr ""
msgstr "يوم أمس"
#: js/js.js:774
#: js/js.js:786
msgid "{days} days ago"
msgstr ""
msgstr "{days} يوم سابق"
#: js/js.js:775
#: js/js.js:787
msgid "last month"
msgstr ""
msgstr "الشهر الماضي"
#: js/js.js:776
#: js/js.js:788
msgid "{months} months ago"
msgstr ""
msgstr "{months} شهر مضت"
#: js/js.js:777
#: js/js.js:789
msgid "months ago"
msgstr ""
msgstr "شهر مضى"
#: js/js.js:778
#: js/js.js:790
msgid "last year"
msgstr ""
msgstr "السنةالماضية"
#: js/js.js:779
#: js/js.js:791
msgid "years ago"
msgstr ""
msgstr "سنة مضت"
#: js/oc-dialogs.js:126
msgid "Choose"
@ -237,156 +238,156 @@ msgstr "موافق"
#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102
#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162
msgid "The object type is not specified."
msgstr ""
msgstr "نوع العنصر غير محدد."
#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136
#: js/oc-vcategories.js:195 js/share.js:152 js/share.js:159 js/share.js:582
#: js/share.js:594
#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566
#: js/share.js:578
msgid "Error"
msgstr "خطأ"
#: js/oc-vcategories.js:179
msgid "The app name is not specified."
msgstr ""
msgstr "اسم التطبيق غير محدد."
#: js/oc-vcategories.js:194
msgid "The required file {file} is not installed!"
msgstr ""
msgstr "الملف المطلوب {file} غير منصّب."
#: js/share.js:29 js/share.js:43 js/share.js:90
#: js/share.js:30 js/share.js:45 js/share.js:87
msgid "Shared"
msgstr ""
msgstr "مشارك"
#: js/share.js:93
#: js/share.js:90
msgid "Share"
msgstr "شارك"
#: js/share.js:141 js/share.js:622
#: js/share.js:125 js/share.js:606
msgid "Error while sharing"
msgstr "حصل خطأ عند عملية المشاركة"
#: js/share.js:152
#: js/share.js:136
msgid "Error while unsharing"
msgstr "حصل خطأ عند عملية إزالة المشاركة"
#: js/share.js:159
#: js/share.js:143
msgid "Error while changing permissions"
msgstr "حصل خطأ عند عملية إعادة تعيين التصريح بالتوصل"
#: js/share.js:168
#: js/share.js:152
msgid "Shared with you and the group {group} by {owner}"
msgstr "شورك معك ومع المجموعة {group} من قبل {owner}"
#: js/share.js:170
#: js/share.js:154
msgid "Shared with you by {owner}"
msgstr "شورك معك من قبل {owner}"
#: js/share.js:175
#: js/share.js:159
msgid "Share with"
msgstr "شارك مع"
#: js/share.js:180
#: js/share.js:164
msgid "Share with link"
msgstr "شارك مع رابط"
#: js/share.js:183
#: js/share.js:167
msgid "Password protect"
msgstr "حماية كلمة السر"
#: js/share.js:185 templates/installation.php:44 templates/login.php:35
#: js/share.js:169 templates/installation.php:47 templates/login.php:35
msgid "Password"
msgstr "كلمة السر"
#: js/share.js:189
#: js/share.js:173
msgid "Email link to person"
msgstr ""
msgstr "ارسل الرابط بالبريد الى صديق"
#: js/share.js:190
#: js/share.js:174
msgid "Send"
msgstr ""
msgstr "أرسل"
#: js/share.js:194
#: js/share.js:178
msgid "Set expiration date"
msgstr "تعيين تاريخ إنتهاء الصلاحية"
#: js/share.js:195
#: js/share.js:179
msgid "Expiration date"
msgstr "تاريخ إنتهاء الصلاحية"
#: js/share.js:227
#: js/share.js:211
msgid "Share via email:"
msgstr "مشاركة عبر البريد الإلكتروني:"
#: js/share.js:229
#: js/share.js:213
msgid "No people found"
msgstr "لم يتم العثور على أي شخص"
#: js/share.js:256
#: js/share.js:240
msgid "Resharing is not allowed"
msgstr "لا يسمح بعملية إعادة المشاركة"
#: js/share.js:292
#: js/share.js:276
msgid "Shared in {item} with {user}"
msgstr "شورك في {item} مع {user}"
#: js/share.js:313
#: js/share.js:297
msgid "Unshare"
msgstr "إلغاء مشاركة"
#: js/share.js:325
#: js/share.js:309
msgid "can edit"
msgstr "التحرير مسموح"
#: js/share.js:327
#: js/share.js:311
msgid "access control"
msgstr "ضبط الوصول"
#: js/share.js:330
#: js/share.js:314
msgid "create"
msgstr "إنشاء"
#: js/share.js:333
#: js/share.js:317
msgid "update"
msgstr "تحديث"
#: js/share.js:336
#: js/share.js:320
msgid "delete"
msgstr "حذف"
#: js/share.js:339
#: js/share.js:323
msgid "share"
msgstr "مشاركة"
#: js/share.js:373 js/share.js:569
#: js/share.js:357 js/share.js:553
msgid "Password protected"
msgstr "محمي بكلمة السر"
#: js/share.js:582
#: js/share.js:566
msgid "Error unsetting expiration date"
msgstr "حصل خطأ عند عملية إزالة تاريخ إنتهاء الصلاحية"
#: js/share.js:594
#: js/share.js:578
msgid "Error setting expiration date"
msgstr "حصل خطأ عند عملية تعيين تاريخ إنتهاء الصلاحية"
#: js/share.js:609
#: js/share.js:593
msgid "Sending ..."
msgstr ""
msgstr "جاري الارسال ..."
#: js/share.js:620
#: js/share.js:604
msgid "Email sent"
msgstr ""
msgstr "تم ارسال البريد الالكتروني"
#: js/update.js:14
msgid ""
"The update was unsuccessful. Please report this issue to the <a "
"href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud "
"community</a>."
msgstr ""
msgstr "حصل خطأ في عملية التحديث, يرجى ارسال تقرير بهذه المشكلة الى <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>."
#: js/update.js:18
msgid "The update was successful. Redirecting you to ownCloud now."
msgstr ""
msgstr "تم التحديث بنجاح , يتم اعادة توجيهك الان الى Owncloud"
#: lostpassword/controller.php:48
msgid "ownCloud password reset"
@ -408,7 +409,7 @@ msgstr "إعادة إرسال البريد الإلكتروني."
msgid "Request failed!"
msgstr "فشل الطلب"
#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39
#: lostpassword/templates/lostpassword.php:11 templates/installation.php:41
#: templates/login.php:28
msgid "Username"
msgstr "إسم المستخدم"
@ -469,85 +470,86 @@ msgstr "عدل الفئات"
msgid "Add"
msgstr "أدخل"
#: templates/installation.php:23 templates/installation.php:30
#: templates/installation.php:24 templates/installation.php:31
msgid "Security Warning"
msgstr "تحذير أمان"
#: templates/installation.php:24
#: templates/installation.php:25
msgid ""
"No secure random number generator is available, please enable the PHP "
"OpenSSL extension."
msgstr "لا يوجد مولّد أرقام عشوائية ، الرجاء تفعيل الـ PHP OpenSSL extension."
#: templates/installation.php:25
#: templates/installation.php:26
msgid ""
"Without a secure random number generator an attacker may be able to predict "
"password reset tokens and take over your account."
msgstr ""
msgstr "بدون وجود مولد أرقام عشوائية آمن قد يتمكن المهاجم من التنبؤ بكلمات اعادة ضبط كلمة المرور والتمكن من السيطرة على حسابك"
#: templates/installation.php:31
#: templates/installation.php:32
msgid ""
"Your data directory and files are probably accessible from the internet "
"because the .htaccess file does not work."
msgstr ""
msgstr "مجلدات البيانات والملفات الخاصة قد تكون قابلة للوصول اليها عن طريق شبكة الانترنت وذلك بسبب ان ملف .htaccess لا يعمل بشكل صحيح."
#: templates/installation.php:32
#: templates/installation.php:33
msgid ""
"For information how to properly configure your server, please see the <a "
"href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" "
"target=\"_blank\">documentation</a>."
msgstr ""
msgstr "للحصول على معلومات عن كيفية اعداد الخادم الخاص بك , يرجى زيارة الرابط التالي <a href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" target=\"_blank\">documentation</a>."
#: templates/installation.php:36
#: templates/installation.php:37
msgid "Create an <strong>admin account</strong>"
msgstr "أضف </strong>مستخدم رئيسي <strong>"
#: templates/installation.php:52
#: templates/installation.php:55
msgid "Advanced"
msgstr "خيارات متقدمة"
#: templates/installation.php:54
#: templates/installation.php:57
msgid "Data folder"
msgstr "مجلد المعلومات"
#: templates/installation.php:61
#: templates/installation.php:66
msgid "Configure the database"
msgstr "أسس قاعدة البيانات"
#: templates/installation.php:66 templates/installation.php:77
#: templates/installation.php:87 templates/installation.php:97
#: templates/installation.php:71 templates/installation.php:83
#: templates/installation.php:94 templates/installation.php:105
#: templates/installation.php:117
msgid "will be used"
msgstr "سيتم استخدمه"
#: templates/installation.php:109
#: templates/installation.php:129
msgid "Database user"
msgstr "مستخدم قاعدة البيانات"
#: templates/installation.php:113
#: templates/installation.php:134
msgid "Database password"
msgstr "كلمة سر مستخدم قاعدة البيانات"
#: templates/installation.php:117
#: templates/installation.php:139
msgid "Database name"
msgstr "إسم قاعدة البيانات"
#: templates/installation.php:125
#: templates/installation.php:149
msgid "Database tablespace"
msgstr "مساحة جدول قاعدة البيانات"
#: templates/installation.php:131
#: templates/installation.php:156
msgid "Database host"
msgstr "خادم قاعدة البيانات"
#: templates/installation.php:136
#: templates/installation.php:162
msgid "Finish setup"
msgstr "انهاء التعديلات"
#: templates/layout.guest.php:33
#: templates/layout.guest.php:40
msgid "web services under your control"
msgstr "خدمات الوب تحت تصرفك"
#: templates/layout.user.php:48
#: templates/layout.user.php:58
msgid "Log out"
msgstr "الخروج"
@ -579,7 +581,7 @@ msgstr "أدخل"
#: templates/login.php:49
msgid "Alternative Logins"
msgstr ""
msgstr "اسماء دخول بديلة"
#: templates/part.pagenavi.php:3
msgid "prev"
@ -592,4 +594,4 @@ msgstr "التالي"
#: templates/update.php:3
#, php-format
msgid "Updating ownCloud to version %s, this may take a while."
msgstr ""
msgstr "جاري تحديث Owncloud الى اصدار %s , قد يستغرق هذا بعض الوقت."

View file

@ -3,14 +3,15 @@
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
# Ahmad Matalqah <houfa2005@yahoo.com>, 2013.
# <tarek.taha@gmail.com>, 2011, 2012.
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-03-04 00:06+0100\n"
"PO-Revision-Date: 2013-03-03 23:06+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"POT-Creation-Date: 2013-03-18 00:05+0100\n"
"PO-Revision-Date: 2013-03-17 10:00+0000\n"
"Last-Translator: Matalqah <houfa2005@yahoo.com>\n"
"Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -21,20 +22,20 @@ msgstr ""
#: ajax/move.php:17
#, php-format
msgid "Could not move %s - File with this name already exists"
msgstr ""
msgstr "فشل في نقل الملف %s - يوجد ملف بنفس هذا الاسم"
#: ajax/move.php:27 ajax/move.php:30
#, php-format
msgid "Could not move %s"
msgstr ""
msgstr "فشل في نقل %s"
#: ajax/rename.php:22 ajax/rename.php:25
msgid "Unable to rename file"
msgstr ""
msgstr "فشل في اعادة تسمية الملف"
#: ajax/upload.php:19
msgid "No file was uploaded. Unknown error"
msgstr ""
msgstr "لم يتم رفع أي ملف , خطأ غير معروف"
#: ajax/upload.php:26
msgid "There is no error, the file uploaded with success"
@ -43,7 +44,7 @@ msgstr "تم ترفيع الملفات بنجاح."
#: ajax/upload.php:27
msgid ""
"The uploaded file exceeds the upload_max_filesize directive in php.ini: "
msgstr ""
msgstr "حجم الملف المرفوع تجاوز قيمة upload_max_filesize الموجودة في ملف php.ini "
#: ajax/upload.php:29
msgid ""
@ -65,23 +66,23 @@ msgstr "المجلد المؤقت غير موجود"
#: ajax/upload.php:33
msgid "Failed to write to disk"
msgstr ""
msgstr "خطأ في الكتابة على القرص الصلب"
#: ajax/upload.php:51
msgid "Not enough storage available"
msgstr ""
msgstr "لا يوجد مساحة تخزينية كافية"
#: ajax/upload.php:82
msgid "Invalid directory."
msgstr ""
msgstr "مسار غير صحيح."
#: appinfo/app.php:10
#: appinfo/app.php:12
msgid "Files"
msgstr "الملفات"
#: js/fileactions.js:125
msgid "Delete permanently"
msgstr ""
msgstr "حذف بشكل دائم"
#: js/fileactions.js:127 templates/index.php:92 templates/index.php:93
msgid "Delete"
@ -89,133 +90,133 @@ msgstr "محذوف"
#: js/fileactions.js:193
msgid "Rename"
msgstr ""
msgstr "إعادة تسميه"
#: js/filelist.js:49 js/filelist.js:52 js/files.js:292 js/files.js:408
#: js/files.js:439
#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409
#: js/files.js:440
msgid "Pending"
msgstr ""
msgstr "قيد الانتظار"
#: js/filelist.js:251 js/filelist.js:253
msgid "{new_name} already exists"
msgstr ""
msgstr "{new_name} موجود مسبقا"
#: js/filelist.js:251 js/filelist.js:253
msgid "replace"
msgstr ""
msgstr "استبدال"
#: js/filelist.js:251
msgid "suggest name"
msgstr ""
msgstr "اقترح إسم"
#: js/filelist.js:251 js/filelist.js:253
msgid "cancel"
msgstr ""
msgstr "إلغاء"
#: js/filelist.js:298
msgid "replaced {new_name} with {old_name}"
msgstr ""
msgstr "استبدل {new_name} بـ {old_name}"
#: js/filelist.js:298
msgid "undo"
msgstr ""
msgstr "تراجع"
#: js/filelist.js:323
msgid "perform delete operation"
msgstr ""
msgstr "جاري تنفيذ عملية الحذف"
#: js/files.js:52
msgid "'.' is an invalid file name."
msgstr ""
msgstr "\".\" اسم ملف غير صحيح."
#: js/files.js:56
msgid "File name cannot be empty."
msgstr ""
msgstr "اسم الملف لا يجوز أن يكون فارغا"
#: js/files.js:64
msgid ""
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not "
"allowed."
msgstr ""
msgstr "اسم غير صحيح , الرموز '\\', '/', '<', '>', ':', '\"', '|', '?' و \"*\" غير مسموح استخدامها"
#: js/files.js:78
msgid "Your storage is full, files can not be updated or synced anymore!"
msgstr ""
msgstr "مساحتك التخزينية ممتلئة, لا يمكم تحديث ملفاتك أو مزامنتها بعد الآن !"
#: js/files.js:82
msgid "Your storage is almost full ({usedSpacePercent}%)"
msgstr ""
msgstr "مساحتك التخزينية امتلأت تقريبا "
#: js/files.js:225
#: js/files.js:226
msgid ""
"Your download is being prepared. This might take some time if the files are "
"big."
msgstr ""
msgstr "جاري تجهيز عملية التحميل. قد تستغرق بعض الوقت اذا كان حجم الملفات كبير."
#: js/files.js:262
#: js/files.js:263
msgid "Unable to upload your file as it is a directory or has 0 bytes"
msgstr ""
msgstr "فشل في رفع ملفاتك , إما أنها مجلد أو حجمها 0 بايت"
#: js/files.js:262
#: js/files.js:263
msgid "Upload Error"
msgstr ""
msgstr "خطأ في رفع الملفات"
#: js/files.js:273
#: js/files.js:274
msgid "Close"
msgstr "إغلق"
#: js/files.js:312
#: js/files.js:313
msgid "1 file uploading"
msgstr ""
msgstr "جاري رفع 1 ملف"
#: js/files.js:315 js/files.js:370 js/files.js:385
#: js/files.js:316 js/files.js:371 js/files.js:386
msgid "{count} files uploading"
msgstr ""
msgstr "جاري رفع {count} ملفات"
#: js/files.js:388 js/files.js:423
#: js/files.js:389 js/files.js:424
msgid "Upload cancelled."
msgstr ""
msgstr "تم إلغاء عملية رفع الملفات ."
#: js/files.js:497
#: js/files.js:498
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr ""
msgstr "عملية رفع الملفات قيد التنفيذ. اغلاق الصفحة سوف يلغي عملية رفع الملفات."
#: js/files.js:570
#: js/files.js:571
msgid "URL cannot be empty."
msgstr ""
msgstr "عنوان ال URL لا يجوز أن يكون فارغا."
#: js/files.js:575
#: js/files.js:576
msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud"
msgstr ""
msgstr "إسم مجلد غير صحيح. استخدام مصطلح \"Shared\" محجوز للنظام"
#: js/files.js:953 templates/index.php:68
#: js/files.js:954 templates/index.php:68
msgid "Name"
msgstr "الاسم"
#: js/files.js:954 templates/index.php:79
#: js/files.js:955 templates/index.php:79
msgid "Size"
msgstr "حجم"
#: js/files.js:955 templates/index.php:81
#: js/files.js:956 templates/index.php:81
msgid "Modified"
msgstr "معدل"
#: js/files.js:974
#: js/files.js:975
msgid "1 folder"
msgstr ""
msgstr "مجلد عدد 1"
#: js/files.js:976
#: js/files.js:977
msgid "{count} folders"
msgstr ""
msgstr "{count} مجلدات"
#: js/files.js:984
#: js/files.js:985
msgid "1 file"
msgstr ""
msgstr "ملف واحد"
#: js/files.js:986
#: js/files.js:987
msgid "{count} files"
msgstr ""
msgstr "{count} ملفات"
#: lib/helper.php:11 templates/index.php:18
msgid "Upload"
@ -223,7 +224,7 @@ msgstr "إرفع"
#: templates/admin.php:5
msgid "File handling"
msgstr ""
msgstr "التعامل مع الملف"
#: templates/admin.php:7
msgid "Maximum upload size"
@ -231,23 +232,23 @@ msgstr "الحد الأقصى لحجم الملفات التي يمكن رفعه
#: templates/admin.php:10
msgid "max. possible: "
msgstr ""
msgstr "الحد الأقصى المسموح به"
#: templates/admin.php:15
msgid "Needed for multi-file and folder downloads."
msgstr ""
msgstr "اجباري للسماح بالتحميل المتعدد للمجلدات والملفات"
#: templates/admin.php:17
msgid "Enable ZIP-download"
msgstr ""
msgstr "تفعيل خاصية تحميل ملفات ZIP"
#: templates/admin.php:20
msgid "0 is unlimited"
msgstr ""
msgstr "0 = غير محدود"
#: templates/admin.php:22
msgid "Maximum input size for ZIP files"
msgstr ""
msgstr "الحد الأقصى المسموح به لملفات ZIP"
#: templates/admin.php:26
msgid "Save"
@ -267,19 +268,19 @@ msgstr "مجلد"
#: templates/index.php:14
msgid "From link"
msgstr ""
msgstr "من رابط"
#: templates/index.php:40
msgid "Deleted files"
msgstr ""
msgstr "حذف الملفات"
#: templates/index.php:46
msgid "Cancel upload"
msgstr ""
msgstr "إلغاء رفع الملفات"
#: templates/index.php:53
msgid "You dont have write permissions here."
msgstr ""
msgstr "لا تملك صلاحيات الكتابة هنا."
#: templates/index.php:60
msgid "Nothing in here. Upload something!"
@ -305,12 +306,12 @@ msgstr "حجم الملفات التي تريد ترفيعها أعلى من ا
#: templates/index.php:113
msgid "Files are being scanned, please wait."
msgstr ""
msgstr "يرجى الانتظار , جاري فحص الملفات ."
#: templates/index.php:116
msgid "Current scanning"
msgstr ""
msgstr "الفحص الحالي"
#: templates/upgrade.php:2
msgid "Upgrading filesystem cache..."
msgstr ""
msgstr "تحديث ذاكرة التخزين المؤقت(الكاش) الخاصة بملفات النظام ..."

View file

@ -4,13 +4,14 @@
#
# Translators:
# <hussein-atef@hotmail.com>, 2012.
# Raed Chammem <shemada@gmail.com>, 2013.
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-02-10 00:08+0100\n"
"PO-Revision-Date: 2013-02-09 23:09+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"POT-Creation-Date: 2013-03-19 00:04+0100\n"
"PO-Revision-Date: 2013-03-18 11:00+0000\n"
"Last-Translator: Raed667 <shemada@gmail.com>\n"
"Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -24,15 +25,15 @@ msgstr "التشفير"
#: templates/settings-personal.php:7
msgid "File encryption is enabled."
msgstr ""
msgstr "تشفير الملفات فعال."
#: templates/settings-personal.php:11
msgid "The following file types will not be encrypted:"
msgstr ""
msgstr "الملفات الاتية لن يتم تشفيرها:"
#: templates/settings.php:7
msgid "Exclude the following file types from encryption:"
msgstr ""
msgstr "إستثناء أنواع الملفات الاتية من التشفير: "
#: templates/settings.php:12
msgid "None"

View file

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-03-08 00:25+0100\n"
"PO-Revision-Date: 2013-03-07 23:25+0000\n"
"POT-Creation-Date: 2013-03-18 00:05+0100\n"
"PO-Revision-Date: 2013-03-17 10:00+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n"
"MIME-Version: 1.0\n"
@ -37,7 +37,7 @@ msgstr ""
#: js/trash.js:121
msgid "Delete permanently"
msgstr ""
msgstr "حذف بشكل دائم"
#: js/trash.js:174 templates/index.php:17
msgid "Name"
@ -49,19 +49,19 @@ msgstr ""
#: js/trash.js:184
msgid "1 folder"
msgstr ""
msgstr "مجلد عدد 1"
#: js/trash.js:186
msgid "{count} folders"
msgstr ""
msgstr "{count} مجلدات"
#: js/trash.js:194
msgid "1 file"
msgstr ""
msgstr "ملف واحد"
#: js/trash.js:196
msgid "{count} files"
msgstr ""
msgstr "{count} ملفات"
#: templates/index.php:9
msgid "Nothing in here. Your trash bin is empty!"

View file

@ -3,13 +3,14 @@
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
# Ahmad Matalqah <houfa2005@yahoo.com>, 2013.
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-02-27 14:35+0100\n"
"PO-Revision-Date: 2013-02-27 13:35+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"POT-Creation-Date: 2013-03-19 00:04+0100\n"
"PO-Revision-Date: 2013-03-18 14:52+0000\n"
"Last-Translator: Matalqah <houfa2005@yahoo.com>\n"
"Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -35,35 +36,35 @@ msgstr "المستخدمين"
#: app.php:398
msgid "Apps"
msgstr ""
msgstr "التطبيقات"
#: app.php:406
msgid "Admin"
msgstr ""
msgstr "المدير"
#: files.php:202
#: files.php:209
msgid "ZIP download is turned off."
msgstr ""
msgstr "تحميل ملفات ZIP متوقف"
#: files.php:203
#: files.php:210
msgid "Files need to be downloaded one by one."
msgstr ""
msgstr "الملفات بحاجة الى ان يتم تحميلها واحد تلو الاخر"
#: files.php:204 files.php:231
#: files.php:211 files.php:244
msgid "Back to Files"
msgstr ""
msgstr "العودة الى الملفات"
#: files.php:228
#: files.php:241
msgid "Selected files too large to generate zip file."
msgstr ""
msgstr "الملفات المحددة كبيرة جدا ليتم ضغطها في ملف zip"
#: helper.php:228
msgid "couldn't be determined"
msgstr ""
msgstr "تعذّر تحديده"
#: json.php:28
msgid "Application is not enabled"
msgstr ""
msgstr "التطبيق غير مفعّل"
#: json.php:39 json.php:62 json.php:73
msgid "Authentication error"
@ -71,7 +72,7 @@ msgstr "لم يتم التأكد من الشخصية بنجاح"
#: json.php:51
msgid "Token expired. Please reload page."
msgstr ""
msgstr "انتهت صلاحية الكلمة , يرجى اعادة تحميل الصفحة"
#: search/provider/file.php:17 search/provider/file.php:35
msgid "Files"
@ -83,55 +84,55 @@ msgstr "معلومات إضافية"
#: search/provider/file.php:29
msgid "Images"
msgstr ""
msgstr "صور"
#: setup.php:34
msgid "Set an admin username."
msgstr ""
msgstr "اعداد اسم مستخدم للمدير"
#: setup.php:37
msgid "Set an admin password."
msgstr ""
msgstr "اعداد كلمة مرور للمدير"
#: setup.php:40
msgid "Specify a data folder."
msgstr ""
msgstr "تحديد مجلد "
#: setup.php:55
#, php-format
msgid "%s enter the database username."
msgstr ""
msgstr "%s ادخل اسم المستخدم الخاص بقاعدة البيانات."
#: setup.php:58
#, php-format
msgid "%s enter the database name."
msgstr ""
msgstr "%s ادخل اسم فاعدة البيانات"
#: setup.php:61
#, php-format
msgid "%s you may not use dots in the database name"
msgstr ""
msgstr "%s لا يسمح لك باستخدام نقطه (.) في اسم قاعدة البيانات"
#: setup.php:64
#, php-format
msgid "%s set the database host."
msgstr ""
msgstr "%s ادخل اسم خادم قاعدة البيانات"
#: setup.php:128 setup.php:320 setup.php:365
msgid "PostgreSQL username and/or password not valid"
msgstr ""
msgstr "اسم المستخدم / أو كلمة المرور الخاصة بـPostgreSQL غير صحيحة"
#: setup.php:129 setup.php:152 setup.php:229
msgid "You need to enter either an existing account or the administrator."
msgstr ""
msgstr "انت بحاجة لكتابة اسم مستخدم موجود أو حساب المدير."
#: setup.php:151 setup.php:453 setup.php:520
msgid "Oracle username and/or password not valid"
msgstr ""
msgstr "اسم المستخدم و/أو كلمة المرور لنظام Oracle غير صحيح"
#: setup.php:228
msgid "MySQL username and/or password not valid"
msgstr ""
msgstr "اسم المستخدم و/أو كلمة المرور لنظام MySQL غير صحيح"
#: setup.php:282 setup.php:386 setup.php:395 setup.php:413 setup.php:423
#: setup.php:432 setup.php:461 setup.php:527 setup.php:553 setup.php:560
@ -139,53 +140,53 @@ msgstr ""
#: setup.php:610
#, php-format
msgid "DB Error: \"%s\""
msgstr ""
msgstr "خطأ في قواعد البيانات : \"%s\""
#: setup.php:283 setup.php:387 setup.php:396 setup.php:414 setup.php:424
#: setup.php:433 setup.php:462 setup.php:528 setup.php:554 setup.php:561
#: setup.php:572 setup.php:588 setup.php:596 setup.php:605
#, php-format
msgid "Offending command was: \"%s\""
msgstr ""
msgstr "الأمر المخالف كان : \"%s\""
#: setup.php:299
#, php-format
msgid "MySQL user '%s'@'localhost' exists already."
msgstr ""
msgstr "أسم المستخدم '%s'@'localhost' الخاص بـ MySQL موجود مسبقا"
#: setup.php:300
msgid "Drop this user from MySQL"
msgstr ""
msgstr "احذف اسم المستخدم هذا من الـ MySQL"
#: setup.php:305
#, php-format
msgid "MySQL user '%s'@'%%' already exists"
msgstr ""
msgstr "أسم المستخدم '%s'@'%%' الخاص بـ MySQL موجود مسبقا"
#: setup.php:306
msgid "Drop this user from MySQL."
msgstr ""
msgstr "احذف اسم المستخدم هذا من الـ MySQL."
#: setup.php:579 setup.php:611
#, php-format
msgid "Offending command was: \"%s\", name: %s, password: %s"
msgstr ""
msgstr "الأمر المخالف كان : \"%s\", اسم المستخدم : %s, كلمة المرور: %s"
#: setup.php:631
#, php-format
msgid "MS SQL username and/or password not valid: %s"
msgstr ""
msgstr "اسم المستخدم و/أو كلمة المرور لنظام MS SQL غير صحيح : %s"
#: setup.php:849
msgid ""
"Your web server is not yet properly setup to allow files synchronization "
"because the WebDAV interface seems to be broken."
msgstr ""
msgstr "اعدادات خادمك غير صحيحة بشكل تسمح لك بمزامنة ملفاتك وذلك بسبب أن واجهة WebDAV تبدو معطلة"
#: setup.php:850
#, php-format
msgid "Please double check the <a href='%s'>installation guides</a>."
msgstr ""
msgstr "الرجاء التحقق من <a href='%s'>دليل التنصيب</a>."
#: template.php:113
msgid "seconds ago"
@ -198,16 +199,16 @@ msgstr "منذ دقيقة"
#: template.php:115
#, php-format
msgid "%d minutes ago"
msgstr ""
msgstr "%d دقيقة مضت"
#: template.php:116
msgid "1 hour ago"
msgstr ""
msgstr "قبل ساعة مضت"
#: template.php:117
#, php-format
msgid "%d hours ago"
msgstr ""
msgstr "%d ساعة مضت"
#: template.php:118
msgid "today"
@ -215,44 +216,44 @@ msgstr "اليوم"
#: template.php:119
msgid "yesterday"
msgstr ""
msgstr "يوم أمس"
#: template.php:120
#, php-format
msgid "%d days ago"
msgstr ""
msgstr "%d يوم مضى"
#: template.php:121
msgid "last month"
msgstr ""
msgstr "الشهر الماضي"
#: template.php:122
#, php-format
msgid "%d months ago"
msgstr ""
msgstr "%d شهر مضت"
#: template.php:123
msgid "last year"
msgstr ""
msgstr "السنةالماضية"
#: template.php:124
msgid "years ago"
msgstr ""
msgstr "سنة مضت"
#: updater.php:78
#, php-format
msgid "%s is available. Get <a href=\"%s\">more information</a>"
msgstr ""
msgstr "%s متاح . احصل على <a href=\"%s\">المزيد من المعلومات </a>"
#: updater.php:81
msgid "up to date"
msgstr ""
msgstr "محدّث"
#: updater.php:84
msgid "updates check is disabled"
msgstr ""
msgstr "فحص التحديثات معطّل"
#: vcategories.php:188 vcategories.php:249
#, php-format
msgid "Could not find category \"%s\""
msgstr ""
msgstr "تعذر العثور على المجلد \"%s\""

View file

@ -3,16 +3,18 @@
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
# Ahmad Matalqah <houfa2005@yahoo.com>, 2013.
# <icewind1991@gmail.com>, 2012.
# Raed Chammem <shemada@gmail.com>, 2013.
# <shiningmoon25@gmail.com>, 2012.
# <tarek.taha@gmail.com>, 2011, 2012.
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-02-27 14:35+0100\n"
"PO-Revision-Date: 2013-02-27 13:35+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"POT-Creation-Date: 2013-03-19 00:04+0100\n"
"PO-Revision-Date: 2013-03-18 11:00+0000\n"
"Last-Translator: Matalqah <houfa2005@yahoo.com>\n"
"Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -31,7 +33,7 @@ msgstr "لم يتم التأكد من الشخصية بنجاح"
#: ajax/changedisplayname.php:32
msgid "Unable to change display name"
msgstr ""
msgstr "تعذر تغيير اسم الحساب"
#: ajax/creategroup.php:10
msgid "Group already exists"
@ -85,11 +87,11 @@ msgstr "فشل إزالة المستخدم من المجموعة %s"
#: ajax/updateapp.php:14
msgid "Couldn't update app."
msgstr ""
msgstr "تعذر تحديث التطبيق."
#: js/apps.js:30
msgid "Update to {appversion}"
msgstr ""
msgstr "تم التحديث الى "
#: js/apps.js:36 js/apps.js:76
msgid "Disable"
@ -101,15 +103,15 @@ 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"
msgstr ""
msgstr "حصل خطأ أثناء تحديث التطبيق"
#: js/apps.js:87
msgid "Error"
@ -117,7 +119,7 @@ msgstr "خطأ"
#: js/apps.js:90
msgid "Updated"
msgstr ""
msgstr "تم التحديث بنجاح"
#: js/personal.js:99
msgid "Saving..."
@ -125,15 +127,15 @@ msgstr "حفظ"
#: js/users.js:30
msgid "deleted"
msgstr ""
msgstr "تم الحذف"
#: js/users.js:30
msgid "undo"
msgstr ""
msgstr "تراجع"
#: js/users.js:62
msgid "Unable to remove user"
msgstr ""
msgstr "تعذر حذف المستخدم"
#: js/users.js:75 templates/users.php:26 templates/users.php:80
#: templates/users.php:105
@ -150,19 +152,19 @@ msgstr "حذف"
#: js/users.js:191
msgid "add group"
msgstr ""
msgstr "اضافة مجموعة"
#: js/users.js:352
msgid "A valid username must be provided"
msgstr ""
msgstr "يجب ادخال اسم مستخدم صحيح"
#: js/users.js:353 js/users.js:359 js/users.js:374
msgid "Error creating user"
msgstr ""
msgstr "حصل خطأ اثناء انشاء مستخدم"
#: js/users.js:358
msgid "A valid password must be provided"
msgstr ""
msgstr "يجب ادخال كلمة مرور صحيحة"
#: personal.php:29 personal.php:30
msgid "__language_name__"
@ -179,36 +181,36 @@ msgid ""
"strongly suggest that you configure your webserver in a way that the data "
"directory is no longer accessible or you move the data directory outside the"
" webserver document root."
msgstr ""
msgstr "مجلدات data وملفاتك قد تكون قابلة للوصول اليها عن طريق شبكة الانترنت. ملف .htaccess الذي وفرته Owncloud لا يعمل . نقترح أن تقوم باعداد خادمك بطريقة تجعل مجلد data غير قابل للوصول اليه عن طريق الانترنت أو أن تقوم بتغيير مساره الى خارج مسار مجلد الصفحات الافتراضي document root الخاص بخادم الويب ."
#: templates/admin.php:29
msgid "Setup Warning"
msgstr ""
msgstr "تحذير في التنصيب"
#: templates/admin.php:32
msgid ""
"Your web server is not yet properly setup to allow files synchronization "
"because the WebDAV interface seems to be broken."
msgstr ""
msgstr "اعدادات خادمك غير صحيحة بشكل تسمح لك بمزامنة ملفاتك وذلك بسبب أن واجهة WebDAV تبدو معطلة"
#: templates/admin.php:33
#, php-format
msgid "Please double check the <a href='%s'>installation guides</a>."
msgstr ""
msgstr "الرجاء التحقق من <a href='%s'>دليل التنصيب</a>."
#: templates/admin.php:44
msgid "Module 'fileinfo' missing"
msgstr ""
msgstr "الموديل 'fileinfo' مفقود"
#: templates/admin.php:47
msgid ""
"The PHP module 'fileinfo' is missing. We strongly recommend to enable this "
"module to get best results with mime-type detection."
msgstr ""
msgstr "موديل 'fileinfo' الخاص بالـPHP مفقود . نوصي بتفعيل هذا الموديل للحصول على أفضل النتائج مع خاصية التحقق "
#: templates/admin.php:58
msgid "Locale not working"
msgstr ""
msgstr "اللغه لا تعمل"
#: templates/admin.php:63
#, php-format
@ -216,11 +218,11 @@ msgid ""
"This ownCloud server can't set system locale to %s. This means that there "
"might be problems with certain characters in file names. We strongly suggest"
" to install the required packages on your system to support %s."
msgstr ""
msgstr "لم يتمكن خادم ownCloud هذا كم ضبط لغة النظام الى %s . هذا يعني انه قد يكون هناك أخطاء في اسماء الملفات. نحن نوصي ان تقوم بتركيب الحزم اللازمة لدعم %s على نظامك . "
#: templates/admin.php:75
msgid "Internet connection not working"
msgstr ""
msgstr "الاتصال بالانترنت لا يعمل"
#: templates/admin.php:78
msgid ""
@ -230,90 +232,90 @@ msgid ""
"remote and sending of notification emails might also not work. We suggest to"
" enable internet connection for this server if you want to have all features"
" of ownCloud."
msgstr ""
msgstr "خادم الـ Owncloud هذا غير متصل بالانترنت. هذا يعني أن بعض الميزات مثل الربط بوحدة تخزينية خارجيه, التنبيهات الخاصة بالتحديثات أو تركيب تطبيقات من مصادر خارجية لن يعمل . كما ان الوصول الى الملفات من خارج الخادم وارسال رسائل البريد التنبيهية لن تعمل أيضا . نقترح أن تفعل خدمة الانترنت في هذا الخادم اذا أردت ان تستفيد من كافة ميزات Owncloud"
#: templates/admin.php:92
msgid "Cron"
msgstr ""
msgstr "مجدول"
#: templates/admin.php:101
msgid "Execute one task with each page loaded"
msgstr ""
msgstr "قم بتنفيذ مهمة واحدة مع كل صفحة تم تحميلها"
#: templates/admin.php:111
msgid ""
"cron.php is registered at a webcron service. Call the cron.php page in the "
"owncloud root once a minute over http."
msgstr ""
msgstr "cron.php مسجلة في خدمة webcron . قم باستدعاء صفحة cron.php الموجودة في owncloud root مره كل دقيقة عن طريق بروتوكول http"
#: templates/admin.php:121
msgid ""
"Use systems cron service. Call the cron.php file in the owncloud folder via "
"a system cronjob once a minute."
msgstr ""
msgstr "قم باستخدام خدمة cron . قم باستدعاء ملف cron.php الموجود في مجلد Owncloud عن طريق system cronjob مره كل دقيقة"
#: templates/admin.php:128
msgid "Sharing"
msgstr ""
msgstr "مشاركة"
#: templates/admin.php:134
msgid "Enable Share API"
msgstr ""
msgstr "السماح بالمشاركة عن طريق الAPI "
#: templates/admin.php:135
msgid "Allow apps to use the Share API"
msgstr ""
msgstr "السماح للتطبيقات بالمشاركة عن طريق الAPI"
#: templates/admin.php:142
msgid "Allow links"
msgstr ""
msgstr "السماح بالعناوين"
#: templates/admin.php:143
msgid "Allow users to share items to the public with links"
msgstr ""
msgstr "السماح للمستعملين بمشاركة البنود للعموم عن طريق الروابط "
#: templates/admin.php:150
msgid "Allow resharing"
msgstr ""
msgstr "السماح بإعادة المشاركة "
#: templates/admin.php:151
msgid "Allow users to share items shared with them again"
msgstr ""
msgstr "السماح للمستخدمين باعادة مشاركة الملفات التي تم مشاركتها معهم"
#: templates/admin.php:158
msgid "Allow users to share with anyone"
msgstr ""
msgstr "السماح للمستعملين بإعادة المشاركة مع أي أحد "
#: templates/admin.php:161
msgid "Allow users to only share with users in their groups"
msgstr ""
msgstr "السماح للمستعمينٍ لإعادة المشاركة فقط مع المستعملين في مجموعاتهم"
#: templates/admin.php:168
msgid "Security"
msgstr ""
msgstr "حماية"
#: templates/admin.php:181
msgid "Enforce HTTPS"
msgstr ""
msgstr "فرض HTTPS"
#: templates/admin.php:182
msgid ""
"Enforces the clients to connect to ownCloud via an encrypted connection."
msgstr ""
msgstr "اجبار المستخدم بالاتصال مع Owncloud عن طريق اتصال مشفر"
#: templates/admin.php:185
msgid ""
"Please connect to this ownCloud instance via HTTPS to enable or disable the "
"SSL enforcement."
msgstr ""
msgstr "الرجاء الاتصال مع خادم Owncloud هذا عن طريق HTTPS لتفعيل أو تعطيل اجبار الدخول باستخدام "
#: templates/admin.php:195
msgid "Log"
msgstr ""
msgstr "سجل"
#: templates/admin.php:196
msgid "Log level"
msgstr ""
msgstr "مستوى السجل"
#: templates/admin.php:223
msgid "More"
@ -388,11 +390,11 @@ msgstr "تم إستهلاك <strong>%s</strong> من المتوفر <strong>%s</
#: templates/personal.php:15
msgid "Get the apps to sync your files"
msgstr ""
msgstr "احصل على التطبيقات لمزامنة ملفاتك"
#: templates/personal.php:26
msgid "Show First Run Wizard again"
msgstr ""
msgstr "ابدأ خطوات بداية التشغيل من جديد"
#: templates/personal.php:37 templates/users.php:23 templates/users.php:79
msgid "Password"
@ -420,19 +422,19 @@ msgstr "عدل كلمة السر"
#: templates/personal.php:56 templates/users.php:78
msgid "Display Name"
msgstr ""
msgstr "اسم الحساب"
#: templates/personal.php:57
msgid "Your display name was changed"
msgstr ""
msgstr "تم تغيير اسم حسابك بنجاح"
#: templates/personal.php:58
msgid "Unable to change your display name"
msgstr ""
msgstr "تعذر تغيير اسم حسابك"
#: templates/personal.php:61
msgid "Change display name"
msgstr ""
msgstr "تغيير اسم الحساب"
#: templates/personal.php:70
msgid "Email"
@ -464,7 +466,7 @@ msgstr "إستخدم هذا العنوان للإتصال بـ ownCloud في م
#: templates/users.php:21 templates/users.php:77
msgid "Login Name"
msgstr ""
msgstr "اسم الدخول"
#: templates/users.php:32
msgid "Create"
@ -472,11 +474,11 @@ msgstr "انشئ"
#: templates/users.php:35
msgid "Default Storage"
msgstr ""
msgstr "وحدة التخزين الافتراضية"
#: templates/users.php:41 templates/users.php:139
msgid "Unlimited"
msgstr ""
msgstr "غير محدود"
#: templates/users.php:59 templates/users.php:154
msgid "Other"
@ -484,16 +486,16 @@ msgstr "شيء آخر"
#: templates/users.php:84
msgid "Storage"
msgstr ""
msgstr "وحدة التخزين"
#: templates/users.php:95
msgid "change display name"
msgstr ""
msgstr "تغيير اسم الحساب"
#: templates/users.php:99
msgid "set new password"
msgstr ""
msgstr "اعداد كلمة مرور جديدة"
#: templates/users.php:134
msgid "Default"
msgstr ""
msgstr "افتراضي"

View file

@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-03-04 00:06+0100\n"
"PO-Revision-Date: 2013-03-03 23:06+0000\n"
"POT-Creation-Date: 2013-03-16 22:17+0100\n"
"PO-Revision-Date: 2013-03-14 23:20+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n"
"MIME-Version: 1.0\n"
@ -76,7 +76,7 @@ msgstr ""
msgid "Invalid directory."
msgstr "Невалидна директория."
#: appinfo/app.php:10
#: appinfo/app.php:12
msgid "Files"
msgstr "Файлове"
@ -92,8 +92,8 @@ msgstr "Изтриване"
msgid "Rename"
msgstr "Преименуване"
#: js/filelist.js:49 js/filelist.js:52 js/files.js:292 js/files.js:408
#: js/files.js:439
#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409
#: js/files.js:440
msgid "Pending"
msgstr "Чакащо"
@ -147,74 +147,74 @@ msgstr ""
msgid "Your storage is almost full ({usedSpacePercent}%)"
msgstr ""
#: js/files.js:225
#: js/files.js:226
msgid ""
"Your download is being prepared. This might take some time if the files are "
"big."
msgstr ""
#: js/files.js:262
#: js/files.js:263
msgid "Unable to upload your file as it is a directory or has 0 bytes"
msgstr ""
#: js/files.js:262
#: js/files.js:263
msgid "Upload Error"
msgstr "Възникна грешка при качването"
#: js/files.js:273
#: js/files.js:274
msgid "Close"
msgstr "Затвори"
#: js/files.js:312
#: js/files.js:313
msgid "1 file uploading"
msgstr ""
#: js/files.js:315 js/files.js:370 js/files.js:385
#: js/files.js:316 js/files.js:371 js/files.js:386
msgid "{count} files uploading"
msgstr ""
#: js/files.js:388 js/files.js:423
#: js/files.js:389 js/files.js:424
msgid "Upload cancelled."
msgstr "Качването е спряно."
#: js/files.js:497
#: js/files.js:498
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr ""
#: js/files.js:570
#: js/files.js:571
msgid "URL cannot be empty."
msgstr ""
#: js/files.js:575
#: js/files.js:576
msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud"
msgstr ""
#: js/files.js:953 templates/index.php:68
#: js/files.js:954 templates/index.php:68
msgid "Name"
msgstr "Име"
#: js/files.js:954 templates/index.php:79
#: js/files.js:955 templates/index.php:79
msgid "Size"
msgstr "Размер"
#: js/files.js:955 templates/index.php:81
#: js/files.js:956 templates/index.php:81
msgid "Modified"
msgstr "Променено"
#: js/files.js:974
#: js/files.js:975
msgid "1 folder"
msgstr "1 папка"
#: js/files.js:976
#: js/files.js:977
msgid "{count} folders"
msgstr "{count} папки"
#: js/files.js:984
#: js/files.js:985
msgid "1 file"
msgstr "1 файл"
#: js/files.js:986
#: js/files.js:987
msgid "{count} files"
msgstr "{count} файла"

View file

@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-03-04 00:06+0100\n"
"PO-Revision-Date: 2013-03-03 23:06+0000\n"
"POT-Creation-Date: 2013-03-16 22:17+0100\n"
"PO-Revision-Date: 2013-03-14 23:20+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n"
"MIME-Version: 1.0\n"
@ -75,7 +75,7 @@ msgstr ""
msgid "Invalid directory."
msgstr "ভুল ডিরেক্টরি"
#: appinfo/app.php:10
#: appinfo/app.php:12
msgid "Files"
msgstr "ফাইল"
@ -91,8 +91,8 @@ msgstr "মুছে ফেল"
msgid "Rename"
msgstr "পূনঃনামকরণ"
#: js/filelist.js:49 js/filelist.js:52 js/files.js:292 js/files.js:408
#: js/files.js:439
#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409
#: js/files.js:440
msgid "Pending"
msgstr "মুলতুবি"
@ -146,74 +146,74 @@ msgstr ""
msgid "Your storage is almost full ({usedSpacePercent}%)"
msgstr ""
#: js/files.js:225
#: js/files.js:226
msgid ""
"Your download is being prepared. This might take some time if the files are "
"big."
msgstr ""
#: js/files.js:262
#: js/files.js:263
msgid "Unable to upload your file as it is a directory or has 0 bytes"
msgstr "আপনার ফাইলটি আপলোড করা সম্ভব হলো না, কেননা এটি হয় একটি ফোল্ডার কিংবা এর আকার বাইট"
#: js/files.js:262
#: js/files.js:263
msgid "Upload Error"
msgstr "আপলোড করতে সমস্যা "
#: js/files.js:273
#: js/files.js:274
msgid "Close"
msgstr "বন্ধ"
#: js/files.js:312
#: js/files.js:313
msgid "1 file uploading"
msgstr "১টি ফাইল আপলোড করা হচ্ছে"
#: js/files.js:315 js/files.js:370 js/files.js:385
#: js/files.js:316 js/files.js:371 js/files.js:386
msgid "{count} files uploading"
msgstr "{count} টি ফাইল আপলোড করা হচ্ছে"
#: js/files.js:388 js/files.js:423
#: js/files.js:389 js/files.js:424
msgid "Upload cancelled."
msgstr "আপলোড বাতিল করা হয়েছে।"
#: js/files.js:497
#: js/files.js:498
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr "ফাইল আপলোড চলমান। এই পৃষ্ঠা পরিত্যাগ করলে আপলোড বাতিল করা হবে।"
#: js/files.js:570
#: js/files.js:571
msgid "URL cannot be empty."
msgstr "URL ফাঁকা রাখা যাবে না।"
#: js/files.js:575
#: js/files.js:576
msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud"
msgstr "ফোল্ডারের নামটি সঠিক নয়। 'ভাগাভাগি করা' শুধুমাত্র Owncloud এর জন্য সংরক্ষিত।"
#: js/files.js:953 templates/index.php:68
#: js/files.js:954 templates/index.php:68
msgid "Name"
msgstr "নাম"
#: js/files.js:954 templates/index.php:79
#: js/files.js:955 templates/index.php:79
msgid "Size"
msgstr "আকার"
#: js/files.js:955 templates/index.php:81
#: js/files.js:956 templates/index.php:81
msgid "Modified"
msgstr "পরিবর্তিত"
#: js/files.js:974
#: js/files.js:975
msgid "1 folder"
msgstr "১টি ফোল্ডার"
#: js/files.js:976
#: js/files.js:977
msgid "{count} folders"
msgstr "{count} টি ফোল্ডার"
#: js/files.js:984
#: js/files.js:985
msgid "1 file"
msgstr "১টি ফাইল"
#: js/files.js:986
#: js/files.js:987
msgid "{count} files"
msgstr "{count} টি ফাইল"

View file

@ -14,8 +14,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-03-04 00:06+0100\n"
"PO-Revision-Date: 2013-03-03 23:06+0000\n"
"POT-Creation-Date: 2013-03-16 22:17+0100\n"
"PO-Revision-Date: 2013-03-14 23:20+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n"
"MIME-Version: 1.0\n"
@ -81,7 +81,7 @@ msgstr "No hi ha prou espai disponible"
msgid "Invalid directory."
msgstr "Directori no vàlid."
#: appinfo/app.php:10
#: appinfo/app.php:12
msgid "Files"
msgstr "Fitxers"
@ -97,8 +97,8 @@ msgstr "Suprimeix"
msgid "Rename"
msgstr "Reanomena"
#: js/filelist.js:49 js/filelist.js:52 js/files.js:292 js/files.js:408
#: js/files.js:439
#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409
#: js/files.js:440
msgid "Pending"
msgstr "Pendents"
@ -152,74 +152,74 @@ msgstr "El vostre espai d'emmagatzemament és ple, els fitxers ja no es poden ac
msgid "Your storage is almost full ({usedSpacePercent}%)"
msgstr "El vostre espai d'emmagatzemament és gairebé ple ({usedSpacePercent}%)"
#: js/files.js:225
#: js/files.js:226
msgid ""
"Your download is being prepared. This might take some time if the files are "
"big."
msgstr "S'està preparant la baixada. Pot trigar una estona si els fitxers són grans."
#: js/files.js:262
#: js/files.js:263
msgid "Unable to upload your file as it is a directory or has 0 bytes"
msgstr "No es pot pujar el fitxer perquè és una carpeta o té 0 bytes"
#: js/files.js:262
#: js/files.js:263
msgid "Upload Error"
msgstr "Error en la pujada"
#: js/files.js:273
#: js/files.js:274
msgid "Close"
msgstr "Tanca"
#: js/files.js:312
#: js/files.js:313
msgid "1 file uploading"
msgstr "1 fitxer pujant"
#: js/files.js:315 js/files.js:370 js/files.js:385
#: js/files.js:316 js/files.js:371 js/files.js:386
msgid "{count} files uploading"
msgstr "{count} fitxers en pujada"
#: js/files.js:388 js/files.js:423
#: js/files.js:389 js/files.js:424
msgid "Upload cancelled."
msgstr "La pujada s'ha cancel·lat."
#: js/files.js:497
#: js/files.js:498
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr "Hi ha una pujada en curs. Si abandoneu la pàgina la pujada es cancel·larà."
#: js/files.js:570
#: js/files.js:571
msgid "URL cannot be empty."
msgstr "La URL no pot ser buida"
#: js/files.js:575
#: js/files.js:576
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:953 templates/index.php:68
#: js/files.js:954 templates/index.php:68
msgid "Name"
msgstr "Nom"
#: js/files.js:954 templates/index.php:79
#: js/files.js:955 templates/index.php:79
msgid "Size"
msgstr "Mida"
#: js/files.js:955 templates/index.php:81
#: js/files.js:956 templates/index.php:81
msgid "Modified"
msgstr "Modificat"
#: js/files.js:974
#: js/files.js:975
msgid "1 folder"
msgstr "1 carpeta"
#: js/files.js:976
#: js/files.js:977
msgid "{count} folders"
msgstr "{count} carpetes"
#: js/files.js:984
#: js/files.js:985
msgid "1 file"
msgstr "1 fitxer"
#: js/files.js:986
#: js/files.js:987
msgid "{count} files"
msgstr "{count} fitxers"

View file

@ -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-22 00:06+0100\n"
"PO-Revision-Date: 2013-02-20 23:20+0000\n"
"POT-Creation-Date: 2013-03-15 00:05+0100\n"
"PO-Revision-Date: 2013-03-14 13:50+0000\n"
"Last-Translator: Tomáš Chvátal <tomas.chvatal@gmail.com>\n"
"Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n"
"MIME-Version: 1.0\n"
@ -21,24 +21,24 @@ msgstr ""
"Language: cs_CZ\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
#: ajax/share.php:85
#: ajax/share.php:97
#, php-format
msgid "User %s shared a file with you"
msgstr "Uživatel %s s vámi sdílí soubor"
#: ajax/share.php:87
#: ajax/share.php:99
#, php-format
msgid "User %s shared a folder with you"
msgstr "Uživatel %s s vámi sdílí složku"
#: ajax/share.php:89
#: ajax/share.php:101
#, php-format
msgid ""
"User %s shared the file \"%s\" with you. It is available for download here: "
"%s"
msgstr "Uživatel %s s vámi sdílí soubor \"%s\". Můžete jej stáhnout zde: %s"
#: ajax/share.php:91
#: ajax/share.php:104
#, php-format
msgid ""
"User %s shared the folder \"%s\" with you. It is available for download "
@ -84,79 +84,79 @@ msgstr "Žádné kategorie nebyly vybrány ke smazání."
msgid "Error removing %s from favorites."
msgstr "Chyba při odebírání %s z oblíbených."
#: js/config.php:32
#: js/config.php:34
msgid "Sunday"
msgstr "Neděle"
#: js/config.php:32
#: js/config.php:35
msgid "Monday"
msgstr "Pondělí"
#: js/config.php:32
#: js/config.php:36
msgid "Tuesday"
msgstr "Úterý"
#: js/config.php:32
#: js/config.php:37
msgid "Wednesday"
msgstr "Středa"
#: js/config.php:32
#: js/config.php:38
msgid "Thursday"
msgstr "Čtvrtek"
#: js/config.php:32
#: js/config.php:39
msgid "Friday"
msgstr "Pátek"
#: js/config.php:32
#: js/config.php:40
msgid "Saturday"
msgstr "Sobota"
#: js/config.php:33
#: js/config.php:45
msgid "January"
msgstr "Leden"
#: js/config.php:33
#: js/config.php:46
msgid "February"
msgstr "Únor"
#: js/config.php:33
#: js/config.php:47
msgid "March"
msgstr "Březen"
#: js/config.php:33
#: js/config.php:48
msgid "April"
msgstr "Duben"
#: js/config.php:33
#: js/config.php:49
msgid "May"
msgstr "Květen"
#: js/config.php:33
#: js/config.php:50
msgid "June"
msgstr "Červen"
#: js/config.php:33
#: js/config.php:51
msgid "July"
msgstr "Červenec"
#: js/config.php:33
#: js/config.php:52
msgid "August"
msgstr "Srpen"
#: js/config.php:33
#: js/config.php:53
msgid "September"
msgstr "Září"
#: js/config.php:33
#: js/config.php:54
msgid "October"
msgstr "Říjen"
#: js/config.php:33
#: js/config.php:55
msgid "November"
msgstr "Listopad"
#: js/config.php:33
#: js/config.php:56
msgid "December"
msgstr "Prosinec"
@ -164,55 +164,55 @@ msgstr "Prosinec"
msgid "Settings"
msgstr "Nastavení"
#: js/js.js:767
#: js/js.js:777
msgid "seconds ago"
msgstr "před pár vteřinami"
#: js/js.js:768
#: js/js.js:778
msgid "1 minute ago"
msgstr "před minutou"
#: js/js.js:769
#: js/js.js:779
msgid "{minutes} minutes ago"
msgstr "před {minutes} minutami"
#: js/js.js:770
#: js/js.js:780
msgid "1 hour ago"
msgstr "před hodinou"
#: js/js.js:771
#: js/js.js:781
msgid "{hours} hours ago"
msgstr "před {hours} hodinami"
#: js/js.js:772
#: js/js.js:782
msgid "today"
msgstr "dnes"
#: js/js.js:773
#: js/js.js:783
msgid "yesterday"
msgstr "včera"
#: js/js.js:774
#: js/js.js:784
msgid "{days} days ago"
msgstr "před {days} dny"
#: js/js.js:775
#: js/js.js:785
msgid "last month"
msgstr "minulý mesíc"
#: js/js.js:776
#: js/js.js:786
msgid "{months} months ago"
msgstr "před {months} měsíci"
#: js/js.js:777
#: js/js.js:787
msgid "months ago"
msgstr "před měsíci"
#: js/js.js:778
#: js/js.js:788
msgid "last year"
msgstr "minulý rok"
#: js/js.js:779
#: js/js.js:789
msgid "years ago"
msgstr "před lety"
@ -242,8 +242,8 @@ msgid "The object type is not specified."
msgstr "Není určen typ objektu."
#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136
#: js/oc-vcategories.js:195 js/share.js:152 js/share.js:159 js/share.js:582
#: js/share.js:594
#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566
#: js/share.js:578
msgid "Error"
msgstr "Chyba"
@ -255,127 +255,127 @@ msgstr "Není určen název aplikace."
msgid "The required file {file} is not installed!"
msgstr "Požadovaný soubor {file} není nainstalován."
#: js/share.js:29 js/share.js:43 js/share.js:90
#: js/share.js:30 js/share.js:45 js/share.js:87
msgid "Shared"
msgstr "Sdílené"
#: js/share.js:93
#: js/share.js:90
msgid "Share"
msgstr "Sdílet"
#: js/share.js:141 js/share.js:622
#: js/share.js:125 js/share.js:606
msgid "Error while sharing"
msgstr "Chyba při sdílení"
#: js/share.js:152
#: js/share.js:136
msgid "Error while unsharing"
msgstr "Chyba při rušení sdílení"
#: js/share.js:159
#: js/share.js:143
msgid "Error while changing permissions"
msgstr "Chyba při změně oprávnění"
#: js/share.js:168
#: js/share.js:152
msgid "Shared with you and the group {group} by {owner}"
msgstr "S Vámi a skupinou {group} sdílí {owner}"
#: js/share.js:170
#: js/share.js:154
msgid "Shared with you by {owner}"
msgstr "S Vámi sdílí {owner}"
#: js/share.js:175
#: js/share.js:159
msgid "Share with"
msgstr "Sdílet s"
#: js/share.js:180
#: js/share.js:164
msgid "Share with link"
msgstr "Sdílet s odkazem"
#: js/share.js:183
#: js/share.js:167
msgid "Password protect"
msgstr "Chránit heslem"
#: js/share.js:185 templates/installation.php:44 templates/login.php:35
#: js/share.js:169 templates/installation.php:47 templates/login.php:35
msgid "Password"
msgstr "Heslo"
#: js/share.js:189
#: js/share.js:173
msgid "Email link to person"
msgstr "Odeslat osobě odkaz e-mailem"
#: js/share.js:190
#: js/share.js:174
msgid "Send"
msgstr "Odeslat"
#: js/share.js:194
#: js/share.js:178
msgid "Set expiration date"
msgstr "Nastavit datum vypršení platnosti"
#: js/share.js:195
#: js/share.js:179
msgid "Expiration date"
msgstr "Datum vypršení platnosti"
#: js/share.js:227
#: js/share.js:211
msgid "Share via email:"
msgstr "Sdílet e-mailem:"
#: js/share.js:229
#: js/share.js:213
msgid "No people found"
msgstr "Žádní lidé nenalezeni"
#: js/share.js:256
#: js/share.js:240
msgid "Resharing is not allowed"
msgstr "Sdílení již sdílené položky není povoleno"
#: js/share.js:292
#: js/share.js:276
msgid "Shared in {item} with {user}"
msgstr "Sdíleno v {item} s {user}"
#: js/share.js:313
#: js/share.js:297
msgid "Unshare"
msgstr "Zrušit sdílení"
#: js/share.js:325
#: js/share.js:309
msgid "can edit"
msgstr "lze upravovat"
#: js/share.js:327
#: js/share.js:311
msgid "access control"
msgstr "řízení přístupu"
#: js/share.js:330
#: js/share.js:314
msgid "create"
msgstr "vytvořit"
#: js/share.js:333
#: js/share.js:317
msgid "update"
msgstr "aktualizovat"
#: js/share.js:336
#: js/share.js:320
msgid "delete"
msgstr "smazat"
#: js/share.js:339
#: js/share.js:323
msgid "share"
msgstr "sdílet"
#: js/share.js:373 js/share.js:569
#: js/share.js:357 js/share.js:553
msgid "Password protected"
msgstr "Chráněno heslem"
#: js/share.js:582
#: js/share.js:566
msgid "Error unsetting expiration date"
msgstr "Chyba při odstraňování data vypršení platnosti"
#: js/share.js:594
#: js/share.js:578
msgid "Error setting expiration date"
msgstr "Chyba při nastavení data vypršení platnosti"
#: js/share.js:609
#: js/share.js:593
msgid "Sending ..."
msgstr "Odesílám..."
#: js/share.js:620
#: js/share.js:604
msgid "Email sent"
msgstr "E-mail odeslán"
@ -410,7 +410,7 @@ msgstr "Obnovovací e-mail odeslán."
msgid "Request failed!"
msgstr "Požadavek selhal."
#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39
#: lostpassword/templates/lostpassword.php:11 templates/installation.php:41
#: templates/login.php:28
msgid "Username"
msgstr "Uživatelské jméno"
@ -471,85 +471,86 @@ msgstr "Upravit kategorie"
msgid "Add"
msgstr "Přidat"
#: templates/installation.php:23 templates/installation.php:30
#: templates/installation.php:24 templates/installation.php:31
msgid "Security Warning"
msgstr "Bezpečnostní upozornění"
#: templates/installation.php:24
#: templates/installation.php:25
msgid ""
"No secure random number generator is available, please enable the PHP "
"OpenSSL extension."
msgstr "Není dostupný žádný bezpečný generátor náhodných čísel. Povolte, prosím, rozšíření OpenSSL v PHP."
#: templates/installation.php:25
#: templates/installation.php:26
msgid ""
"Without a secure random number generator an attacker may be able to predict "
"password reset tokens and take over your account."
msgstr "Bez bezpečného generátoru náhodných čísel může útočník předpovědět token pro obnovu hesla a převzít kontrolu nad Vaším účtem."
#: templates/installation.php:31
#: templates/installation.php:32
msgid ""
"Your data directory and files are probably accessible from the internet "
"because the .htaccess file does not work."
msgstr "Váš adresář s daty a soubory jsou dostupné z internetu, protože soubor .htaccess nefunguje."
#: templates/installation.php:32
#: templates/installation.php:33
msgid ""
"For information how to properly configure your server, please see the <a "
"href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" "
"target=\"_blank\">documentation</a>."
msgstr "Pro informace jak správně nastavit váš server se podívejte do <a href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" target=\"_blank\">dokumentace</a>."
#: templates/installation.php:36
#: templates/installation.php:37
msgid "Create an <strong>admin account</strong>"
msgstr "Vytvořit <strong>účet správce</strong>"
#: templates/installation.php:52
#: templates/installation.php:55
msgid "Advanced"
msgstr "Pokročilé"
#: templates/installation.php:54
#: templates/installation.php:57
msgid "Data folder"
msgstr "Složka s daty"
#: templates/installation.php:61
#: templates/installation.php:66
msgid "Configure the database"
msgstr "Nastavit databázi"
#: templates/installation.php:66 templates/installation.php:77
#: templates/installation.php:87 templates/installation.php:97
#: templates/installation.php:71 templates/installation.php:83
#: templates/installation.php:94 templates/installation.php:105
#: templates/installation.php:117
msgid "will be used"
msgstr "bude použito"
#: templates/installation.php:109
#: templates/installation.php:129
msgid "Database user"
msgstr "Uživatel databáze"
#: templates/installation.php:113
#: templates/installation.php:134
msgid "Database password"
msgstr "Heslo databáze"
#: templates/installation.php:117
#: templates/installation.php:139
msgid "Database name"
msgstr "Název databáze"
#: templates/installation.php:125
#: templates/installation.php:149
msgid "Database tablespace"
msgstr "Tabulkový prostor databáze"
#: templates/installation.php:131
#: templates/installation.php:156
msgid "Database host"
msgstr "Hostitel databáze"
#: templates/installation.php:136
#: templates/installation.php:162
msgid "Finish setup"
msgstr "Dokončit nastavení"
#: templates/layout.guest.php:33
#: templates/layout.guest.php:40
msgid "web services under your control"
msgstr "webové služby pod Vaší kontrolou"
#: templates/layout.user.php:48
#: templates/layout.user.php:58
msgid "Log out"
msgstr "Odhlásit se"
@ -573,7 +574,7 @@ msgstr "Ztratili jste své heslo?"
#: templates/login.php:41
msgid "remember"
msgstr "zapamatovat si"
msgstr "zapamatovat"
#: templates/login.php:43
msgid "Log in"

View file

@ -10,8 +10,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-03-05 00:18+0100\n"
"PO-Revision-Date: 2013-03-04 07:30+0000\n"
"POT-Creation-Date: 2013-03-16 22:17+0100\n"
"PO-Revision-Date: 2013-03-14 23:20+0000\n"
"Last-Translator: Tomáš Chvátal <tomas.chvatal@gmail.com>\n"
"Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n"
"MIME-Version: 1.0\n"
@ -77,7 +77,7 @@ msgstr "Nedostatek dostupného úložného prostoru"
msgid "Invalid directory."
msgstr "Neplatný adresář"
#: appinfo/app.php:10
#: appinfo/app.php:12
msgid "Files"
msgstr "Soubory"
@ -93,8 +93,8 @@ msgstr "Smazat"
msgid "Rename"
msgstr "Přejmenovat"
#: js/filelist.js:49 js/filelist.js:52 js/files.js:292 js/files.js:408
#: js/files.js:439
#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409
#: js/files.js:440
msgid "Pending"
msgstr "Čekající"
@ -148,74 +148,74 @@ msgstr "Vaše úložiště je plné, nelze aktualizovat ani synchronizovat soubo
msgid "Your storage is almost full ({usedSpacePercent}%)"
msgstr "Vaše úložiště je téměř plné ({usedSpacePercent}%)"
#: js/files.js:225
#: js/files.js:226
msgid ""
"Your download is being prepared. This might take some time if the files are "
"big."
msgstr "Vaše soubory ke stažení se připravují. Pokud jsou velké může to chvíli trvat."
#: js/files.js:262
#: js/files.js:263
msgid "Unable to upload your file as it is a directory or has 0 bytes"
msgstr "Nelze odeslat Váš soubor, protože je to adresář nebo má velikost 0 bajtů"
#: js/files.js:262
#: js/files.js:263
msgid "Upload Error"
msgstr "Chyba odesílání"
#: js/files.js:273
#: js/files.js:274
msgid "Close"
msgstr "Zavřít"
#: js/files.js:312
#: js/files.js:313
msgid "1 file uploading"
msgstr "odesílá se 1 soubor"
#: js/files.js:315 js/files.js:370 js/files.js:385
#: js/files.js:316 js/files.js:371 js/files.js:386
msgid "{count} files uploading"
msgstr "odesílám {count} souborů"
#: js/files.js:388 js/files.js:423
#: js/files.js:389 js/files.js:424
msgid "Upload cancelled."
msgstr "Odesílání zrušeno."
#: js/files.js:497
#: js/files.js:498
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr "Probíhá odesílání souboru. Opuštění stránky vyústí ve zrušení nahrávání."
#: js/files.js:570
#: js/files.js:571
msgid "URL cannot be empty."
msgstr "URL nemůže být prázdná"
#: js/files.js:575
#: js/files.js:576
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:953 templates/index.php:68
#: js/files.js:954 templates/index.php:68
msgid "Name"
msgstr "Název"
#: js/files.js:954 templates/index.php:79
#: js/files.js:955 templates/index.php:79
msgid "Size"
msgstr "Velikost"
#: js/files.js:955 templates/index.php:81
#: js/files.js:956 templates/index.php:81
msgid "Modified"
msgstr "Změněno"
#: js/files.js:974
#: js/files.js:975
msgid "1 folder"
msgstr "1 složka"
#: js/files.js:976
#: js/files.js:977
msgid "{count} folders"
msgstr "{count} složky"
#: js/files.js:984
#: js/files.js:985
msgid "1 file"
msgstr "1 soubor"
#: js/files.js:986
#: js/files.js:987
msgid "{count} files"
msgstr "{count} soubory"

View file

@ -17,8 +17,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-03-05 00:18+0100\n"
"PO-Revision-Date: 2013-03-04 18:10+0000\n"
"POT-Creation-Date: 2013-03-16 22:17+0100\n"
"PO-Revision-Date: 2013-03-14 23:20+0000\n"
"Last-Translator: cronner <cronner@gmail.com>\n"
"Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n"
"MIME-Version: 1.0\n"
@ -84,7 +84,7 @@ msgstr "Der er ikke nok plads til rådlighed"
msgid "Invalid directory."
msgstr "Ugyldig mappe."
#: appinfo/app.php:10
#: appinfo/app.php:12
msgid "Files"
msgstr "Filer"
@ -100,8 +100,8 @@ msgstr "Slet"
msgid "Rename"
msgstr "Omdøb"
#: js/filelist.js:49 js/filelist.js:52 js/files.js:292 js/files.js:408
#: js/files.js:439
#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409
#: js/files.js:440
msgid "Pending"
msgstr "Afventer"
@ -155,74 +155,74 @@ msgstr "Din opbevaringsplads er fyldt op, filer kan ikke opdateres eller synkron
msgid "Your storage is almost full ({usedSpacePercent}%)"
msgstr "Din opbevaringsplads er næsten fyldt op ({usedSpacePercent}%)"
#: js/files.js:225
#: js/files.js:226
msgid ""
"Your download is being prepared. This might take some time if the files are "
"big."
msgstr "Dit download forberedes. Dette kan tage lidt tid ved større filer."
#: js/files.js:262
#: js/files.js:263
msgid "Unable to upload your file as it is a directory or has 0 bytes"
msgstr "Kunne ikke uploade din fil, da det enten er en mappe eller er tom"
#: js/files.js:262
#: js/files.js:263
msgid "Upload Error"
msgstr "Fejl ved upload"
#: js/files.js:273
#: js/files.js:274
msgid "Close"
msgstr "Luk"
#: js/files.js:312
#: js/files.js:313
msgid "1 file uploading"
msgstr "1 fil uploades"
#: js/files.js:315 js/files.js:370 js/files.js:385
#: js/files.js:316 js/files.js:371 js/files.js:386
msgid "{count} files uploading"
msgstr "{count} filer uploades"
#: js/files.js:388 js/files.js:423
#: js/files.js:389 js/files.js:424
msgid "Upload cancelled."
msgstr "Upload afbrudt."
#: js/files.js:497
#: js/files.js:498
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr "Fil upload kører. Hvis du forlader siden nu, vil uploadet blive annuleret."
#: js/files.js:570
#: js/files.js:571
msgid "URL cannot be empty."
msgstr "URLen kan ikke være tom."
#: js/files.js:575
#: js/files.js:576
msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud"
msgstr "Ugyldigt mappenavn. Brug af \"Shared\" er forbeholdt Owncloud"
#: js/files.js:953 templates/index.php:68
#: js/files.js:954 templates/index.php:68
msgid "Name"
msgstr "Navn"
#: js/files.js:954 templates/index.php:79
#: js/files.js:955 templates/index.php:79
msgid "Size"
msgstr "Størrelse"
#: js/files.js:955 templates/index.php:81
#: js/files.js:956 templates/index.php:81
msgid "Modified"
msgstr "Ændret"
#: js/files.js:974
#: js/files.js:975
msgid "1 folder"
msgstr "1 mappe"
#: js/files.js:976
#: js/files.js:977
msgid "{count} folders"
msgstr "{count} mapper"
#: js/files.js:984
#: js/files.js:985
msgid "1 file"
msgstr "1 fil"
#: js/files.js:986
#: js/files.js:987
msgid "{count} files"
msgstr "{count} filer"

View file

@ -28,9 +28,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-03-05 00:18+0100\n"
"PO-Revision-Date: 2013-03-04 13:20+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"POT-Creation-Date: 2013-03-16 22:17+0100\n"
"PO-Revision-Date: 2013-03-14 23:20+0000\n"
"Last-Translator: Marcel Kühlhorn <susefan93@gmx.de>\n"
"Language-Team: German <translations@owncloud.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -95,7 +95,7 @@ msgstr "Nicht genug Speicherplatz verfügbar"
msgid "Invalid directory."
msgstr "Ungültiges Verzeichnis."
#: appinfo/app.php:10
#: appinfo/app.php:12
msgid "Files"
msgstr "Dateien"
@ -111,8 +111,8 @@ msgstr "Löschen"
msgid "Rename"
msgstr "Umbenennen"
#: js/filelist.js:49 js/filelist.js:52 js/files.js:292 js/files.js:408
#: js/files.js:439
#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409
#: js/files.js:440
msgid "Pending"
msgstr "Ausstehend"
@ -166,74 +166,74 @@ msgstr "Ihr Speicherplatz ist voll, Dateien können nicht mehr aktualisiert oder
msgid "Your storage is almost full ({usedSpacePercent}%)"
msgstr "Ihr Speicherplatz ist fast aufgebraucht ({usedSpacePercent}%)"
#: js/files.js:225
#: js/files.js:226
msgid ""
"Your download is being prepared. This might take some time if the files are "
"big."
msgstr "Dein Download wird vorbereitet. Dies kann bei größeren Dateien etwas dauern."
#: js/files.js:262
#: js/files.js:263
msgid "Unable to upload your file as it is a directory or has 0 bytes"
msgstr "Deine Datei kann nicht hochgeladen werden, da sie entweder ein Verzeichnis oder 0 Bytes groß ist."
#: js/files.js:262
#: js/files.js:263
msgid "Upload Error"
msgstr "Fehler beim Upload"
#: js/files.js:273
#: js/files.js:274
msgid "Close"
msgstr "Schließen"
#: js/files.js:312
#: js/files.js:313
msgid "1 file uploading"
msgstr "Eine Datei wird hoch geladen"
#: js/files.js:315 js/files.js:370 js/files.js:385
#: js/files.js:316 js/files.js:371 js/files.js:386
msgid "{count} files uploading"
msgstr "{count} Dateien werden hochgeladen"
#: js/files.js:388 js/files.js:423
#: js/files.js:389 js/files.js:424
msgid "Upload cancelled."
msgstr "Upload abgebrochen."
#: js/files.js:497
#: js/files.js:498
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr "Dateiupload läuft. Wenn Du die Seite jetzt verlässt, wird der Upload abgebrochen."
#: js/files.js:570
#: js/files.js:571
msgid "URL cannot be empty."
msgstr "Die URL darf nicht leer sein."
#: js/files.js:575
#: js/files.js:576
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:953 templates/index.php:68
#: js/files.js:954 templates/index.php:68
msgid "Name"
msgstr "Name"
#: js/files.js:954 templates/index.php:79
#: js/files.js:955 templates/index.php:79
msgid "Size"
msgstr "Größe"
#: js/files.js:955 templates/index.php:81
#: js/files.js:956 templates/index.php:81
msgid "Modified"
msgstr "Bearbeitet"
#: js/files.js:974
#: js/files.js:975
msgid "1 folder"
msgstr "1 Ordner"
#: js/files.js:976
#: js/files.js:977
msgid "{count} folders"
msgstr "{count} Ordner"
#: js/files.js:984
#: js/files.js:985
msgid "1 file"
msgstr "1 Datei"
#: js/files.js:986
#: js/files.js:987
msgid "{count} files"
msgstr "{count} Dateien"

View file

@ -11,9 +11,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-03-09 00:05+0100\n"
"PO-Revision-Date: 2013-03-07 23:40+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"POT-Creation-Date: 2013-03-15 00:05+0100\n"
"PO-Revision-Date: 2013-03-14 15:30+0000\n"
"Last-Translator: Marcel Kühlhorn <susefan93@gmx.de>\n"
"Language-Team: German <translations@owncloud.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -41,7 +41,7 @@ msgstr "Datei dauerhaft löschen"
#: js/trash.js:121
msgid "Delete permanently"
msgstr "Permanent löschen"
msgstr "Endgültig löschen"
#: js/trash.js:174 templates/index.php:17
msgid "Name"

View file

@ -21,14 +21,15 @@
# <thomas.mueller@tmit.eu>, 2012.
# <transifex.3.mensaje@spamgourmet.com>, 2012.
# Tristan <blobbyjj@ymail.com>, 2013.
# <uu.kabum@gmail.com>, 2013.
# <wachhund@wachhund.to>, 2013.
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-03-01 00:05+0100\n"
"PO-Revision-Date: 2013-02-28 08:40+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"POT-Creation-Date: 2013-03-15 00:05+0100\n"
"PO-Revision-Date: 2013-03-14 14:41+0000\n"
"Last-Translator: kabum <uu.kabum@gmail.com>\n"
"Language-Team: German <translations@owncloud.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -232,7 +233,7 @@ msgid ""
"This ownCloud server can't set system locale to %s. This means that there "
"might be problems with certain characters in file names. We strongly suggest"
" to install the required packages on your system to support %s."
msgstr "Dieser ownCloud Server kann die Ländereinstellung nicht auf %s ändern. Dies bedeutet dass es Probleme mit bestimmten Zeichen in Dateinamen geben könnte. Wir empfehlen die für %s benötigten Pakete auf ihrem System zu installieren."
msgstr "Dieser ownCloud Server kann die Ländereinstellung nicht auf %s ändern. Dies bedeutet, dass es Probleme mit bestimmten Zeichen in Dateinamen geben könnte. Wir empfehlen die für %s benötigten Pakete auf ihrem System zu installieren."
#: templates/admin.php:75
msgid "Internet connection not working"

View file

@ -33,9 +33,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-03-06 00:07+0100\n"
"PO-Revision-Date: 2013-03-05 21:30+0000\n"
"Last-Translator: a.tangemann <a.tangemann@web.de>\n"
"POT-Creation-Date: 2013-03-16 22:17+0100\n"
"PO-Revision-Date: 2013-03-14 23:20+0000\n"
"Last-Translator: Marcel Kühlhorn <susefan93@gmx.de>\n"
"Language-Team: German (Germany) <translations@owncloud.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -100,7 +100,7 @@ msgstr "Nicht genug Speicher vorhanden."
msgid "Invalid directory."
msgstr "Ungültiges Verzeichnis."
#: appinfo/app.php:10
#: appinfo/app.php:12
msgid "Files"
msgstr "Dateien"
@ -116,8 +116,8 @@ msgstr "Löschen"
msgid "Rename"
msgstr "Umbenennen"
#: js/filelist.js:49 js/filelist.js:52 js/files.js:292 js/files.js:408
#: js/files.js:439
#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409
#: js/files.js:440
msgid "Pending"
msgstr "Ausstehend"
@ -171,74 +171,74 @@ msgstr "Ihr Speicher ist voll. Daher können keine Dateien mehr aktualisiert ode
msgid "Your storage is almost full ({usedSpacePercent}%)"
msgstr "Ihr Speicher ist fast voll ({usedSpacePercent}%)"
#: js/files.js:225
#: js/files.js:226
msgid ""
"Your download is being prepared. This might take some time if the files are "
"big."
msgstr "Ihr Download wird vorbereitet. Dies kann bei größeren Dateien einen Moment dauern."
#: js/files.js:262
#: js/files.js:263
msgid "Unable to upload your file as it is a directory or has 0 bytes"
msgstr "Ihre Datei kann nicht hochgeladen werden, da sie entweder ein Verzeichnis oder 0 Bytes groß ist."
#: js/files.js:262
#: js/files.js:263
msgid "Upload Error"
msgstr "Fehler beim Upload"
#: js/files.js:273
#: js/files.js:274
msgid "Close"
msgstr "Schließen"
#: js/files.js:312
#: js/files.js:313
msgid "1 file uploading"
msgstr "1 Datei wird hochgeladen"
#: js/files.js:315 js/files.js:370 js/files.js:385
#: js/files.js:316 js/files.js:371 js/files.js:386
msgid "{count} files uploading"
msgstr "{count} Dateien wurden hochgeladen"
#: js/files.js:388 js/files.js:423
#: js/files.js:389 js/files.js:424
msgid "Upload cancelled."
msgstr "Upload abgebrochen."
#: js/files.js:497
#: js/files.js:498
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr "Der Dateiupload läuft. Wenn Sie die Seite jetzt verlassen, wird der Upload abgebrochen."
#: js/files.js:570
#: js/files.js:571
msgid "URL cannot be empty."
msgstr "Die URL darf nicht leer sein."
#: js/files.js:575
#: js/files.js:576
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:953 templates/index.php:68
#: js/files.js:954 templates/index.php:68
msgid "Name"
msgstr "Name"
#: js/files.js:954 templates/index.php:79
#: js/files.js:955 templates/index.php:79
msgid "Size"
msgstr "Größe"
#: js/files.js:955 templates/index.php:81
#: js/files.js:956 templates/index.php:81
msgid "Modified"
msgstr "Bearbeitet"
#: js/files.js:974
#: js/files.js:975
msgid "1 folder"
msgstr "1 Ordner"
#: js/files.js:976
#: js/files.js:977
msgid "{count} folders"
msgstr "{count} Ordner"
#: js/files.js:984
#: js/files.js:985
msgid "1 file"
msgstr "1 Datei"
#: js/files.js:986
#: js/files.js:987
msgid "{count} files"
msgstr "{count} Dateien"

View file

@ -14,9 +14,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-03-09 00:05+0100\n"
"PO-Revision-Date: 2013-03-07 23:40+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"POT-Creation-Date: 2013-03-15 00:05+0100\n"
"PO-Revision-Date: 2013-03-14 15:20+0000\n"
"Last-Translator: Marcel Kühlhorn <susefan93@gmx.de>\n"
"Language-Team: German (Germany) <translations@owncloud.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -84,4 +84,4 @@ msgstr "Löschen"
#: templates/part.breadcrumb.php:9
msgid "Deleted Files"
msgstr "gelöschte Dateien"
msgstr "Gelöschte Dateien"

View file

@ -31,8 +31,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-03-06 00:07+0100\n"
"PO-Revision-Date: 2013-03-05 21:30+0000\n"
"POT-Creation-Date: 2013-03-15 00:05+0100\n"
"PO-Revision-Date: 2013-03-14 14:41+0000\n"
"Last-Translator: a.tangemann <a.tangemann@web.de>\n"
"Language-Team: German (Germany) <translations@owncloud.org>\n"
"MIME-Version: 1.0\n"

View file

@ -3,6 +3,7 @@
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
# Axilleas Pi <axilleas@archlinux.gr>, 2013.
# Dimitris M. <monopatis@gmail.com>, 2012-2013.
# Efstathios Iosifidis <diamond_gr@freemail.gr>, 2012-2013.
# Efstathios Iosifidis <iefstathios@gmail.com>, 2013.
@ -15,9 +16,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-03-04 00:06+0100\n"
"PO-Revision-Date: 2013-03-03 23:06+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"POT-Creation-Date: 2013-03-16 22:17+0100\n"
"PO-Revision-Date: 2013-03-15 06:40+0000\n"
"Last-Translator: axil Pι <axilleas@archlinux.gr>\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"
@ -82,7 +83,7 @@ msgstr "Μη επαρκής διαθέσιμος αποθηκευτικός χώ
msgid "Invalid directory."
msgstr "Μη έγκυρος φάκελος."
#: appinfo/app.php:10
#: appinfo/app.php:12
msgid "Files"
msgstr "Αρχεία"
@ -98,8 +99,8 @@ msgstr "Διαγραφή"
msgid "Rename"
msgstr "Μετονομασία"
#: js/filelist.js:49 js/filelist.js:52 js/files.js:292 js/files.js:408
#: js/files.js:439
#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409
#: js/files.js:440
msgid "Pending"
msgstr "Εκκρεμεί"
@ -153,74 +154,74 @@ msgstr "Ο αποθηκευτικός σας χώρος είναι γεμάτο
msgid "Your storage is almost full ({usedSpacePercent}%)"
msgstr "Ο αποθηκευτικός χώρος είναι σχεδόν γεμάτος ({usedSpacePercent}%)"
#: js/files.js:225
#: js/files.js:226
msgid ""
"Your download is being prepared. This might take some time if the files are "
"big."
msgstr "Η λήψη προετοιμάζεται. Αυτό μπορεί να πάρει ώρα εάν τα αρχεία έχουν μεγάλο μέγεθος."
#: js/files.js:262
#: js/files.js:263
msgid "Unable to upload your file as it is a directory or has 0 bytes"
msgstr "Αδυναμία στην αποστολή του αρχείου σας αφού είναι φάκελος ή έχει 0 bytes"
#: js/files.js:262
#: js/files.js:263
msgid "Upload Error"
msgstr "Σφάλμα Αποστολής"
#: js/files.js:273
#: js/files.js:274
msgid "Close"
msgstr "Κλείσιμο"
#: js/files.js:312
#: js/files.js:313
msgid "1 file uploading"
msgstr "1 αρχείο ανεβαίνει"
#: js/files.js:315 js/files.js:370 js/files.js:385
#: js/files.js:316 js/files.js:371 js/files.js:386
msgid "{count} files uploading"
msgstr "{count} αρχεία ανεβαίνουν"
#: js/files.js:388 js/files.js:423
#: js/files.js:389 js/files.js:424
msgid "Upload cancelled."
msgstr "Η αποστολή ακυρώθηκε."
#: js/files.js:497
#: js/files.js:498
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr "Η αποστολή του αρχείου βρίσκεται σε εξέλιξη. Το κλείσιμο της σελίδας θα ακυρώσει την αποστολή."
#: js/files.js:570
#: js/files.js:571
msgid "URL cannot be empty."
msgstr "Η URL δεν πρέπει να είναι κενή."
#: js/files.js:575
#: js/files.js:576
msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud"
msgstr "Μη έγκυρο όνομα φακέλου. Η χρήση του 'Κοινόχρηστος' χρησιμοποιείται από ο Owncloud"
#: js/files.js:953 templates/index.php:68
#: js/files.js:954 templates/index.php:68
msgid "Name"
msgstr "Όνομα"
#: js/files.js:954 templates/index.php:79
#: js/files.js:955 templates/index.php:79
msgid "Size"
msgstr "Μέγεθος"
#: js/files.js:955 templates/index.php:81
#: js/files.js:956 templates/index.php:81
msgid "Modified"
msgstr "Τροποποιήθηκε"
#: js/files.js:974
#: js/files.js:975
msgid "1 folder"
msgstr "1 φάκελος"
#: js/files.js:976
#: js/files.js:977
msgid "{count} folders"
msgstr "{count} φάκελοι"
#: js/files.js:984
#: js/files.js:985
msgid "1 file"
msgstr "1 αρχείο"
#: js/files.js:986
#: js/files.js:987
msgid "{count} files"
msgstr "{count} αρχεία"
@ -286,7 +287,7 @@ msgstr "Ακύρωση αποστολής"
#: templates/index.php:53
msgid "You dont have write permissions here."
msgstr ""
msgstr "Δεν έχετε δικαιώματα εγγραφής εδώ."
#: templates/index.php:60
msgid "Nothing in here. Upload something!"

View file

@ -10,8 +10,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-03-04 00:06+0100\n"
"PO-Revision-Date: 2013-03-03 23:06+0000\n"
"POT-Creation-Date: 2013-03-16 22:17+0100\n"
"PO-Revision-Date: 2013-03-14 23:20+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n"
"MIME-Version: 1.0\n"
@ -77,7 +77,7 @@ msgstr ""
msgid "Invalid directory."
msgstr "Nevalida dosierujo."
#: appinfo/app.php:10
#: appinfo/app.php:12
msgid "Files"
msgstr "Dosieroj"
@ -93,8 +93,8 @@ msgstr "Forigi"
msgid "Rename"
msgstr "Alinomigi"
#: js/filelist.js:49 js/filelist.js:52 js/files.js:292 js/files.js:408
#: js/files.js:439
#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409
#: js/files.js:440
msgid "Pending"
msgstr "Traktotaj"
@ -148,74 +148,74 @@ msgstr ""
msgid "Your storage is almost full ({usedSpacePercent}%)"
msgstr ""
#: js/files.js:225
#: js/files.js:226
msgid ""
"Your download is being prepared. This might take some time if the files are "
"big."
msgstr "Via elŝuto pretiĝatas. Ĉi tio povas daŭri iom da tempo se la dosieroj grandas."
#: js/files.js:262
#: js/files.js:263
msgid "Unable to upload your file as it is a directory or has 0 bytes"
msgstr "Ne eblis alŝuti vian dosieron ĉar ĝi estas dosierujo aŭ havas 0 duumokojn"
#: js/files.js:262
#: js/files.js:263
msgid "Upload Error"
msgstr "Alŝuta eraro"
#: js/files.js:273
#: js/files.js:274
msgid "Close"
msgstr "Fermi"
#: js/files.js:312
#: js/files.js:313
msgid "1 file uploading"
msgstr "1 dosiero estas alŝutata"
#: js/files.js:315 js/files.js:370 js/files.js:385
#: js/files.js:316 js/files.js:371 js/files.js:386
msgid "{count} files uploading"
msgstr "{count} dosieroj alŝutatas"
#: js/files.js:388 js/files.js:423
#: js/files.js:389 js/files.js:424
msgid "Upload cancelled."
msgstr "La alŝuto nuliĝis."
#: js/files.js:497
#: js/files.js:498
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr "Dosieralŝuto plenumiĝas. Lasi la paĝon nun nuligus la alŝuton."
#: js/files.js:570
#: js/files.js:571
msgid "URL cannot be empty."
msgstr "URL ne povas esti malplena."
#: js/files.js:575
#: js/files.js:576
msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud"
msgstr "Nevalida dosierujnomo. Uzo de “Shared” rezervatas de Owncloud."
#: js/files.js:953 templates/index.php:68
#: js/files.js:954 templates/index.php:68
msgid "Name"
msgstr "Nomo"
#: js/files.js:954 templates/index.php:79
#: js/files.js:955 templates/index.php:79
msgid "Size"
msgstr "Grando"
#: js/files.js:955 templates/index.php:81
#: js/files.js:956 templates/index.php:81
msgid "Modified"
msgstr "Modifita"
#: js/files.js:974
#: js/files.js:975
msgid "1 folder"
msgstr "1 dosierujo"
#: js/files.js:976
#: js/files.js:977
msgid "{count} folders"
msgstr "{count} dosierujoj"
#: js/files.js:984
#: js/files.js:985
msgid "1 file"
msgstr "1 dosiero"
#: js/files.js:986
#: js/files.js:987
msgid "{count} files"
msgstr "{count} dosierujoj"

View file

@ -20,8 +20,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-03-07 00:16+0100\n"
"PO-Revision-Date: 2013-03-06 15:12+0000\n"
"POT-Creation-Date: 2013-03-16 22:17+0100\n"
"PO-Revision-Date: 2013-03-14 23:20+0000\n"
"Last-Translator: xsergiolpx <sergioballesterossolanas@gmail.com>\n"
"Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n"
"MIME-Version: 1.0\n"
@ -87,7 +87,7 @@ msgstr "No hay suficiente espacio disponible"
msgid "Invalid directory."
msgstr "Directorio invalido."
#: appinfo/app.php:10
#: appinfo/app.php:12
msgid "Files"
msgstr "Archivos"
@ -103,8 +103,8 @@ msgstr "Eliminar"
msgid "Rename"
msgstr "Renombrar"
#: js/filelist.js:49 js/filelist.js:52 js/files.js:292 js/files.js:408
#: js/files.js:439
#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409
#: js/files.js:440
msgid "Pending"
msgstr "Pendiente"
@ -158,74 +158,74 @@ msgstr "Su almacenamiento esta lleno, los archivos no pueden ser mas actualizado
msgid "Your storage is almost full ({usedSpacePercent}%)"
msgstr "Su almacenamiento esta lleno en un ({usedSpacePercent}%)"
#: js/files.js:225
#: js/files.js:226
msgid ""
"Your download is being prepared. This might take some time if the files are "
"big."
msgstr "Tu descarga esta siendo preparada. Esto puede tardar algun tiempo si los archivos son muy grandes."
#: js/files.js:262
#: js/files.js:263
msgid "Unable to upload your file as it is a directory or has 0 bytes"
msgstr "No ha sido posible subir tu archivo porque es un directorio o tiene 0 bytes"
#: js/files.js:262
#: js/files.js:263
msgid "Upload Error"
msgstr "Error al subir el archivo"
#: js/files.js:273
#: js/files.js:274
msgid "Close"
msgstr "cerrrar"
#: js/files.js:312
#: js/files.js:313
msgid "1 file uploading"
msgstr "subiendo 1 archivo"
#: js/files.js:315 js/files.js:370 js/files.js:385
#: js/files.js:316 js/files.js:371 js/files.js:386
msgid "{count} files uploading"
msgstr "Subiendo {count} archivos"
#: js/files.js:388 js/files.js:423
#: js/files.js:389 js/files.js:424
msgid "Upload cancelled."
msgstr "Subida cancelada."
#: js/files.js:497
#: js/files.js:498
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr "La subida del archivo está en proceso. Salir de la página ahora cancelará la subida."
#: js/files.js:570
#: js/files.js:571
msgid "URL cannot be empty."
msgstr "La URL no puede estar vacía."
#: js/files.js:575
#: js/files.js:576
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:953 templates/index.php:68
#: js/files.js:954 templates/index.php:68
msgid "Name"
msgstr "Nombre"
#: js/files.js:954 templates/index.php:79
#: js/files.js:955 templates/index.php:79
msgid "Size"
msgstr "Tamaño"
#: js/files.js:955 templates/index.php:81
#: js/files.js:956 templates/index.php:81
msgid "Modified"
msgstr "Modificado"
#: js/files.js:974
#: js/files.js:975
msgid "1 folder"
msgstr "1 carpeta"
#: js/files.js:976
#: js/files.js:977
msgid "{count} folders"
msgstr "{count} carpetas"
#: js/files.js:984
#: js/files.js:985
msgid "1 file"
msgstr "1 archivo"
#: js/files.js:986
#: js/files.js:987
msgid "{count} files"
msgstr "{count} archivos"

View file

@ -15,8 +15,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-03-07 00:16+0100\n"
"PO-Revision-Date: 2013-03-06 21:20+0000\n"
"POT-Creation-Date: 2013-03-18 00:05+0100\n"
"PO-Revision-Date: 2013-03-17 10:50+0000\n"
"Last-Translator: Raul Fernandez Garcia <raulfg3@gmail.com>\n"
"Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n"
"MIME-Version: 1.0\n"
@ -324,7 +324,7 @@ msgstr "E-mail"
#: templates/settings.php:95
msgid "User Home Folder Naming Rule"
msgstr ""
msgstr "Regla para la carpeta Home de usuario"
#: templates/settings.php:95
msgid ""

View file

@ -11,9 +11,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-03-04 00:06+0100\n"
"PO-Revision-Date: 2013-03-03 23:06+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"POT-Creation-Date: 2013-03-16 22:17+0100\n"
"PO-Revision-Date: 2013-03-14 23:20+0000\n"
"Last-Translator: cjtess <claudio.tessone@gmail.com>\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"
@ -78,7 +78,7 @@ msgstr "No hay suficiente capacidad de almacenamiento"
msgid "Invalid directory."
msgstr "Directorio invalido."
#: appinfo/app.php:10
#: appinfo/app.php:12
msgid "Files"
msgstr "Archivos"
@ -94,8 +94,8 @@ msgstr "Borrar"
msgid "Rename"
msgstr "Cambiar nombre"
#: js/filelist.js:49 js/filelist.js:52 js/files.js:292 js/files.js:408
#: js/files.js:439
#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409
#: js/files.js:440
msgid "Pending"
msgstr "Pendiente"
@ -149,74 +149,74 @@ msgstr "El almacenamiento está lleno, los archivos no se pueden seguir actualiz
msgid "Your storage is almost full ({usedSpacePercent}%)"
msgstr "El almacenamiento está casi lleno ({usedSpacePercent}%)"
#: js/files.js:225
#: js/files.js:226
msgid ""
"Your download is being prepared. This might take some time if the files are "
"big."
msgstr "Tu descarga esta siendo preparada. Esto puede tardar algun tiempo si los archivos son muy grandes."
#: js/files.js:262
#: js/files.js:263
msgid "Unable to upload your file as it is a directory or has 0 bytes"
msgstr "No fue posible subir el archivo porque es un directorio o porque su tamaño es 0 bytes"
#: js/files.js:262
#: js/files.js:263
msgid "Upload Error"
msgstr "Error al subir el archivo"
#: js/files.js:273
#: js/files.js:274
msgid "Close"
msgstr "Cerrar"
#: js/files.js:312
#: js/files.js:313
msgid "1 file uploading"
msgstr "Subiendo 1 archivo"
#: js/files.js:315 js/files.js:370 js/files.js:385
#: js/files.js:316 js/files.js:371 js/files.js:386
msgid "{count} files uploading"
msgstr "Subiendo {count} archivos"
#: js/files.js:388 js/files.js:423
#: js/files.js:389 js/files.js:424
msgid "Upload cancelled."
msgstr "La subida fue cancelada"
#: js/files.js:497
#: js/files.js:498
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr "La subida del archivo está en proceso. Si salís de la página ahora, la subida se cancelará."
#: js/files.js:570
#: js/files.js:571
msgid "URL cannot be empty."
msgstr "La URL no puede estar vacía"
#: js/files.js:575
#: js/files.js:576
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:953 templates/index.php:68
#: js/files.js:954 templates/index.php:68
msgid "Name"
msgstr "Nombre"
#: js/files.js:954 templates/index.php:79
#: js/files.js:955 templates/index.php:79
msgid "Size"
msgstr "Tamaño"
#: js/files.js:955 templates/index.php:81
#: js/files.js:956 templates/index.php:81
msgid "Modified"
msgstr "Modificado"
#: js/files.js:974
#: js/files.js:975
msgid "1 folder"
msgstr "1 directorio"
#: js/files.js:976
#: js/files.js:977
msgid "{count} folders"
msgstr "{count} directorios"
#: js/files.js:984
#: js/files.js:985
msgid "1 file"
msgstr "1 archivo"
#: js/files.js:986
#: js/files.js:987
msgid "{count} files"
msgstr "{count} archivos"
@ -282,7 +282,7 @@ msgstr "Cancelar subida"
#: templates/index.php:53
msgid "You dont have write permissions here."
msgstr ""
msgstr "No tenés permisos de escritura acá."
#: templates/index.php:60
msgid "Nothing in here. Upload something!"

View file

@ -10,9 +10,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-03-02 00:03+0100\n"
"PO-Revision-Date: 2013-03-01 23:04+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"POT-Creation-Date: 2013-03-14 00:05+0100\n"
"PO-Revision-Date: 2013-03-13 10:01+0000\n"
"Last-Translator: cjtess <claudio.tessone@gmail.com>\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"
@ -89,248 +89,248 @@ msgstr "<b>Atención:</b> El módulo PHP LDAP no está instalado, este elemento
msgid "Server configuration"
msgstr "Configuración del Servidor"
#: templates/settings.php:18
#: templates/settings.php:31
msgid "Add Server Configuration"
msgstr "Añadir Configuración del Servidor"
#: templates/settings.php:23
#: templates/settings.php:36
msgid "Host"
msgstr "Servidor"
#: templates/settings.php:25
#: templates/settings.php:38
msgid ""
"You can omit the protocol, except you require SSL. Then start with ldaps://"
msgstr "Podés omitir el protocolo, excepto si SSL es requerido. En ese caso, empezá con ldaps://"
#: templates/settings.php:26
#: templates/settings.php:39
msgid "Base DN"
msgstr "DN base"
#: templates/settings.php:27
#: templates/settings.php:40
msgid "One Base DN per line"
msgstr "Una DN base por línea"
#: templates/settings.php:28
#: templates/settings.php:41
msgid "You can specify Base DN for users and groups in the Advanced tab"
msgstr "Podés especificar el DN base para usuarios y grupos en la pestaña \"Avanzado\""
#: templates/settings.php:30
#: templates/settings.php:43
msgid "User DN"
msgstr "DN usuario"
#: templates/settings.php:32
#: templates/settings.php:45
msgid ""
"The DN of the client user with which the bind shall be done, e.g. "
"uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password "
"empty."
msgstr "El DN del usuario cliente con el que se hará la asociación, p.ej. uid=agente,dc=ejemplo,dc=com. Para acceso anónimo, dejá DN y contraseña vacíos."
#: templates/settings.php:33
#: templates/settings.php:46
msgid "Password"
msgstr "Contraseña"
#: templates/settings.php:36
#: templates/settings.php:49
msgid "For anonymous access, leave DN and Password empty."
msgstr "Para acceso anónimo, dejá DN y contraseña vacíos."
#: templates/settings.php:37
#: templates/settings.php:50
msgid "User Login Filter"
msgstr "Filtro de inicio de sesión de usuario"
#: templates/settings.php:40
#: templates/settings.php:53
#, php-format
msgid ""
"Defines the filter to apply, when login is attempted. %%uid replaces the "
"username in the login action."
msgstr "Define el filtro a aplicar cuando se ha realizado un login. %%uid remplazará el nombre de usuario en el proceso de inicio de sesión."
#: templates/settings.php:41
#: templates/settings.php:54
#, php-format
msgid "use %%uid placeholder, e.g. \"uid=%%uid\""
msgstr "usar %%uid como plantilla, p. ej.: \"uid=%%uid\""
#: templates/settings.php:42
#: templates/settings.php:55
msgid "User List Filter"
msgstr "Lista de filtros de usuario"
#: templates/settings.php:45
#: templates/settings.php:58
msgid "Defines the filter to apply, when retrieving users."
msgstr "Define el filtro a aplicar, cuando se obtienen usuarios."
#: templates/settings.php:46
#: templates/settings.php:59
msgid "without any placeholder, e.g. \"objectClass=person\"."
msgstr "Sin plantilla, p. ej.: \"objectClass=person\"."
#: templates/settings.php:47
#: templates/settings.php:60
msgid "Group Filter"
msgstr "Filtro de grupo"
#: templates/settings.php:50
#: templates/settings.php:63
msgid "Defines the filter to apply, when retrieving groups."
msgstr "Define el filtro a aplicar cuando se obtienen grupos."
#: templates/settings.php:51
#: templates/settings.php:64
msgid "without any placeholder, e.g. \"objectClass=posixGroup\"."
msgstr "Sin ninguna plantilla, p. ej.: \"objectClass=posixGroup\"."
#: templates/settings.php:55
#: templates/settings.php:68
msgid "Connection Settings"
msgstr "Configuración de Conección"
#: templates/settings.php:57
#: templates/settings.php:70
msgid "Configuration Active"
msgstr "Configuración activa"
#: templates/settings.php:57
#: templates/settings.php:70
msgid "When unchecked, this configuration will be skipped."
msgstr "Si no está seleccionada, esta configuración será omitida."
#: templates/settings.php:58
#: templates/settings.php:71
msgid "Port"
msgstr "Puerto"
#: templates/settings.php:59
#: templates/settings.php:72
msgid "Backup (Replica) Host"
msgstr "Host para copia de seguridad (réplica)"
#: templates/settings.php:59
#: templates/settings.php:72
msgid ""
"Give an optional backup host. It must be a replica of the main LDAP/AD "
"server."
msgstr "Dar un servidor de copia de seguridad opcional. Debe ser una réplica del servidor principal LDAP/AD."
#: templates/settings.php:60
#: templates/settings.php:73
msgid "Backup (Replica) Port"
msgstr "Puerto para copia de seguridad (réplica)"
#: templates/settings.php:61
#: templates/settings.php:74
msgid "Disable Main Server"
msgstr "Deshabilitar el Servidor Principal"
#: templates/settings.php:61
#: templates/settings.php:74
msgid "When switched on, ownCloud will only connect to the replica server."
msgstr "Al comenzar, ownCloud se conectará únicamente al servidor réplica"
#: templates/settings.php:62
#: templates/settings.php:75
msgid "Use TLS"
msgstr "Usar TLS"
#: templates/settings.php:62
#: templates/settings.php:75
msgid "Do not use it additionally for LDAPS connections, it will fail."
msgstr "No usar adicionalmente para conexiones LDAPS, las mismas fallarán"
#: templates/settings.php:63
#: templates/settings.php:76
msgid "Case insensitve LDAP server (Windows)"
msgstr "Servidor de LDAP sensible a mayúsculas/minúsculas (Windows)"
#: templates/settings.php:64
#: templates/settings.php:77
msgid "Turn off SSL certificate validation."
msgstr "Desactivar la validación por certificado SSL."
#: templates/settings.php:64
#: templates/settings.php:77
msgid ""
"If connection only works with this option, import the LDAP server's SSL "
"certificate in your ownCloud server."
msgstr "Si la conexión sólo funciona con esta opción, importá el certificado SSL del servidor LDAP en tu servidor ownCloud."
#: templates/settings.php:64
#: templates/settings.php:77
msgid "Not recommended, use for testing only."
msgstr "No recomendado, sólo para pruebas."
#: templates/settings.php:65
#: templates/settings.php:78
msgid "Cache Time-To-Live"
msgstr ""
msgstr "Tiempo de vida del caché"
#: templates/settings.php:65
#: templates/settings.php:78
msgid "in seconds. A change empties the cache."
msgstr "en segundos. Cambiarlo vacía la cache."
#: templates/settings.php:67
#: templates/settings.php:80
msgid "Directory Settings"
msgstr "Configuración de Directorio"
#: templates/settings.php:69
#: templates/settings.php:82
msgid "User Display Name Field"
msgstr "Campo de nombre de usuario a mostrar"
#: templates/settings.php:69
#: templates/settings.php:82
msgid "The LDAP attribute to use to generate the user`s ownCloud name."
msgstr "El atributo LDAP a usar para generar el nombre de usuario de ownCloud."
#: templates/settings.php:70
#: templates/settings.php:83
msgid "Base User Tree"
msgstr "Árbol base de usuario"
#: templates/settings.php:70
#: templates/settings.php:83
msgid "One User Base DN per line"
msgstr "Una DN base de usuario por línea"
#: templates/settings.php:71
#: templates/settings.php:84
msgid "User Search Attributes"
msgstr "Atributos de la búsqueda de usuario"
#: templates/settings.php:71 templates/settings.php:74
#: templates/settings.php:84 templates/settings.php:87
msgid "Optional; one attribute per line"
msgstr "Opcional; un atributo por linea"
#: templates/settings.php:72
#: templates/settings.php:85
msgid "Group Display Name Field"
msgstr "Campo de nombre de grupo a mostrar"
#: templates/settings.php:72
#: templates/settings.php:85
msgid "The LDAP attribute to use to generate the groups`s ownCloud name."
msgstr "El atributo LDAP a usar para generar el nombre de los grupos de ownCloud."
#: templates/settings.php:73
#: templates/settings.php:86
msgid "Base Group Tree"
msgstr "Árbol base de grupo"
#: templates/settings.php:73
#: templates/settings.php:86
msgid "One Group Base DN per line"
msgstr "Una DN base de grupo por línea"
#: templates/settings.php:74
#: templates/settings.php:87
msgid "Group Search Attributes"
msgstr "Atributos de búsqueda de grupo"
#: templates/settings.php:75
#: templates/settings.php:88
msgid "Group-Member association"
msgstr "Asociación Grupo-Miembro"
#: templates/settings.php:77
#: templates/settings.php:90
msgid "Special Attributes"
msgstr "Atributos Especiales"
#: templates/settings.php:79
#: templates/settings.php:92
msgid "Quota Field"
msgstr ""
msgstr "Campo de cuota"
#: templates/settings.php:80
#: templates/settings.php:93
msgid "Quota Default"
msgstr ""
msgstr "Cuota por defecto"
#: templates/settings.php:80
#: templates/settings.php:93
msgid "in bytes"
msgstr "en bytes"
#: templates/settings.php:81
#: templates/settings.php:94
msgid "Email Field"
msgstr ""
msgstr "Campo de e-mail"
#: templates/settings.php:82
#: templates/settings.php:95
msgid "User Home Folder Naming Rule"
msgstr ""
msgstr "Regla de nombre de los directorios de usuario"
#: templates/settings.php:82
#: templates/settings.php:95
msgid ""
"Leave empty for user name (default). Otherwise, specify an LDAP/AD "
"attribute."
msgstr "Vacío para el nombre de usuario (por defecto). En otro caso, especificá un atributo LDAP/AD."
#: templates/settings.php:86
#: templates/settings.php:99
msgid "Test Configuration"
msgstr ""
msgstr "Probar configuración"
#: templates/settings.php:86
#: templates/settings.php:99
msgid "Help"
msgstr "Ayuda"

View file

@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-03-04 00:06+0100\n"
"PO-Revision-Date: 2013-03-03 23:06+0000\n"
"POT-Creation-Date: 2013-03-16 22:17+0100\n"
"PO-Revision-Date: 2013-03-14 23:20+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n"
"MIME-Version: 1.0\n"
@ -76,7 +76,7 @@ msgstr "Saadaval pole piisavalt ruumi"
msgid "Invalid directory."
msgstr "Vigane kaust."
#: appinfo/app.php:10
#: appinfo/app.php:12
msgid "Files"
msgstr "Failid"
@ -92,8 +92,8 @@ msgstr "Kustuta"
msgid "Rename"
msgstr "ümber"
#: js/filelist.js:49 js/filelist.js:52 js/files.js:292 js/files.js:408
#: js/files.js:439
#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409
#: js/files.js:440
msgid "Pending"
msgstr "Ootel"
@ -147,74 +147,74 @@ msgstr ""
msgid "Your storage is almost full ({usedSpacePercent}%)"
msgstr ""
#: js/files.js:225
#: js/files.js:226
msgid ""
"Your download is being prepared. This might take some time if the files are "
"big."
msgstr ""
#: js/files.js:262
#: js/files.js:263
msgid "Unable to upload your file as it is a directory or has 0 bytes"
msgstr "Sinu faili üleslaadimine ebaõnnestus, kuna see on kaust või selle suurus on 0 baiti"
#: js/files.js:262
#: js/files.js:263
msgid "Upload Error"
msgstr "Üleslaadimise viga"
#: js/files.js:273
#: js/files.js:274
msgid "Close"
msgstr "Sulge"
#: js/files.js:312
#: js/files.js:313
msgid "1 file uploading"
msgstr "1 faili üleslaadimisel"
#: js/files.js:315 js/files.js:370 js/files.js:385
#: js/files.js:316 js/files.js:371 js/files.js:386
msgid "{count} files uploading"
msgstr "{count} faili üleslaadimist"
#: js/files.js:388 js/files.js:423
#: js/files.js:389 js/files.js:424
msgid "Upload cancelled."
msgstr "Üleslaadimine tühistati."
#: js/files.js:497
#: js/files.js:498
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr "Faili üleslaadimine on töös. Lehelt lahkumine katkestab selle üleslaadimise."
#: js/files.js:570
#: js/files.js:571
msgid "URL cannot be empty."
msgstr "URL ei saa olla tühi."
#: js/files.js:575
#: js/files.js:576
msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud"
msgstr ""
#: js/files.js:953 templates/index.php:68
#: js/files.js:954 templates/index.php:68
msgid "Name"
msgstr "Nimi"
#: js/files.js:954 templates/index.php:79
#: js/files.js:955 templates/index.php:79
msgid "Size"
msgstr "Suurus"
#: js/files.js:955 templates/index.php:81
#: js/files.js:956 templates/index.php:81
msgid "Modified"
msgstr "Muudetud"
#: js/files.js:974
#: js/files.js:975
msgid "1 folder"
msgstr "1 kaust"
#: js/files.js:976
#: js/files.js:977
msgid "{count} folders"
msgstr "{count} kausta"
#: js/files.js:984
#: js/files.js:985
msgid "1 file"
msgstr "1 fail"
#: js/files.js:986
#: js/files.js:987
msgid "{count} files"
msgstr "{count} faili"

View file

@ -11,8 +11,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-03-04 00:06+0100\n"
"PO-Revision-Date: 2013-03-03 23:06+0000\n"
"POT-Creation-Date: 2013-03-16 22:17+0100\n"
"PO-Revision-Date: 2013-03-14 23:20+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n"
"MIME-Version: 1.0\n"
@ -78,7 +78,7 @@ msgstr "Ez dago behar aina leku erabilgarri,"
msgid "Invalid directory."
msgstr "Baliogabeko karpeta."
#: appinfo/app.php:10
#: appinfo/app.php:12
msgid "Files"
msgstr "Fitxategiak"
@ -94,8 +94,8 @@ msgstr "Ezabatu"
msgid "Rename"
msgstr "Berrizendatu"
#: js/filelist.js:49 js/filelist.js:52 js/files.js:292 js/files.js:408
#: js/files.js:439
#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409
#: js/files.js:440
msgid "Pending"
msgstr "Zain"
@ -149,74 +149,74 @@ msgstr "Zure biltegiratzea beterik dago, ezingo duzu aurrerantzean fitxategirik
msgid "Your storage is almost full ({usedSpacePercent}%)"
msgstr "Zure biltegiratzea nahiko beterik dago (%{usedSpacePercent})"
#: js/files.js:225
#: js/files.js:226
msgid ""
"Your download is being prepared. This might take some time if the files are "
"big."
msgstr "Zure deskarga prestatu egin behar da. Denbora bat har lezake fitxategiak handiak badira. "
#: js/files.js:262
#: js/files.js:263
msgid "Unable to upload your file as it is a directory or has 0 bytes"
msgstr "Ezin da zure fitxategia igo, karpeta bat da edo 0 byt ditu"
#: js/files.js:262
#: js/files.js:263
msgid "Upload Error"
msgstr "Igotzean errore bat suertatu da"
#: js/files.js:273
#: js/files.js:274
msgid "Close"
msgstr "Itxi"
#: js/files.js:312
#: js/files.js:313
msgid "1 file uploading"
msgstr "fitxategi 1 igotzen"
#: js/files.js:315 js/files.js:370 js/files.js:385
#: js/files.js:316 js/files.js:371 js/files.js:386
msgid "{count} files uploading"
msgstr "{count} fitxategi igotzen"
#: js/files.js:388 js/files.js:423
#: js/files.js:389 js/files.js:424
msgid "Upload cancelled."
msgstr "Igoera ezeztatuta"
#: js/files.js:497
#: js/files.js:498
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr "Fitxategien igoera martxan da. Orria orain uzteak igoera ezeztatutko du."
#: js/files.js:570
#: js/files.js:571
msgid "URL cannot be empty."
msgstr "URLa ezin da hutsik egon."
#: js/files.js:575
#: js/files.js:576
msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud"
msgstr "Baliogabeako karpeta izena. 'Shared' izena Owncloudek erreserbatzen du"
#: js/files.js:953 templates/index.php:68
#: js/files.js:954 templates/index.php:68
msgid "Name"
msgstr "Izena"
#: js/files.js:954 templates/index.php:79
#: js/files.js:955 templates/index.php:79
msgid "Size"
msgstr "Tamaina"
#: js/files.js:955 templates/index.php:81
#: js/files.js:956 templates/index.php:81
msgid "Modified"
msgstr "Aldatuta"
#: js/files.js:974
#: js/files.js:975
msgid "1 folder"
msgstr "karpeta bat"
#: js/files.js:976
#: js/files.js:977
msgid "{count} folders"
msgstr "{count} karpeta"
#: js/files.js:984
#: js/files.js:985
msgid "1 file"
msgstr "fitxategi bat"
#: js/files.js:986
#: js/files.js:987
msgid "{count} files"
msgstr "{count} fitxategi"

View file

@ -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-27 00:08+0100\n"
"PO-Revision-Date: 2013-02-26 07:50+0000\n"
"POT-Creation-Date: 2013-03-16 22:17+0100\n"
"PO-Revision-Date: 2013-03-16 13:00+0000\n"
"Last-Translator: miki_mika1362 <miki_mika1362@yahoo.com>\n"
"Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n"
"MIME-Version: 1.0\n"
@ -162,55 +162,55 @@ msgstr "دسامبر"
msgid "Settings"
msgstr "تنظیمات"
#: js/js.js:768
#: js/js.js:777
msgid "seconds ago"
msgstr "ثانیه‌ها پیش"
#: js/js.js:769
#: js/js.js:778
msgid "1 minute ago"
msgstr "1 دقیقه پیش"
#: js/js.js:770
#: js/js.js:779
msgid "{minutes} minutes ago"
msgstr "{دقیقه ها} دقیقه های پیش"
#: js/js.js:771
#: js/js.js:780
msgid "1 hour ago"
msgstr "1 ساعت پیش"
#: js/js.js:772
#: js/js.js:781
msgid "{hours} hours ago"
msgstr "{ساعت ها} ساعت ها پیش"
#: js/js.js:773
#: js/js.js:782
msgid "today"
msgstr "امروز"
#: js/js.js:774
#: js/js.js:783
msgid "yesterday"
msgstr "دیروز"
#: js/js.js:775
#: js/js.js:784
msgid "{days} days ago"
msgstr "{روزها} روزهای پیش"
#: js/js.js:776
#: js/js.js:785
msgid "last month"
msgstr "ماه قبل"
#: js/js.js:777
#: js/js.js:786
msgid "{months} months ago"
msgstr "{ماه ها} ماه ها پیش"
#: js/js.js:778
#: js/js.js:787
msgid "months ago"
msgstr "ماه‌های قبل"
#: js/js.js:779
#: js/js.js:788
msgid "last year"
msgstr "سال قبل"
#: js/js.js:780
#: js/js.js:789
msgid "years ago"
msgstr "سال‌های قبل"
@ -240,8 +240,8 @@ msgid "The object type is not specified."
msgstr "نوع شی تعیین نشده است."
#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136
#: js/oc-vcategories.js:195 js/share.js:152 js/share.js:159 js/share.js:582
#: js/share.js:594
#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566
#: js/share.js:578
msgid "Error"
msgstr "خطا"
@ -253,127 +253,127 @@ msgstr "نام برنامه تعیین نشده است."
msgid "The required file {file} is not installed!"
msgstr "پرونده { پرونده} درخواست شده نصب نشده است !"
#: js/share.js:29 js/share.js:43 js/share.js:90
#: js/share.js:30 js/share.js:45 js/share.js:87
msgid "Shared"
msgstr "اشتراک گذاشته شده"
#: js/share.js:93
#: js/share.js:90
msgid "Share"
msgstr "اشتراک‌گزاری"
#: js/share.js:141 js/share.js:622
#: js/share.js:125 js/share.js:606
msgid "Error while sharing"
msgstr "خطا درحال به اشتراک گذاشتن"
#: js/share.js:152
#: js/share.js:136
msgid "Error while unsharing"
msgstr "خطا درحال لغو اشتراک"
#: js/share.js:159
#: js/share.js:143
msgid "Error while changing permissions"
msgstr "خطا در حال تغییر مجوز"
#: js/share.js:168
#: js/share.js:152
msgid "Shared with you and the group {group} by {owner}"
msgstr "به اشتراک گذاشته شده با شما و گروه {گروه} توسط {دارنده}"
#: js/share.js:170
#: js/share.js:154
msgid "Shared with you by {owner}"
msgstr "به اشتراک گذاشته شده با شما توسط { دارنده}"
#: js/share.js:175
#: js/share.js:159
msgid "Share with"
msgstr "به اشتراک گذاشتن با"
#: js/share.js:180
#: js/share.js:164
msgid "Share with link"
msgstr "به اشتراک گذاشتن با پیوند"
#: js/share.js:183
#: js/share.js:167
msgid "Password protect"
msgstr "نگهداری کردن رمز عبور"
#: js/share.js:185 templates/installation.php:47 templates/login.php:35
#: js/share.js:169 templates/installation.php:47 templates/login.php:35
msgid "Password"
msgstr "گذرواژه"
#: js/share.js:189
#: js/share.js:173
msgid "Email link to person"
msgstr "پیوند ایمیل برای شخص."
#: js/share.js:190
#: js/share.js:174
msgid "Send"
msgstr "ارسال"
#: js/share.js:194
#: js/share.js:178
msgid "Set expiration date"
msgstr "تنظیم تاریخ انقضا"
#: js/share.js:195
#: js/share.js:179
msgid "Expiration date"
msgstr "تاریخ انقضا"
#: js/share.js:227
#: js/share.js:211
msgid "Share via email:"
msgstr "از طریق ایمیل به اشتراک بگذارید :"
#: js/share.js:229
#: js/share.js:213
msgid "No people found"
msgstr "کسی یافت نشد"
#: js/share.js:256
#: js/share.js:240
msgid "Resharing is not allowed"
msgstr "اشتراک گذاری مجدد مجاز نمی باشد"
#: js/share.js:292
#: js/share.js:276
msgid "Shared in {item} with {user}"
msgstr "به اشتراک گذاشته شده در {بخش} با {کاربر}"
#: js/share.js:313
#: js/share.js:297
msgid "Unshare"
msgstr "لغو اشتراک"
#: js/share.js:325
#: js/share.js:309
msgid "can edit"
msgstr "می توان ویرایش کرد"
#: js/share.js:327
#: js/share.js:311
msgid "access control"
msgstr "کنترل دسترسی"
#: js/share.js:330
#: js/share.js:314
msgid "create"
msgstr "ایجاد"
#: js/share.js:333
#: js/share.js:317
msgid "update"
msgstr "به روز"
#: js/share.js:336
#: js/share.js:320
msgid "delete"
msgstr "پاک کردن"
#: js/share.js:339
#: js/share.js:323
msgid "share"
msgstr "به اشتراک گذاشتن"
#: js/share.js:373 js/share.js:569
#: js/share.js:357 js/share.js:553
msgid "Password protected"
msgstr "نگهداری از رمز عبور"
#: js/share.js:582
#: js/share.js:566
msgid "Error unsetting expiration date"
msgstr "خطا در تنظیم نکردن تاریخ انقضا "
#: js/share.js:594
#: js/share.js:578
msgid "Error setting expiration date"
msgstr "خطا در تنظیم تاریخ انقضا"
#: js/share.js:609
#: js/share.js:593
msgid "Sending ..."
msgstr "درحال ارسال ..."
#: js/share.js:620
#: js/share.js:604
msgid "Email sent"
msgstr "ایمیل ارسال شد"
@ -489,14 +489,14 @@ msgstr "بدون وجود یک تولید کننده اعداد تصادفی ا
msgid ""
"Your data directory and files are probably accessible from the internet "
"because the .htaccess file does not work."
msgstr ""
msgstr "فایلها و فهرست های داده های شما قابل از اینترنت قابل دسترسی هستند، چونکه فایل htacces. کار نمی کند."
#: templates/installation.php:33
msgid ""
"For information how to properly configure your server, please see the <a "
"href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" "
"target=\"_blank\">documentation</a>."
msgstr ""
msgstr "برای مطلع شدن از چگونگی تنظیم سرورتان،لطفا <a href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" target=\"_blank\">این</a> را ببینید."
#: templates/installation.php:37
msgid "Create an <strong>admin account</strong>"
@ -544,11 +544,11 @@ msgstr "هاست پایگاه داده"
msgid "Finish setup"
msgstr "اتمام نصب"
#: templates/layout.guest.php:35
#: templates/layout.guest.php:40
msgid "web services under your control"
msgstr "سرویس وب تحت کنترل شما"
#: templates/layout.user.php:53
#: templates/layout.user.php:58
msgid "Log out"
msgstr "خروج"
@ -580,7 +580,7 @@ msgstr "ورود"
#: templates/login.php:49
msgid "Alternative Logins"
msgstr ""
msgstr "ورود متناوب"
#: templates/part.pagenavi.php:3
msgid "prev"

View file

@ -11,8 +11,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-03-10 00:05+0100\n"
"PO-Revision-Date: 2013-03-09 16:20+0000\n"
"POT-Creation-Date: 2013-03-16 22:17+0100\n"
"PO-Revision-Date: 2013-03-16 06:50+0000\n"
"Last-Translator: miki_mika1362 <miki_mika1362@yahoo.com>\n"
"Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n"
"MIME-Version: 1.0\n"
@ -72,13 +72,13 @@ msgstr "نوشتن بر روی دیسک سخت ناموفق بود"
#: ajax/upload.php:51
msgid "Not enough storage available"
msgstr ""
msgstr "فضای کافی در دسترس نیست"
#: ajax/upload.php:82
msgid "Invalid directory."
msgstr "فهرست راهنما نامعتبر می باشد."
#: appinfo/app.php:10
#: appinfo/app.php:12
msgid "Files"
msgstr "فایل ها"
@ -125,7 +125,7 @@ msgstr "بازگشت"
#: js/filelist.js:323
msgid "perform delete operation"
msgstr ""
msgstr "انجام عمل حذف"
#: js/files.js:52
msgid "'.' is an invalid file name."
@ -143,11 +143,11 @@ msgstr "نام نامعتبر ، '\\', '/', '<', '>', ':', '\"', '|', '?' و '
#: js/files.js:78
msgid "Your storage is full, files can not be updated or synced anymore!"
msgstr ""
msgstr "فضای ذخیره ی شما کاملا پر است، بیش از این فایلها بهنگام یا همگام سازی نمی توانند بشوند!"
#: js/files.js:82
msgid "Your storage is almost full ({usedSpacePercent}%)"
msgstr ""
msgstr "فضای ذخیره ی شما تقریبا پر است ({usedSpacePercent}%)"
#: js/files.js:226
msgid ""
@ -282,7 +282,7 @@ msgstr "متوقف کردن بار گذاری"
#: templates/index.php:53
msgid "You dont have write permissions here."
msgstr ""
msgstr "شما اجازه ی نوشتن در اینجا را ندارید"
#: templates/index.php:60
msgid "Nothing in here. Upload something!"
@ -316,4 +316,4 @@ msgstr "بازرسی کنونی"
#: templates/upgrade.php:2
msgid "Upgrading filesystem cache..."
msgstr ""
msgstr "بهبود فایل سیستمی ذخیره گاه..."

View file

@ -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-10 00:08+0100\n"
"PO-Revision-Date: 2013-02-09 23:09+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"POT-Creation-Date: 2013-03-19 00:04+0100\n"
"PO-Revision-Date: 2013-03-18 11:40+0000\n"
"Last-Translator: miki_mika1362 <miki_mika1362@yahoo.com>\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"
@ -26,15 +26,15 @@ msgstr "رمزگذاری"
#: templates/settings-personal.php:7
msgid "File encryption is enabled."
msgstr ""
msgstr "رمزنگاری فایلها فعال شد."
#: templates/settings-personal.php:11
msgid "The following file types will not be encrypted:"
msgstr ""
msgstr "فایلهای زیر رمزنگاری نخواهند شد:"
#: templates/settings.php:7
msgid "Exclude the following file types from encryption:"
msgstr ""
msgstr "فایلهای زیر از رمزنگاری نادیده گرفته می شوند:"
#: templates/settings.php:12
msgid "None"

View file

@ -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-28 00:04+0100\n"
"PO-Revision-Date: 2013-02-27 23:04+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"POT-Creation-Date: 2013-03-19 00:04+0100\n"
"PO-Revision-Date: 2013-03-18 11:40+0000\n"
"Last-Translator: miki_mika1362 <miki_mika1362@yahoo.com>\n"
"Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -38,13 +38,13 @@ msgstr ""
msgid "Error configuring Google Drive storage"
msgstr ""
#: lib/config.php:421
#: lib/config.php:423
msgid ""
"<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares "
"is not possible. Please ask your system administrator to install it."
msgstr ""
#: lib/config.php:424
#: lib/config.php:426
msgid ""
"<b>Warning:</b> The FTP support in PHP is not enabled or installed. Mounting"
" of FTP shares is not possible. Please ask your system administrator to "
@ -81,7 +81,7 @@ msgstr ""
#: templates/settings.php:90
msgid "None set"
msgstr ""
msgstr "تنظیم نشده"
#: templates/settings.php:91
msgid "All Users"
@ -106,7 +106,7 @@ msgstr "فعال سازی حافظه خارجی کاربر"
#: templates/settings.php:130
msgid "Allow users to mount their own external storage"
msgstr ""
msgstr "اجازه به کاربران برای متصل کردن منابع ذخیره ی خارجی خودشان"
#: templates/settings.php:141
msgid "SSL root certificates"

View file

@ -3,13 +3,14 @@
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
# mahdi Kereshteh <miki_mika1362@yahoo.com>, 2013.
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-03-10 00:05+0100\n"
"PO-Revision-Date: 2013-03-09 16:20+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"POT-Creation-Date: 2013-03-16 22:17+0100\n"
"PO-Revision-Date: 2013-03-16 08:21+0000\n"
"Last-Translator: miki_mika1362 <miki_mika1362@yahoo.com>\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"
@ -20,20 +21,20 @@ msgstr ""
#: ajax/delete.php:40
#, php-format
msgid "Couldn't delete %s permanently"
msgstr ""
msgstr "%s را نمی توان برای همیشه حذف کرد"
#: ajax/undelete.php:41
#, php-format
msgid "Couldn't restore %s"
msgstr ""
msgstr "%s را نمی توان بازگرداند"
#: js/trash.js:7 js/trash.js:96
msgid "perform restore operation"
msgstr ""
msgstr "انجام عمل بازگرداندن"
#: js/trash.js:34
msgid "delete file permanently"
msgstr ""
msgstr "حذف فایل برای همیشه"
#: js/trash.js:121
msgid "Delete permanently"
@ -45,7 +46,7 @@ msgstr "نام"
#: js/trash.js:175 templates/index.php:27
msgid "Deleted"
msgstr ""
msgstr "حذف شده"
#: js/trash.js:184
msgid "1 folder"
@ -65,7 +66,7 @@ msgstr "{ شمار } فایل ها"
#: templates/index.php:9
msgid "Nothing in here. Your trash bin is empty!"
msgstr ""
msgstr "هیچ چیزی اینجا نیست. سطل زباله ی شما خالی است."
#: templates/index.php:20 templates/index.php:22
msgid "Restore"
@ -77,4 +78,4 @@ msgstr "حذف"
#: templates/part.breadcrumb.php:9
msgid "Deleted Files"
msgstr ""
msgstr "فایلهای حذف شده"

View file

@ -4,14 +4,15 @@
#
# Translators:
# Amir Reza Asadi <amirreza.asadi@live.com>, 2013.
# mahdi Kereshteh <miki_mika1362@yahoo.com>, 2013.
# Mohammad Dashtizadeh <mohammad@dashtizadeh.net>, 2012.
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-02-27 14:35+0100\n"
"PO-Revision-Date: 2013-02-27 13:35+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"POT-Creation-Date: 2013-03-16 22:17+0100\n"
"PO-Revision-Date: 2013-03-16 08:40+0000\n"
"Last-Translator: miki_mika1362 <miki_mika1362@yahoo.com>\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"
@ -43,19 +44,19 @@ msgstr " برنامه ها"
msgid "Admin"
msgstr "مدیر"
#: files.php:202
#: files.php:209
msgid "ZIP download is turned off."
msgstr "دانلود به صورت فشرده غیر فعال است"
#: files.php:203
#: files.php:210
msgid "Files need to be downloaded one by one."
msgstr "فایل ها باید به صورت یکی یکی دانلود شوند"
#: files.php:204 files.php:231
#: files.php:211 files.php:244
msgid "Back to Files"
msgstr "بازگشت به فایل ها"
#: files.php:228
#: files.php:241
msgid "Selected files too large to generate zip file."
msgstr "فایل های انتخاب شده بزرگتر از آن هستند که بتوان یک فایل فشرده تولید کرد"
@ -97,7 +98,7 @@ msgstr ""
#: setup.php:40
msgid "Specify a data folder."
msgstr ""
msgstr "پوشه ای برای داده ها مشخص کنید."
#: setup.php:55
#, php-format

View file

@ -13,9 +13,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-03-05 00:18+0100\n"
"PO-Revision-Date: 2013-03-04 16:30+0000\n"
"Last-Translator: Amir Reza Asadi <amirreza.asadi@live.com>\n"
"POT-Creation-Date: 2013-03-16 22:17+0100\n"
"PO-Revision-Date: 2013-03-16 07:10+0000\n"
"Last-Translator: miki_mika1362 <miki_mika1362@yahoo.com>\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"
@ -46,7 +46,7 @@ msgstr "افزودن گروه امکان پذیر نیست"
#: ajax/enableapp.php:11
msgid "Could not enable app. "
msgstr ""
msgstr "برنامه را نمی توان فعال ساخت."
#: ajax/lostpassword.php:12
msgid "Email saved"
@ -79,20 +79,20 @@ msgstr "مدیران نمی توانند خود را از گروه مدیریت
#: ajax/togglegroups.php:30
#, php-format
msgid "Unable to add user to group %s"
msgstr ""
msgstr "امکان افزودن کاربر به گروه %s نیست"
#: ajax/togglegroups.php:36
#, php-format
msgid "Unable to remove user from group %s"
msgstr ""
msgstr "امکان حذف کاربر از گروه %s نیست"
#: ajax/updateapp.php:14
msgid "Couldn't update app."
msgstr ""
msgstr "برنامه را نمی توان به هنگام ساخت."
#: js/apps.js:30
msgid "Update to {appversion}"
msgstr ""
msgstr "بهنگام شده به {appversion}"
#: js/apps.js:36 js/apps.js:76
msgid "Disable"
@ -112,7 +112,7 @@ msgstr "در حال بروز رسانی..."
#: js/apps.js:87
msgid "Error while updating app"
msgstr ""
msgstr "خطا در هنگام بهنگام سازی برنامه"
#: js/apps.js:87
msgid "Error"
@ -136,7 +136,7 @@ msgstr "بازگشت"
#: js/users.js:62
msgid "Unable to remove user"
msgstr ""
msgstr "حذف کاربر امکان پذیر نیست"
#: js/users.js:75 templates/users.php:26 templates/users.php:80
#: templates/users.php:105
@ -157,7 +157,7 @@ msgstr "افزودن گروه"
#: js/users.js:352
msgid "A valid username must be provided"
msgstr ""
msgstr "نام کاربری صحیح باید وارد شود"
#: js/users.js:353 js/users.js:359 js/users.js:374
msgid "Error creating user"
@ -165,7 +165,7 @@ msgstr "خطا در ایجاد کاربر"
#: js/users.js:358
msgid "A valid password must be provided"
msgstr ""
msgstr "رمز عبور صحیح باید وارد شود"
#: personal.php:29 personal.php:30
msgid "__language_name__"
@ -463,7 +463,7 @@ msgstr ""
#: templates/personal.php:93
msgid "Use this address to connect to your ownCloud in your file manager"
msgstr ""
msgstr "از این نشانی برای اتصال به ownCloud خودتان در بخش مدیریت فایل خودتان استفاده کنید"
#: templates/users.php:21 templates/users.php:77
msgid "Login Name"

View file

@ -10,9 +10,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-03-02 00:03+0100\n"
"PO-Revision-Date: 2013-03-01 23:04+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"POT-Creation-Date: 2013-03-16 22:17+0100\n"
"PO-Revision-Date: 2013-03-16 08:50+0000\n"
"Last-Translator: miki_mika1362 <miki_mika1362@yahoo.com>\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"
@ -89,248 +89,248 @@ msgstr ""
msgid "Server configuration"
msgstr "پیکربندی سرور"
#: templates/settings.php:18
#: templates/settings.php:31
msgid "Add Server Configuration"
msgstr "افزودن پیکربندی سرور"
#: templates/settings.php:23
#: templates/settings.php:36
msgid "Host"
msgstr "میزبانی"
#: templates/settings.php:25
#: templates/settings.php:38
msgid ""
"You can omit the protocol, except you require SSL. Then start with ldaps://"
msgstr ""
#: templates/settings.php:26
#: templates/settings.php:39
msgid "Base DN"
msgstr ""
#: templates/settings.php:27
#: templates/settings.php:40
msgid "One Base DN per line"
msgstr ""
#: templates/settings.php:28
#: templates/settings.php:41
msgid "You can specify Base DN for users and groups in the Advanced tab"
msgstr ""
#: templates/settings.php:30
#: templates/settings.php:43
msgid "User DN"
msgstr ""
#: templates/settings.php:32
#: templates/settings.php:45
msgid ""
"The DN of the client user with which the bind shall be done, e.g. "
"uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password "
"empty."
msgstr ""
#: templates/settings.php:33
#: templates/settings.php:46
msgid "Password"
msgstr "رمز عبور"
#: templates/settings.php:36
#: templates/settings.php:49
msgid "For anonymous access, leave DN and Password empty."
msgstr ""
#: templates/settings.php:37
#: templates/settings.php:50
msgid "User Login Filter"
msgstr ""
#: templates/settings.php:40
#: templates/settings.php:53
#, php-format
msgid ""
"Defines the filter to apply, when login is attempted. %%uid replaces the "
"username in the login action."
msgstr ""
#: templates/settings.php:41
#: templates/settings.php:54
#, php-format
msgid "use %%uid placeholder, e.g. \"uid=%%uid\""
msgstr ""
#: templates/settings.php:42
#: templates/settings.php:55
msgid "User List Filter"
msgstr ""
#: templates/settings.php:45
#: templates/settings.php:58
msgid "Defines the filter to apply, when retrieving users."
msgstr ""
#: templates/settings.php:46
#: templates/settings.php:59
msgid "without any placeholder, e.g. \"objectClass=person\"."
msgstr ""
#: templates/settings.php:47
#: templates/settings.php:60
msgid "Group Filter"
msgstr ""
msgstr "فیلتر گروه"
#: templates/settings.php:50
#: templates/settings.php:63
msgid "Defines the filter to apply, when retrieving groups."
msgstr ""
#: templates/settings.php:51
#: templates/settings.php:64
msgid "without any placeholder, e.g. \"objectClass=posixGroup\"."
msgstr ""
#: templates/settings.php:55
#: templates/settings.php:68
msgid "Connection Settings"
msgstr ""
#: templates/settings.php:57
#: templates/settings.php:70
msgid "Configuration Active"
msgstr ""
#: templates/settings.php:57
#: templates/settings.php:70
msgid "When unchecked, this configuration will be skipped."
msgstr ""
#: templates/settings.php:58
#: templates/settings.php:71
msgid "Port"
msgstr "درگاه"
#: templates/settings.php:59
#: templates/settings.php:72
msgid "Backup (Replica) Host"
msgstr ""
#: templates/settings.php:59
#: templates/settings.php:72
msgid ""
"Give an optional backup host. It must be a replica of the main LDAP/AD "
"server."
msgstr ""
#: templates/settings.php:60
#: templates/settings.php:73
msgid "Backup (Replica) Port"
msgstr ""
#: templates/settings.php:61
#: templates/settings.php:74
msgid "Disable Main Server"
msgstr ""
#: templates/settings.php:61
#: templates/settings.php:74
msgid "When switched on, ownCloud will only connect to the replica server."
msgstr ""
#: templates/settings.php:62
#: templates/settings.php:75
msgid "Use TLS"
msgstr ""
#: templates/settings.php:62
#: templates/settings.php:75
msgid "Do not use it additionally for LDAPS connections, it will fail."
msgstr ""
#: templates/settings.php:63
#: templates/settings.php:76
msgid "Case insensitve LDAP server (Windows)"
msgstr ""
#: templates/settings.php:64
#: templates/settings.php:77
msgid "Turn off SSL certificate validation."
msgstr ""
#: templates/settings.php:64
#: templates/settings.php:77
msgid ""
"If connection only works with this option, import the LDAP server's SSL "
"certificate in your ownCloud server."
msgstr ""
#: templates/settings.php:64
#: templates/settings.php:77
msgid "Not recommended, use for testing only."
msgstr ""
#: templates/settings.php:65
#: templates/settings.php:78
msgid "Cache Time-To-Live"
msgstr ""
#: templates/settings.php:65
#: templates/settings.php:78
msgid "in seconds. A change empties the cache."
msgstr ""
#: templates/settings.php:67
#: templates/settings.php:80
msgid "Directory Settings"
msgstr ""
#: templates/settings.php:69
#: templates/settings.php:82
msgid "User Display Name Field"
msgstr ""
#: templates/settings.php:69
#: templates/settings.php:82
msgid "The LDAP attribute to use to generate the user`s ownCloud name."
msgstr ""
#: templates/settings.php:70
#: templates/settings.php:83
msgid "Base User Tree"
msgstr ""
#: templates/settings.php:70
#: templates/settings.php:83
msgid "One User Base DN per line"
msgstr ""
#: templates/settings.php:71
#: templates/settings.php:84
msgid "User Search Attributes"
msgstr ""
#: templates/settings.php:71 templates/settings.php:74
#: templates/settings.php:84 templates/settings.php:87
msgid "Optional; one attribute per line"
msgstr ""
#: templates/settings.php:72
#: templates/settings.php:85
msgid "Group Display Name Field"
msgstr ""
#: templates/settings.php:72
#: templates/settings.php:85
msgid "The LDAP attribute to use to generate the groups`s ownCloud name."
msgstr ""
#: templates/settings.php:73
#: templates/settings.php:86
msgid "Base Group Tree"
msgstr ""
#: templates/settings.php:73
#: templates/settings.php:86
msgid "One Group Base DN per line"
msgstr ""
#: templates/settings.php:74
#: templates/settings.php:87
msgid "Group Search Attributes"
msgstr ""
#: templates/settings.php:75
#: templates/settings.php:88
msgid "Group-Member association"
msgstr ""
#: templates/settings.php:77
#: templates/settings.php:90
msgid "Special Attributes"
msgstr ""
#: templates/settings.php:79
#: templates/settings.php:92
msgid "Quota Field"
msgstr ""
#: templates/settings.php:80
#: templates/settings.php:93
msgid "Quota Default"
msgstr ""
#: templates/settings.php:80
#: templates/settings.php:93
msgid "in bytes"
msgstr "در بایت"
#: templates/settings.php:81
#: templates/settings.php:94
msgid "Email Field"
msgstr ""
#: templates/settings.php:82
#: templates/settings.php:95
msgid "User Home Folder Naming Rule"
msgstr ""
#: templates/settings.php:82
#: templates/settings.php:95
msgid ""
"Leave empty for user name (default). Otherwise, specify an LDAP/AD "
"attribute."
msgstr ""
#: templates/settings.php:86
#: templates/settings.php:99
msgid "Test Configuration"
msgstr ""
#: templates/settings.php:86
#: templates/settings.php:99
msgid "Help"
msgstr "راه‌نما"

View file

@ -12,8 +12,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-03-04 00:06+0100\n"
"PO-Revision-Date: 2013-03-03 23:06+0000\n"
"POT-Creation-Date: 2013-03-16 22:17+0100\n"
"PO-Revision-Date: 2013-03-14 23:20+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n"
"MIME-Version: 1.0\n"
@ -79,7 +79,7 @@ msgstr "Tallennustilaa ei ole riittävästi käytettävissä"
msgid "Invalid directory."
msgstr "Virheellinen kansio."
#: appinfo/app.php:10
#: appinfo/app.php:12
msgid "Files"
msgstr "Tiedostot"
@ -95,8 +95,8 @@ msgstr "Poista"
msgid "Rename"
msgstr "Nimeä uudelleen"
#: js/filelist.js:49 js/filelist.js:52 js/files.js:292 js/files.js:408
#: js/files.js:439
#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409
#: js/files.js:440
msgid "Pending"
msgstr "Odottaa"
@ -150,74 +150,74 @@ msgstr "Tallennustila on loppu, tiedostoja ei voi enää päivittää tai synkro
msgid "Your storage is almost full ({usedSpacePercent}%)"
msgstr "Tallennustila on melkein loppu ({usedSpacePercent}%)"
#: js/files.js:225
#: js/files.js:226
msgid ""
"Your download is being prepared. This might take some time if the files are "
"big."
msgstr "Lataustasi valmistellaan. Tämä saattaa kestää hetken, jos tiedostot ovat suuria kooltaan."
#: js/files.js:262
#: js/files.js:263
msgid "Unable to upload your file as it is a directory or has 0 bytes"
msgstr "Tiedoston lähetys epäonnistui, koska sen koko on 0 tavua tai kyseessä on kansio"
#: js/files.js:262
#: js/files.js:263
msgid "Upload Error"
msgstr "Lähetysvirhe."
#: js/files.js:273
#: js/files.js:274
msgid "Close"
msgstr "Sulje"
#: js/files.js:312
#: js/files.js:313
msgid "1 file uploading"
msgstr ""
#: js/files.js:315 js/files.js:370 js/files.js:385
#: js/files.js:316 js/files.js:371 js/files.js:386
msgid "{count} files uploading"
msgstr ""
#: js/files.js:388 js/files.js:423
#: js/files.js:389 js/files.js:424
msgid "Upload cancelled."
msgstr "Lähetys peruttu."
#: js/files.js:497
#: js/files.js:498
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr "Tiedoston lähetys on meneillään. Sivulta poistuminen nyt peruu tiedoston lähetyksen."
#: js/files.js:570
#: js/files.js:571
msgid "URL cannot be empty."
msgstr "Verkko-osoite ei voi olla tyhjä"
#: js/files.js:575
#: js/files.js:576
msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud"
msgstr ""
#: js/files.js:953 templates/index.php:68
#: js/files.js:954 templates/index.php:68
msgid "Name"
msgstr "Nimi"
#: js/files.js:954 templates/index.php:79
#: js/files.js:955 templates/index.php:79
msgid "Size"
msgstr "Koko"
#: js/files.js:955 templates/index.php:81
#: js/files.js:956 templates/index.php:81
msgid "Modified"
msgstr "Muutettu"
#: js/files.js:974
#: js/files.js:975
msgid "1 folder"
msgstr "1 kansio"
#: js/files.js:976
#: js/files.js:977
msgid "{count} folders"
msgstr "{count} kansiota"
#: js/files.js:984
#: js/files.js:985
msgid "1 file"
msgstr "1 tiedosto"
#: js/files.js:986
#: js/files.js:987
msgid "{count} files"
msgstr "{count} tiedostoa"

View file

@ -18,13 +18,14 @@
# Robert Di Rosa <>, 2012-2013.
# <rom1dep@gmail.com>, 2011.
# Romain DEP. <rom1dep@gmail.com>, 2012-2013.
# <zrk951@gmail.com>, 2013.
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-03-04 00:06+0100\n"
"PO-Revision-Date: 2013-03-03 23:06+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"POT-Creation-Date: 2013-03-16 22:17+0100\n"
"PO-Revision-Date: 2013-03-14 23:20+0000\n"
"Last-Translator: Zertrin <zrk951@gmail.com>\n"
"Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -89,7 +90,7 @@ msgstr "Plus assez d'espace de stockage disponible"
msgid "Invalid directory."
msgstr "Dossier invalide."
#: appinfo/app.php:10
#: appinfo/app.php:12
msgid "Files"
msgstr "Fichiers"
@ -105,8 +106,8 @@ msgstr "Supprimer"
msgid "Rename"
msgstr "Renommer"
#: js/filelist.js:49 js/filelist.js:52 js/files.js:292 js/files.js:408
#: js/files.js:439
#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409
#: js/files.js:440
msgid "Pending"
msgstr "En cours"
@ -160,74 +161,74 @@ msgstr "Votre espage de stockage est plein, les fichiers ne peuvent plus être t
msgid "Your storage is almost full ({usedSpacePercent}%)"
msgstr "Votre espace de stockage est presque plein ({usedSpacePercent}%)"
#: js/files.js:225
#: js/files.js:226
msgid ""
"Your download is being prepared. This might take some time if the files are "
"big."
msgstr "Votre téléchargement est cours de préparation. Ceci peut nécessiter un certain temps si les fichiers sont volumineux."
#: js/files.js:262
#: js/files.js:263
msgid "Unable to upload your file as it is a directory or has 0 bytes"
msgstr "Impossible de charger vos fichiers car il s'agit d'un dossier ou le fichier fait 0 octet."
#: js/files.js:262
#: js/files.js:263
msgid "Upload Error"
msgstr "Erreur de chargement"
#: js/files.js:273
#: js/files.js:274
msgid "Close"
msgstr "Fermer"
#: js/files.js:312
#: js/files.js:313
msgid "1 file uploading"
msgstr "1 fichier en cours de téléchargement"
#: js/files.js:315 js/files.js:370 js/files.js:385
#: js/files.js:316 js/files.js:371 js/files.js:386
msgid "{count} files uploading"
msgstr "{count} fichiers téléversés"
#: js/files.js:388 js/files.js:423
#: js/files.js:389 js/files.js:424
msgid "Upload cancelled."
msgstr "Chargement annulé."
#: js/files.js:497
#: js/files.js:498
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr "L'envoi du fichier est en cours. Quitter cette page maintenant annulera l'envoi du fichier."
#: js/files.js:570
#: js/files.js:571
msgid "URL cannot be empty."
msgstr "L'URL ne peut-être vide"
#: js/files.js:575
#: js/files.js:576
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:953 templates/index.php:68
#: js/files.js:954 templates/index.php:68
msgid "Name"
msgstr "Nom"
#: js/files.js:954 templates/index.php:79
#: js/files.js:955 templates/index.php:79
msgid "Size"
msgstr "Taille"
#: js/files.js:955 templates/index.php:81
#: js/files.js:956 templates/index.php:81
msgid "Modified"
msgstr "Modifié"
#: js/files.js:974
#: js/files.js:975
msgid "1 folder"
msgstr "1 dossier"
#: js/files.js:976
#: js/files.js:977
msgid "{count} folders"
msgstr "{count} dossiers"
#: js/files.js:984
#: js/files.js:985
msgid "1 file"
msgstr "1 fichier"
#: js/files.js:986
#: js/files.js:987
msgid "{count} files"
msgstr "{count} fichiers"
@ -293,7 +294,7 @@ msgstr "Annuler l'envoi"
#: templates/index.php:53
msgid "You dont have write permissions here."
msgstr ""
msgstr "Vous n'avez pas le droit d'écriture ici."
#: templates/index.php:60
msgid "Nothing in here. Upload something!"

Some files were not shown because too many files have changed in this diff Show more