1 | <?php |
---|
2 | // +-----------------------------------------------------------------------+ |
---|
3 | // | Piwigo - a PHP based photo gallery | |
---|
4 | // +-----------------------------------------------------------------------+ |
---|
5 | // | Copyright(C) 2008-2012 Piwigo Team http://piwigo.org | |
---|
6 | // | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net | |
---|
7 | // | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick | |
---|
8 | // +-----------------------------------------------------------------------+ |
---|
9 | // | This program is free software; you can redistribute it and/or modify | |
---|
10 | // | it under the terms of the GNU General Public License as published by | |
---|
11 | // | the Free Software Foundation | |
---|
12 | // | | |
---|
13 | // | This program is distributed in the hope that it will be useful, but | |
---|
14 | // | WITHOUT ANY WARRANTY; without even the implied warranty of | |
---|
15 | // | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
---|
16 | // | General Public License for more details. | |
---|
17 | // | | |
---|
18 | // | You should have received a copy of the GNU General Public License | |
---|
19 | // | along with this program; if not, write to the Free Software | |
---|
20 | // | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, | |
---|
21 | // | USA. | |
---|
22 | // +-----------------------------------------------------------------------+ |
---|
23 | |
---|
24 | $lang['Your name'] = 'Namn'; |
---|
25 | $lang['Your e-mail'] = 'E-post'; |
---|
26 | $lang['Subject'] = 'Ämne'; |
---|
27 | $lang['Message'] = 'Meddelande'; |
---|
28 | $lang['General configuration'] = 'Allmäna inställningar'; |
---|
29 | $lang['Add link in menu'] = 'Inkludera länk i menyn'; |
---|
30 | $lang['Allow guests to see the form'] = 'Tillåt gäster att använda formuläret'; |
---|
31 | $lang['E-mail address is mandatory'] = 'Obligatorisk e-postadress'; |
---|
32 | $lang['Name is mandatory'] = 'Obligatoriskt namn'; |
---|
33 | $lang['E-mail configuration'] = 'E-post inställningar'; |
---|
34 | $lang['Text before the contact form'] = 'Text före kontaktformuläret'; |
---|
35 | $lang['Text after the contact form'] = 'Text efter kontaktformuläret'; |
---|
36 | $lang['E-mail sent successfully'] = 'E-post har skickats'; |
---|
37 | $lang['Please enter a name'] = 'Ange ett namn'; |
---|
38 | $lang['Please enter a subject'] = 'Ange ett ämnet'; |
---|
39 | $lang['Please enter a message'] = 'Skriv ett meddelande'; |
---|
40 | $lang['Error while sending e-mail'] = 'Fel vid sändning av e-post'; |
---|
41 | |
---|
42 | $lang['Prefix of the sent e-mail subject'] = 'Prefix för skickat e-postämne'; |
---|
43 | $lang['Redirect after sending email (optional)'] = 'Omdirigera efter skickad e-post (valfritt)'; |
---|
44 | $lang['can be translated with LocalFiles Editor plugin'] = 'kan översättas med LocalFiles Editor plugin'; |
---|
45 | $lang['Each category is displayed as a distinct "service" on the contact form (example: "Technical", "Commercial", "General question"). Using categories is not mandatory.'] = 'Varje kategori visas som en distinkt "tjänst" på kontaktformuläret (t.ex: "Teknik", "Affärsrelaterat","Allmänt"). Det är inte obligatoriskt att använda kategorier.'; |
---|
46 | $lang['Default e-mail subject'] = 'Standardämne för e-post'; |
---|
47 | $lang['%s must not be more than %d characters long'] = '%s får inte vara längre än %d tecken långt'; |
---|
48 | $lang['%s must not be less than %d characters long'] = '%s får inte vara färre än %d tecken långt'; |
---|
49 | $lang['E-mail format :'] = 'E-post format:'; |
---|
50 | $lang['No active email address'] = 'Ingen aktiv e-postadress'; |
---|
51 | $lang['Send copy to my email'] = 'Skicka en kopia till min e-postadress'; |
---|
52 | $lang['you can use "%gallery_title%"'] = 'du kan använda "%gallery_title%"'; |
---|
53 | $lang['Plain text'] = 'Klartext'; |
---|
54 | $lang['Please choose a category'] = 'Vänligen välj en kategori'; |
---|
55 | $lang['Please enter an e-mail'] = 'Vänligen ange e-post'; |
---|
56 | $lang['Send'] = 'Skicka'; |
---|
57 | $lang['Tip'] = 'Tips'; |
---|
58 | $lang['+ Add a category'] = '+ Lägg till en kategori'; |
---|
59 | $lang['+ Add an email'] = '+ Lägg till e-post'; |
---|
60 | $lang['Active'] = 'Aktiv'; |
---|
61 | $lang['Category'] = 'Kategori'; |
---|
62 | $lang['Invalid redirect URL'] = 'Felaktig ompeknings URL'; |
---|
63 | $lang['Name'] = 'Namn'; |
---|
64 | ?> |
---|