diff options
| author | Roger Braun <rbraun@Bobble.local> | 2017-11-07 15:14:37 +0100 |
|---|---|---|
| committer | Roger Braun <rbraun@Bobble.local> | 2017-11-07 15:14:37 +0100 |
| commit | 7516cd859f0c9bc078548f801cbb6a63b72ced97 (patch) | |
| tree | 0bf5186d8739bad07c1a3b43b7d84d1a5fe3b104 /src/i18n/messages.js | |
| parent | 81b08498893b37fe58bdcde343b29396562dbe4c (diff) | |
Prepare for i18n.
Diffstat (limited to 'src/i18n/messages.js')
| -rw-r--r-- | src/i18n/messages.js | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/src/i18n/messages.js b/src/i18n/messages.js new file mode 100644 index 00000000..b39c57de --- /dev/null +++ b/src/i18n/messages.js @@ -0,0 +1,70 @@ +const de = { + nav: { + timeline: 'Zeitleiste' + } +} + +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, + en +} + +export default messages |
