import type { Locale } from './layout'; const English: Locale = { navigation: { home: 'Home', completed: 'Completed', subtitleSchedule: 'Subtitle Schedule', newReleases: 'New Releases', tools: 'Tools', settings: 'Settings', profile: 'Profile', logIn: 'Log in with AniList', logOut: 'Log out' }, settings: { tooltips: { author: 'Author of due.moe' }, rssFeeds: { title: 'RSS Feeds', buttons: { copyToClipboard: 'Copy to clipboard' }, tooltips: { rss: 'Web feed data format' } }, display: { title: 'Display', categories: { media: { title: 'Media', fields: { outboundLinks: 'Outbound links', mediaTitleFormat: { title: 'Media title format', options: { english: 'English', romaji: 'Romaji', native: 'Native' }, fields: { showFurigana: 'Show furigana' } } } }, dateAndTime: { title: 'Date & Time', fields: { disableLastActivityWarning: 'Disable last activity warning', rightAlignCountdown: 'Align anime episode countdown to the right', use24HourTime: 'Use 24-hour time format for episode countdown', nativeEpisodeCountdown: 'Show episode countdown in native release date & time', abbreviateCountdown: 'Abbreviate episode countdown date & time units' } }, motionAndAccessibility: { title: 'Motion & Accessibility', fields: { disablePageTransitionAnimations: 'Disable page transition animations', disableNotifications: 'Disable notifications', limitPanelAreaToScreenHeight: 'Limit panel area to screen height', interfaceLanguage: 'Interface language' } }, collapsePanelsByDefault: 'Collapse panels by default', hidePanels: 'Hide panels', includeAdditionalMedia: 'Include additional media', helper: { title: 'Helper', options: { mai: 'Mai', nodoka: 'Nodoka', kaede: 'Kaede', none: 'None' }, hint: "Let them remind you. It's for your own benefit." } }, tooltips: { beta: 'Beta' } }, debug: { title: 'Debug', tooltips: { version: 'Current due.moe version hash' } }, calculation: { title: 'Calculation', fields: { roundDownChapters: { title: 'Round down chapters (recommended)', hint: 'Round chapters down to the nearest whole number (e.g., 50/50.6 would not be due)' }, showMediaWithZeroProgress: { title: 'Show media with zero progress', hint: 'May potentially cause rate-limiting if you have over ~80 unresolved manga on your lists' }, hideOutOfDateVolumeWarning: { title: 'Hide out-of-date volume warning' }, smartChapterCountEstimation: { title: 'Enable smart chapter count calculation' } } }, cache: { title: 'Cache' }, attributions: { title: 'Attributions' }, media: { anime: 'Anime', manga: 'Manga', upcomingAnime: 'Upcoming anime', pausedMedia: 'Paused media', unresolvedMedia: 'Unresolved media', plannedAnime: 'Planned anime' }, languages: { english: 'English', japanese: 'Japanese' } }, user: { badges: { backToProfile: 'Back to Profile', editMode: { disable: 'Disable Edit Mode', enable: 'Enable Edit Mode', imageURL: 'Image URL', activityURL: 'Activity URL', description: 'Description (Optional)', category: 'Category (Optional)', add: 'Add', update: 'Update', or: 'or', delete: 'Delete (Click Twice)' } } } }; export default English;