he.php 3.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <?php
  2. $TRANSLATIONS = array(
  3. "Could not move %s - File with this name already exists" => "לא ניתן להעביר את %s - קובץ בשם הזה כבר קיים",
  4. "Could not move %s" => "לא ניתן להעביר את %s",
  5. "File name cannot be empty." => "שם קובץ אינו יכול להיות ריק",
  6. "No file was uploaded. Unknown error" => "לא הועלה קובץ. טעות בלתי מזוהה.",
  7. "There is no error, the file uploaded with success" => "לא התרחשה שגיאה, הקובץ הועלה בהצלחה",
  8. "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "הקבצים שנשלחו חורגים מהגודל שצוין בהגדרה upload_max_filesize שבקובץ php.ini:",
  9. "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "הקובץ שהועלה גדוך מהערך MAX_FILE_SIZE שהוגדר בתופס HTML",
  10. "The uploaded file was only partially uploaded" => "הקובץ הועלה באופן חלקי בלבד",
  11. "No file was uploaded" => "שום קובץ לא הועלה",
  12. "Missing a temporary folder" => "תקיה זמנית חסרה",
  13. "Failed to write to disk" => "הכתיבה לכונן נכשלה",
  14. "Not enough storage available" => "אין די שטח פנוי באחסון",
  15. "Upload failed. Could not get file info." => "העלאה נכשלה. לא ניתן להשיג את פרטי הקובץ.",
  16. "Invalid directory." => "תיקייה שגויה.",
  17. "Files" => "קבצים",
  18. "Upload cancelled." => "ההעלאה בוטלה.",
  19. "Could not get result from server." => "לא ניתן לגשת לתוצאות מהשרת.",
  20. "File upload is in progress. Leaving the page now will cancel the upload." => "מתבצעת כעת העלאת קבצים. עזיבה של העמוד תבטל את ההעלאה.",
  21. "{new_name} already exists" => "{new_name} כבר קיים",
  22. "Share" => "שתף",
  23. "Delete permanently" => "מחק לצמיתות",
  24. "Rename" => "שינוי שם",
  25. "Pending" => "ממתין",
  26. "replaced {new_name} with {old_name}" => "{new_name} הוחלף ב־{old_name}",
  27. "undo" => "ביטול",
  28. "_%n folder_::_%n folders_" => array("",""),
  29. "_%n file_::_%n files_" => array("",""),
  30. "_Uploading %n file_::_Uploading %n files_" => array("",""),
  31. "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "השם שגוי, אסור להשתמש בתווים '\\', '/', '<', '>', ':', '\"', '|', '?' ו־'*'.",
  32. "Your storage is almost full ({usedSpacePercent}%)" => "שטח האחסון שלך כמעט מלא ({usedSpacePercent}%)",
  33. "Error" => "שגיאה",
  34. "Name" => "שם",
  35. "Size" => "גודל",
  36. "Modified" => "זמן שינוי",
  37. "Upload" => "העלאה",
  38. "File handling" => "טיפול בקבצים",
  39. "Maximum upload size" => "גודל העלאה מקסימלי",
  40. "max. possible: " => "המרבי האפשרי: ",
  41. "Needed for multi-file and folder downloads." => "נחוץ להורדה של ריבוי קבצים או תיקיות.",
  42. "Enable ZIP-download" => "הפעלת הורדת ZIP",
  43. "0 is unlimited" => "0 - ללא הגבלה",
  44. "Maximum input size for ZIP files" => "גודל הקלט המרבי לקובצי ZIP",
  45. "Save" => "שמירה",
  46. "New" => "חדש",
  47. "Text file" => "קובץ טקסט",
  48. "Folder" => "תיקייה",
  49. "From link" => "מקישור",
  50. "Deleted files" => "קבצים שנמחקו",
  51. "Cancel upload" => "ביטול ההעלאה",
  52. "Nothing in here. Upload something!" => "אין כאן שום דבר. אולי ברצונך להעלות משהו?",
  53. "Download" => "הורדה",
  54. "Delete" => "מחיקה",
  55. "Upload too large" => "העלאה גדולה מידי",
  56. "The files you are trying to upload exceed the maximum size for file uploads on this server." => "הקבצים שניסית להעלות חרגו מהגודל המקסימלי להעלאת קבצים על שרת זה.",
  57. "Files are being scanned, please wait." => "הקבצים נסרקים, נא להמתין.",
  58. "Current scanning" => "הסריקה הנוכחית"
  59. );
  60. $PLURAL_FORMS = "nplurals=2; plural=(n != 1);";