* @author Brian Wong * @author Nicolas Peyrussie * @author Jeremy Fowler * @version 04-03-07 * @author Markus Edholm * 01-07-01 * @package Languages * * Copyright (C) 2005 - 2007 MailZu * License: GPL, see LICENSE */ /////////////////////////////////////////////////////////// // INSTRUCTIONS /////////////////////////////////////////////////////////// // This file contains all of the strings that are used throughout phpScheduleit. // Please save the translated file as '2 letter language code'.lang.php. For example, en.lang.php. // // To make phpScheduleIt available in another language, simply translate each // of the following strings into the appropriate one for the language. If there // is no direct translation, please provide the closest translation. Please be sure // to make the proper additions the /config/langs.php file (instructions are in the file). // Also, please add a help translation for your language using en.help.php as a base. // // You will probably keep all sprintf (%s) tags in their current place. These tags // are there as a substitution placeholder. Please check the output after translating // to be sure that the sentences make sense. // // + Please use single quotes ' around all $strings. If you need to use the ' character, please enter it as \' // + Please use double quotes " around all $email. If you need to use the " character, please enter it as \" // // + For all $dates please use the PHP strftime() syntax // http://us2.php.net/manual/en/function.strftime.php // // + Non-intuitive parts of this file will be explained with comments. If you // have any questions, please email lqqkout13@users.sourceforge.net // or post questions in the Developers forum on SourceForge // http://sourceforge.net/forum/forum.php?forum_id=331297 /////////////////////////////////////////////////////////// //////////////////////////////// /* Do not modify this section */ //////////////////////////////// global $strings; // global $email; // global $dates; // global $charset; // global $letters; // global $days_full; // global $days_abbr; // global $days_two; // global $days_letter; // global $months_full; // global $months_abbr; // global $days_letter; // /******************************/ // Charset for this language // 'iso-8859-1' will work for most languages $charset = 'iso-8859-1'; /*** DAY NAMES All of these arrays MUST start with Sunday as the first element and go through the seven day week, ending on Saturday ***/ // The full day name $days_full = array('Söndag', 'Måndag', 'Tisdag', 'Onsdag', 'Torsdag', 'Fredag', 'Lördag'); // The three letter abbreviation $days_abbr = array('Sön', 'Mån', 'Tis', 'Ons', 'Tor', 'Fre', 'Lör'); // The two letter abbreviation $days_two = array('Sö', 'Må','Ti', 'On', 'To', 'Fr', 'Lö'); // The one letter abbreviation $days_letter = array('S', 'M', 'T', 'O', 'T', 'F', 'L'); /*** MONTH NAMES All of these arrays MUST start with January as the first element and go through the twelve months of the year, ending on December ***/ // The full month name $months_full = array('Januari', 'Februari', 'Mars', 'April', 'Maj', 'Juni', 'Juli', 'Augusti', 'September', 'Oktober', 'November', 'December'); // The three letter month name $months_abbr = array('Jan', 'Feb', 'Mar', 'Apr', 'Maj', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'); // All letters of the alphabet starting with A and ending with Z $letters = array ('A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', 'Å', 'Ä', 'Ö'); /*** DATE FORMATTING All of the date formatting must use the PHP strftime() syntax You can include any text/HTML formatting in the translation ***/ // General date formatting used for all date display unless otherwise noted $dates['general_date'] = '%m/%d/%Y'; // General datetime formatting used for all datetime display unless otherwise noted // The hour:minute:second will always follow this format $dates['general_datetime'] = '%m/%d/%Y @'; $dates['header'] = '%A, %B %d, %Y'; /*** STRING TRANSLATIONS All of these strings should be translated from the English value (right side of the equals sign) to the new language. - Please keep the keys (between the [] brackets) as they are. The keys will not always be the same as the value. - Please keep the sprintf formatting (%s) placeholders where they are unless you are sure it needs to be moved. - Please keep the HTML and punctuation as-is unless you know that you want to change it. ***/ $strings['hours'] = 'timmar'; $strings['minutes'] = 'minuter'; // The common abbreviation to hint that a user should enter the month as 2 digits $strings['mm'] = 'mm'; // The common abbreviation to hint that a user should enter the day as 2 digits $strings['dd'] = 'dd'; // The common abbreviation to hint that a user should enter the year as 4 digits $strings['yyyy'] = 'åååå'; $strings['am'] = 'am'; $strings['pm'] = 'pm'; $strings['Administrator'] = 'Administrator'; $strings['Welcome Back'] = 'Välkommen tillbaka, %s'; $strings['Log Out'] = 'Logga ut'; $strings['Help'] = 'Hjälp'; $strings['Admin Email'] = 'Admin Epost'; $strings['Default'] = 'Standard'; $strings['Reset'] = 'Återställ'; $strings['Edit'] = 'Ändra'; $strings['Delete'] = 'Radera'; $strings['Cancel'] = 'Avbryt'; $strings['View'] = 'Visa'; $strings['Modify'] = 'Ändra'; $strings['Save'] = 'Spara'; $strings['Back'] = 'Tillbaka'; $strings['BackMessageIndex'] = 'Tillbaka till Meddelanden'; $strings['ToggleHeaders'] = 'Visa Huvud'; $strings['ViewOriginal'] = 'Visa Original'; $strings['Close Window'] = 'Stäng Fönster'; $strings['Search'] = 'Sök'; $strings['Clear'] = 'Rensa'; $strings['Days to Show'] = 'Dagar att visa'; $strings['Reservation Offset'] = 'Reservation Offset'; $strings['Hidden'] = 'Gömd'; $strings['Show Summary'] = 'Visa Summering'; $strings['Add Schedule'] = 'Lägg till Schema'; $strings['Edit Schedule'] = 'Ändra Schema'; $strings['No'] = 'Nej'; $strings['Yes'] = 'Ja'; $strings['Name'] = 'Namn'; $strings['First Name'] = 'Förnamn'; $strings['Last Name'] = 'Efternamn'; $strings['Resource Name'] = 'Resurs Namn'; $strings['Email'] = 'Epost'; $strings['Institution'] = 'Avdelning'; $strings['Phone'] = 'Telefon'; $strings['Password'] = 'Lösenord'; $strings['Permissions'] = 'Behörighet'; $strings['View information about'] = 'Visa information om %s %s'; $strings['Send email to'] = 'Skicka epost till %s %s'; $strings['Reset password for'] = 'Återställ lösenord för %s %s'; $strings['Edit permissions for'] = 'Ändra behörighet för %s %s'; $strings['Position'] = 'Position'; $strings['Password (6 char min)'] = 'Lösenord (%s tecken minst)'; // @since 1.1.0 $strings['Re-Enter Password'] = 'Ange Lösenord igen'; $strings['Date'] = 'Datum'; $strings['Email Users'] = 'Epost Användare'; $strings['Subject'] = 'Ämne'; $strings['Message'] = 'Meddelande'; $strings['Send Email'] = 'Skicka Epost'; $strings['problem sending email'] = 'Beklagar, det är något fel med din epost. Prova igen senare.'; $strings['The email sent successfully.'] = 'Epost skickad.'; $strings['Email address'] = 'Epost adress'; $strings['Please Log In'] = 'Var god Logga in'; $strings['Keep me logged in'] = 'Komihåg inlogging
(kräver cookie)'; $strings['Password'] = 'Lösenord'; $strings['Log In'] = 'Logga In'; $strings['Get online help'] = 'Hjälp'; $strings['Language'] = 'Språk'; $strings['(Default)'] = '(Grundinställningar)'; $strings['Email Administrator'] = 'Epost Administratör'; $strings['N/A'] = 'N/A'; $strings['Summary'] = 'Summering'; $strings['View stats for schedule'] = 'Visa statestik för schema:'; $strings['At A Glance'] = 'At A Glance'; $strings['Total Users'] = 'Totalt Användare:'; $strings['Total Resources'] = 'Totalt Resurser:'; $strings['Total Reservations'] = 'Totalt Reservationer:'; $strings['Max Reservation'] = 'Max Reservationer:'; $strings['Min Reservation'] = 'Min Reservationer:'; $strings['Avg Reservation'] = 'Medel Reservationer:'; $strings['Most Active Resource'] = 'Mest Aktiv Resurs:'; $strings['Most Active User'] = 'Mest Aktiva Användare:'; $strings['System Stats'] = 'System Statestik:'; $strings['phpScheduleIt version'] = 'phpScheduleIt version:'; $strings['Database backend'] = 'Database backend:'; $strings['Database name'] = 'Database namn:'; $strings['PHP version'] = 'PHP version:'; $strings['Server OS'] = 'Server OS:'; $strings['Server name'] = 'Server name:'; $strings['phpScheduleIt root directory'] = 'phpScheduleIt root directory:'; $strings['Using permissions'] = 'Using permissions:'; $strings['Using logging'] = 'Using logging:'; $strings['Log file'] = 'Log file:'; $strings['Admin email address'] = 'Admin epost adress:'; $strings['Tech email address'] = 'Tech epost adress:'; $strings['CC email addresses'] = 'CC epost adresser:'; $strings['Reservation start time'] = 'Reservation start tid:'; $strings['Reservation end time'] = 'Reservation stopp tid:'; $strings['Days shown at a time'] = 'Dagar att visa samtidigt:'; $strings['Reservations'] = 'Reservationer'; $strings['Return to top'] = 'Tillbaka till början'; $strings['for'] = 'för'; $strings['Per page'] = 'Per sida:'; $strings['Page'] = 'Sida:'; $strings['You are not logged in!'] = 'Du är inte inloggad!'; $strings['Setup'] = 'Setup'; $strings['Invalid User Name/Password.'] = 'Ogiltigt Användarnamn/Lösenord.'; $strings['Valid username is required'] = 'Giltigt Användarnamn krävs'; $strings['Close'] = 'Stäng'; $strings['Admin'] = 'Admin'; $strings['My Quick Links'] = 'Meny'; $strings['Go to first page'] = 'Gå till första sidan'; $strings['Go to last page'] = 'Gå till sista sidan'; $strings['Sort by descending order'] = 'Sortera fallande'; $strings['Sort by ascending order'] = 'Sortera stigande'; $strings['Spam Quarantine'] = 'Spam Karantän'; $strings['Message View'] = 'Meddelande'; $strings['Attachment Quarantine'] = 'Bilagor Karantän'; $strings['No such content type'] = 'Finns inget sådant innehåll'; $strings['No message was selected'] = 'Inget meddelande valt ...'; $strings['Unknown action type'] = 'Okänd typ ...'; $strings['A problem occured when trying to release the following messages'] = 'Ett problem har uppstått när följande epost skulle levereras'; $strings['A problem occured when trying to delete the following messages'] = 'Ett problem har uppstått när följande epost skulle raderas'; $strings['Please release the following messages'] = 'Var god leverera följande epost'; $strings['To'] = 'Till'; $strings['From'] = 'Från'; $strings['Subject'] = 'Ämne'; $strings['Date'] = 'Datum'; $strings['Score'] = 'Poäng'; $strings['Mail ID'] = 'ID'; $strings['Status'] = 'Status'; $strings['Print'] = 'Skriv ut'; $strings['CloseWindow'] = 'Stäng'; $strings['Unknown server type'] = 'Okänd server typ ...'; $strings['Showing messages'] = "Visa epost %s till %s    (%s totat)\r\n"; $strings['View this message'] = 'Visa detta meddelande'; $strings['Message Unavailable'] = 'Meddelande finns ej'; $strings['My Quarantine'] = 'Min Karantän'; $strings['Site Quarantine'] = 'Server Karantän'; $strings['Message Processing'] = 'Meddelande Porcessas'; $strings['Quarantine Summary'] = 'Summering Karantän'; $strings['Site Quarantine Summary'] = 'Summering Server Karantän'; $strings['Login'] = 'Användarnamn'; $strings['spam(s)'] = 'spam(s)'; $strings['attachment(s)'] = 'bilaga(or)'; $strings['pending release request(s)'] = 'väntande leverans godkännande'; $strings['virus(es)'] = 'virus(es)'; $strings['bad header(s)'] = 'felaktigt eposthuvud(en)'; $strings['You have to type some text'] = 'Du måste skriva in någon text'; $strings['Release'] = 'Leverera'; $strings['Release/Request release'] = 'Leverera/Begär leverans'; $strings['Request release'] = 'Begär leverans'; $strings['Delete'] = 'Radera'; $strings['Delete All'] = 'Radera Alla'; $strings['Release, Whitelist Sender'] = 'Lev. Vitlista Avsändare'; $strings['Release, Whitelist Domain'] = 'Lev. Vitlista Domän'; $strings['Delete, Blacklist Sender'] = 'Radera, Svartlista Avsändare'; $strings['Delete, Blacklist Domain'] = 'Radera, Svartlista Domän'; $strings['Send report and go back'] = 'Skicka rapport och gå tillbaka'; $strings['Go back'] = "Tillbaka"; $strings['Select All'] = "Välj Alla"; $strings['Clear All'] = "Välj Ingen"; $strings['Access Denied'] = "Behörighet Saknas"; $strings['My Pending Requests'] = "Mina väntande"; $strings['Site Pending Requests'] = "Server väntande"; $strings['Multiple Accounts'] = "Fler Konton"; ##new Multiple Accounts functions $strings['Cancel Request'] = "Avbryt begäran"; $strings['User is not allowed to login'] = "Användare är inte godkänd"; $strings['Authentication successful'] = "Identifiering ok"; $strings['Authentication failed'] = "Identifiering misslyckad"; $strings['LDAP connection failed'] = "LDAP/AD koppling misslyckades"; $strings['Logout successful'] = "Utloggning OK"; $strings['IMAP Authentication: no match'] = "IMAP Authentication: no match"; $strings['Search for messages whose:'] = "Sök efter meddelande:"; $strings['Content Type'] = "Typ"; $strings['Clear search results'] = "Rensa söking"; $strings['contains'] = "innehåller"; $strings['doesn\'t contain'] = "innehåller ej"; $strings['equals'] = "lika med"; $strings['doesn\'t equal'] = "ej lika med"; $strings['All'] = "Alla"; $strings['Spam'] = "Spam"; $strings['Banned'] = "Banned"; $strings['Virus'] = "Virus"; $strings['Viruses'] = "Virus"; $strings['Bad Header'] = "Felaktigt Eposthuvud"; $strings['Bad Headers'] = "Felaktiga Eposthuvuden"; $strings['Pending Requests'] = "Väntar på leverans"; $strings['last'] = "senaste"; $strings['first'] = "första"; $strings['previous'] = "föregående"; $strings['next'] = 'nästa'; $strings['There was an error executing your query'] = 'Något gick fel:'; $strings['There are no matching records.'] = 'Det finns inget som passar sökningen.'; $strings['Domain'] = 'Domän'; $strings['Total'] = 'Totalt'; $strings['X-Amavis-Alert'] = 'X-Amavis-Alert'; $strings['Loading Summary...'] = 'Laddar Summering...'; $strings['Retrieving Messages...'] = 'Hämtar Meddelanden...'; $strings['Retrieving Configuration...'] = 'Laddar Konfiguration...'; ##new Multiple Accounts functions $strings['Attached Email'] = 'Alternativ Epost'; ##new Multiple Accounts functions ?>