@@ -6,15 +6,19 @@ const strings = new LocalizedStrings({ quote: "Why is it 5 AM? Isn't there something simple I can use to track what I'm doing with all this time?", name: "Isaac Bythewood", sectionTimer: "Timer", sectionNavigation: "Navigation", sectionLog: "Log", keyReset: "alt+r - reset timer", keyAddLog: "alt+a - add log entry", keyTimerPage: "alt+t - move to timer page", keyLogPage: "alt+l - move to log page", keyAboutPage: "alt+o - move to about page", keyClearLog: "alt+c - clear log entries", keyNextLogEntry: "ArrowDown - move to next log entry", keyPreviousLogEntry: "ArrowUp - move to previous log entry", keyEditEntry: "alt+e - edit log enrty" keyEditEntry: "alt+e - edit log entry", keyDeleteSingleEntry: "alt+d - delete single log entry", keyClearLog: "alt+c - clear all log entries", }, // None of this is accurate past this line, someone please help me translate... jp: {
@@ -26,17 +30,21 @@ const strings = new LocalizedStrings({ pl: { title: "Timelite?", quote: "Czemu jest piąta rano? Nie ma czegoś prostego co mógłbym użyć do śledzenia, czemu mi czas ucieka?", "Czemu jest piąta rano? Nie ma czegoś prostego, co mógłbym użyć do śledzenia uciekającego czasu?", name: "Isaac Bythewood", sectionTimer: "Zegar", sectionNavigation: "Nawigacja", sectionLog: "Dziennik", keyReset: "alt+r - zerowanie zagara", keyAddLog: "alt+a - dodaj wpis do dziennika", keyTimerPage: "alt+t - przejdź na stronę zegara", keyLogPage: "alt+l - przejdź na stronę dziennika", keyAboutPage: "alt+o - przejdź na stronę o timelite", keyClearLog: "alt+c - wyczyść wpisy dziennika", keyNextLogEntry: "ArrowDown - przejdź do następnego wpisu", keyPreviousLogEntry: "ArrowUp - przejdź do poprzedniego wpisu", keyEditEntry: "alt+e - edytuj wpis dziennika" keyEditEntry: "alt+e - edytuj wpis dziennika", keyDeleteSingleEntry: "alt+d - skasuj pojedynczy wpis dziennika", keyClearLog: "alt+c - wyczyść wszystkie wpisy dziennika", }});
@@ -29,14 +29,26 @@ const About = () => { > {strings.name} </Creator> <KeysDescription>{strings.keyReset}</KeysDescription> <KeysDescription>{strings.keyAddLog}</KeysDescription> <KeysDescription>{strings.keyTimerPage}</KeysDescription> <KeysDescription>{strings.keyLogPage}</KeysDescription> <KeysDescription>{strings.keyAboutPage}</KeysDescription> <KeysDescription>{strings.keyClearLog}</KeysDescription> <KeysDescription>{strings.keyNextLogEntry}</KeysDescription> <KeysDescription>{strings.keyPreviousLogEntry}</KeysDescription> <DescriptionContainer> <KeysColumn> <SectionTitle>Timer</SectionTitle> <KeysDescription>{strings.keyReset}</KeysDescription> <KeysDescription>{strings.keyAddLog}</KeysDescription> <KeysDescription><p></p></KeysDescription> <SectionTitle>Navigation</SectionTitle> <KeysDescription>{strings.keyTimerPage}</KeysDescription> <KeysDescription>{strings.keyLogPage}</KeysDescription> <KeysDescription>{strings.keyAboutPage}</KeysDescription> </KeysColumn> <KeysColumn> <SectionTitle>Log</SectionTitle> <KeysDescription>{strings.keyNextLogEntry}</KeysDescription> <KeysDescription>{strings.keyPreviousLogEntry}</KeysDescription> <KeysDescription>{strings.keyEditEntry}</KeysDescription> <KeysDescription>{strings.keyDeleteSingleEntry}</KeysDescription> <KeysDescription>{strings.keyClearLog}</KeysDescription> </KeysColumn> </DescriptionContainer> </Main> </Grid> </Page>
@@ -151,14 +163,33 @@ const Blockquote = styled.blockquote` font-size: 1.2em; }`;const DescriptionContainer = styled.div`display: flex;`const KeysColumn = styled.div`flex: 1;`;const SectionTitle = styled.div`font-size: 1.5em;text-decoration: underline;margin: 0 0 0 0;position: relative;text-align: left;max-width: 500px;opacity: 0;animation-name: ${FadeRight};animation-fill-mode: forwards;animation-duration: 1000ms;animation-delay: 500ms;animation-timing-function: ease-out;`;const KeysDescription = styled.blockquote` font-size: 1.5em; margin: 0 0 0 0; font-size: 1em; position: relative; text-align: left; max-width: 500px; opacity: 0; text-indent: 1em;text-align: left; margin: 0 0 0 0; animation-name: ${FadeRight}; animation-fill-mode: forwards; animation-duration: 1000ms;