aboutsummaryrefslogtreecommitdiff
path: root/src/i18n/messages.js
blob: 19704fdbd044de8af3ec6d18d130a0735a46c12b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
const de = {
  nav: {
    timeline: 'Zeitleiste'
  }
}

const fi = {
  nav: {
    timeline: 'Aikajana',
    mentions: 'Maininnat',
    public_tl: 'Julkinen Aikajana',
    twkn: 'Koko Tunnettu Verkosto'
  },
  user_card: {
    follows_you: 'Seuraa sinua!',
    following: 'Seuraat!',
    follow: 'Seuraa',
    statuses: 'Viestit',
    mute: 'Hiljennä',
    muted: 'Hiljennetty',
    followers: 'Seuraajat',
    followees: 'Seuraa',
    per_day: 'päivässä'
  },
  timeline: {
    show_new: 'Näytä uudet',
    error_fetching: 'Virhe ladatessa viestejä',
    up_to_date: 'Ajantasalla',
    load_older: 'Lataa vanhempia viestejä'
  },
  settings: {
    user_settings: 'Käyttäjän asetukset',
    name_bio: 'Nimi ja kuvaus',
    name: 'Nimi',
    bio: 'Kuvaus',
    avatar: 'Profiilikuva',
    current_avatar: 'Nykyinen profiilikuvasi',
    set_new_avatar: 'Aseta uusi profiilikuva',
    profile_banner: 'Juliste',
    current_profile_banner: 'Nykyinen julisteesi',
    set_new_profile_banner: 'Aseta uusi juliste',
    profile_background: 'Taustakuva',
    set_new_profile_background: 'Aseta uusi taustakuva',
    settings: 'Asetukset',
    theme: 'Teema',
    filtering: 'Suodatus',
    filtering_explanation: 'Kaikki viestit, jotka sisältävät näitä sanoja, suodatetaan. Yksi sana per rivi.',
    attachments: 'Liitteet',
    hide_attachments_in_tl: 'Piilota liitteet aikajanalla',
    hide_attachments_in_convo: 'Piilota liitteet keskusteluissa',
    nsfw_clickthrough: 'Piilota NSFW liitteet klikkauksen taakse.',
    autoload: 'Lataa vanhempia viestejä automaattisesti ruudun pohjalla',
    reply_link_preview: 'Keskusteluiden vastauslinkkien esikatselu'
  },
  notifications: {
    notifications: 'Ilmoitukset',
    read: 'Lue!',
    followed_you: 'seuraa sinua'
  },
  general: {
    submit: 'Lähetä'
  }
}

const en = {
  nav: {
    timeline: 'Timeline',
    mentions: 'Mentions',
    public_tl: 'Public Timeline',
    twkn: 'The Whole Known Network'
  },
  user_card: {
    follows_you: 'Follows you!',
    following: 'Following!',
    follow: 'Follow',
    statuses: 'Statuses',
    mute: 'Mute',
    muted: 'Muted',
    followers: 'Followers',
    followees: 'Following',
    per_day: 'per day'
  },
  timeline: {
    show_new: 'Show new',
    error_fetching: 'Error fetching updates',
    up_to_date: 'Up-to-date',
    load_older: 'Load older statuses'
  },
  settings: {
    user_settings: 'User Settings',
    name_bio: 'Name & Bio',
    name: 'Name',
    bio: 'Bio',
    avatar: 'Avatar',
    current_avatar: 'Your current avatar',
    set_new_avatar: 'Set new avatar',
    profile_banner: 'Profile Banner',
    current_profile_banner: 'Your current profile banner',
    set_new_profile_banner: 'Set new profile banner',
    profile_background: 'Profile Background',
    set_new_profile_background: 'Set new profile background',
    settings: 'Settings',
    theme: 'Theme',
    filtering: 'Filtering',
    filtering_explanation: 'All notices containing these words will be muted, one per line',
    attachments: 'Attachments',
    hide_attachments_in_tl: 'Hide attachments in timeline',
    hide_attachments_in_convo: 'Hide attachments in conversations',
    nsfw_clickthrough: 'Enable clickthrough NSFW attachment hiding',
    autoload: 'Enable automatic loading when scrolled to the bottom',
    reply_link_preview: 'Enable reply-link preview on mouse hover'
  },
  notifications: {
    notifications: 'Notfications',
    read: 'Read!',
    followed_you: 'followed you'
  },
  general: {
    submit: 'Submit'
  }
}

const messages = {
  de,
  fi,
  en
}

export default messages