Some more l10n strings
[ajatus.git] / js / languages / fi_FI.js
blob90968a39c07677e0cf5d33f9ed4271ffb1926c5b
1 /*
2 * This file is part of
4 * Ajatus - Distributed CRM
5 * @requires jQuery v1.2.1
6 *
7 * Copyright (c) 2007 Jerry Jalava <jerry.jalava@gmail.com>
8 * Copyright (c) 2007 Nemein Oy <http://nemein.com>
9 * Website: http://ajatus.info
10 * Licensed under the GPL license
11 * http://www.gnu.org/licenses/gpl.html
15 (function($){
16 $.ajatus = $.ajatus || {};
17 $.ajatus.i10n = $.ajatus.i10n || {};
19 $.ajatus.i10n.currency = {
20 name: 'Euro',
21 symbol: '€'
24 $.ajatus.i10n.dict = {
25 "fi_FI": "Suomi",
27 "distributed crm": "Jaettu CRM",
28 "loading ajatus": "Ladataan Ajatus",
30 "failed": "epäonnistui",
31 "ok": "ok",
32 "continue": "Jatka",
33 "type": "Tyyppi",
34 "undo": "Kumoa",
35 "archive": "Arkistoi",
36 "archived": "Arkistoitu",
37 "delete": "Poista",
38 "deleted": "Poistettu",
39 "undelete": "Palauta",
40 "view": "Katso",
41 "view item": "Näytä objekti",
42 "edit": "Muokkaa",
43 "edit %s": "Muokkaa %s",
44 "save": "Tallenna",
45 "create": "Luo",
46 "create %s": "Luo %s",
47 "cancel": "Peruuta",
48 "new": "Uusi",
49 "add field": "Lisää kenttä",
50 "actions": "Toiminnot",
52 "title": "Otsikko",
53 "description": "Kuvaus",
54 "date": "Päivämäärä",
55 "firstname": "Etunimi",
56 "lastname": "Sukunimi",
57 "email": "Sähköposti",
58 "phone": "Puhelin",
59 "hours": "Tunnit",
60 "amount": "Summa",
61 "vat": "ALV",
63 // Field types
64 "wiki": "Wiki",
65 "text": "Teksti",
66 "boolean": "Kyllä/ei",
67 "integer": "Numero",
68 "selection": "Valinta",
70 "global tag": "Yleinen Tag-merkintä",
71 "related objects": "Liittyvät objektit",
72 "widget": "Kenttä",
73 "select one": "Valitse yksi",
74 "edit mode": "Muokkaus",
75 "preview mode": "Esikatselu",
77 "empty results": "Ei osumia",
78 "no %s found": "Yhtään %s ei löytynyt.",
80 // Installer
81 "installing": "Asennetaan",
82 "uninstalling": "Poistetaan",
83 "installing application database": "Asennetaan ohjelman tietokanta",
84 "uninstalling application database": "Poistetaan ohjelman tietokanta",
85 "preparing application database": "Valmistellaan ohjelman tietokantaa",
86 "installing application tags database": "Installing application tags database",
87 "uninstalling application tags database": "Uninstalling application tags database",
88 "installing application content database": "Installing application content database",
89 "uninstalling application content database": "Uninstalling application content database",
91 // Metadata
92 "creator": "Luoja",
93 "created": "Luotu",
94 "revisor": "Muokkaaja",
95 "revised": "Muokattu",
96 "archiver": "Arkistoija",
97 "archived": "Arkistoitu",
98 "deleted": "Poistettu",
100 // System views
101 "frontpage": "Etusivu",
102 "trash": "Roskakori",
103 "preferences": "Asetukset",
104 "tags": "Tagit",
106 // Content types
107 "note": "Muistiinpano",
108 "hour report": "Tunti raportti",
109 "event": "Tapahtuma",
110 "tag": "Tag-merkintä",
111 "contact": "Yhteystieto",
112 "expense": "Kuluraportti",
114 // Document actions
115 "unknown document action": "Ei-tuettu toimenpide",
116 "unknown action %s requested for object %s!": "Ei-tuettu toimenpide %s pyydetty tietueelle %s!",
117 "object deleted": "Tietue poistettu",
118 "object %s moved to trash.": "Tietue %s on siirretty roskakoriin.",
119 "object %s removed from ajatus.": "Tietue %s on poistettu Ajatuksesta.",
120 "object restored": "Tietue palautettu",
121 "object %s restored succesfully.": "Tietue %s on palautettu onnistuneesti.",
122 "emptying action pool": "Toimenpidejonoa tyhjennetään",
123 "running %s pooled actions.": "Ajetaan %s toimenpidettä jonosta.",
126 "test %s": "Testataan %s",
127 "%d comment": "%d kommentti",
128 "%d comment in %d doc": "%d komentti tietueelle %d",
130 // Date format
131 "dateformat": "DMY."
134 $.ajatus.i10n.inflections['fi_FI'] = {
135 plural: [
136 [/(uistiinpano)$/i, "$1t" ],
137 [/(hteystie)to$/i, "$1dot" ],
138 [/(unti raport)ti$/i, "$1tit" ],
139 [/(apahtuma)$/i, "$1t" ]
141 singular: [
142 [/(uistiinpano)t$/i, "$1" ],
143 [/(hteystie)dot$/i, "$1to" ],
144 [/(unti raport)tit$/i, "$1tti" ],
145 [/(apahtuma)t$/i, "$1" ]
147 irregular: [],
148 uncountable: []
150 })(jQuery);