mirror of
https://github.com/Athou/commafeed.git
synced 2026-03-21 21:37:29 +00:00
restore swipe-to-right to toggle read/unread status (#1019)
This commit is contained in:
15
commafeed-client/package-lock.json
generated
15
commafeed-client/package-lock.json
generated
@@ -34,6 +34,7 @@
|
|||||||
"react-infinite-scroller": "^1.2.6",
|
"react-infinite-scroller": "^1.2.6",
|
||||||
"react-redux": "^8.0.4",
|
"react-redux": "^8.0.4",
|
||||||
"react-router-dom": "^6.4.2",
|
"react-router-dom": "^6.4.2",
|
||||||
|
"react-swipeable": "^7.0.0",
|
||||||
"swagger-ui-react": "^4.15.2",
|
"swagger-ui-react": "^4.15.2",
|
||||||
"tinycon": "^0.6.8"
|
"tinycon": "^0.6.8"
|
||||||
},
|
},
|
||||||
@@ -8657,6 +8658,14 @@
|
|||||||
"react-dom": ">=16.8"
|
"react-dom": ">=16.8"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"node_modules/react-swipeable": {
|
||||||
|
"version": "7.0.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/react-swipeable/-/react-swipeable-7.0.0.tgz",
|
||||||
|
"integrity": "sha512-NI7KGfQ6gwNFN0Hor3vytYW3iRfMMaivGEuxcADOOfBCx/kqwXE8IfHFxEcxSUkxCYf38COLKYd9EMYZghqaUA==",
|
||||||
|
"peerDependencies": {
|
||||||
|
"react": "^16.8.3 || ^17 || ^18"
|
||||||
|
}
|
||||||
|
},
|
||||||
"node_modules/react-syntax-highlighter": {
|
"node_modules/react-syntax-highlighter": {
|
||||||
"version": "15.5.0",
|
"version": "15.5.0",
|
||||||
"resolved": "https://registry.npmjs.org/react-syntax-highlighter/-/react-syntax-highlighter-15.5.0.tgz",
|
"resolved": "https://registry.npmjs.org/react-syntax-highlighter/-/react-syntax-highlighter-15.5.0.tgz",
|
||||||
@@ -16321,6 +16330,12 @@
|
|||||||
"react-router": "6.4.2"
|
"react-router": "6.4.2"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"react-swipeable": {
|
||||||
|
"version": "7.0.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/react-swipeable/-/react-swipeable-7.0.0.tgz",
|
||||||
|
"integrity": "sha512-NI7KGfQ6gwNFN0Hor3vytYW3iRfMMaivGEuxcADOOfBCx/kqwXE8IfHFxEcxSUkxCYf38COLKYd9EMYZghqaUA==",
|
||||||
|
"requires": {}
|
||||||
|
},
|
||||||
"react-syntax-highlighter": {
|
"react-syntax-highlighter": {
|
||||||
"version": "15.5.0",
|
"version": "15.5.0",
|
||||||
"resolved": "https://registry.npmjs.org/react-syntax-highlighter/-/react-syntax-highlighter-15.5.0.tgz",
|
"resolved": "https://registry.npmjs.org/react-syntax-highlighter/-/react-syntax-highlighter-15.5.0.tgz",
|
||||||
|
|||||||
@@ -41,6 +41,7 @@
|
|||||||
"react-infinite-scroller": "^1.2.6",
|
"react-infinite-scroller": "^1.2.6",
|
||||||
"react-redux": "^8.0.4",
|
"react-redux": "^8.0.4",
|
||||||
"react-router-dom": "^6.4.2",
|
"react-router-dom": "^6.4.2",
|
||||||
|
"react-swipeable": "^7.0.0",
|
||||||
"swagger-ui-react": "^4.15.2",
|
"swagger-ui-react": "^4.15.2",
|
||||||
"tinycon": "^0.6.8"
|
"tinycon": "^0.6.8"
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -103,6 +103,8 @@ export function KeyboardShortcutsHelp() {
|
|||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<Kbd>M</Kbd>
|
<Kbd>M</Kbd>
|
||||||
|
<span>, </span>
|
||||||
|
<Trans>Swipe header to the right</Trans>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
|
|||||||
@@ -1,8 +1,10 @@
|
|||||||
import { Anchor, Box, createStyles, Divider, Paper } from "@mantine/core"
|
import { Anchor, Box, createStyles, Divider, Paper } from "@mantine/core"
|
||||||
import { Constants } from "app/constants"
|
import { Constants } from "app/constants"
|
||||||
import { useAppSelector } from "app/store"
|
import { markEntry } from "app/slices/entries"
|
||||||
|
import { useAppDispatch, useAppSelector } from "app/store"
|
||||||
import { Entry } from "app/types"
|
import { Entry } from "app/types"
|
||||||
import React from "react"
|
import React from "react"
|
||||||
|
import { useSwipeable } from "react-swipeable"
|
||||||
import { FeedEntryBody } from "./FeedEntryBody"
|
import { FeedEntryBody } from "./FeedEntryBody"
|
||||||
import { FeedEntryCompactHeader } from "./FeedEntryCompactHeader"
|
import { FeedEntryCompactHeader } from "./FeedEntryCompactHeader"
|
||||||
import { FeedEntryFooter } from "./FeedEntryFooter"
|
import { FeedEntryFooter } from "./FeedEntryFooter"
|
||||||
@@ -45,8 +47,14 @@ const useStyles = createStyles((theme, props: FeedEntryProps) => {
|
|||||||
export function FeedEntry(props: FeedEntryProps) {
|
export function FeedEntry(props: FeedEntryProps) {
|
||||||
const { classes } = useStyles(props)
|
const { classes } = useStyles(props)
|
||||||
const viewMode = useAppSelector(state => state.user.settings?.viewMode)
|
const viewMode = useAppSelector(state => state.user.settings?.viewMode)
|
||||||
|
const dispatch = useAppDispatch()
|
||||||
|
|
||||||
const compactHeader = viewMode === "title" && !props.expanded
|
const compactHeader = viewMode === "title" && !props.expanded
|
||||||
|
|
||||||
|
const swipeHandlers = useSwipeable({
|
||||||
|
onSwipedRight: () => dispatch(markEntry({ entry: props.entry, read: !props.entry.read })),
|
||||||
|
})
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Paper withBorder className={classes.paper}>
|
<Paper withBorder className={classes.paper}>
|
||||||
<Anchor
|
<Anchor
|
||||||
@@ -57,7 +65,7 @@ export function FeedEntry(props: FeedEntryProps) {
|
|||||||
onClick={props.onHeaderClick}
|
onClick={props.onHeaderClick}
|
||||||
onAuxClick={props.onHeaderClick}
|
onAuxClick={props.onHeaderClick}
|
||||||
>
|
>
|
||||||
<Box p="xs">
|
<Box p="xs" {...swipeHandlers}>
|
||||||
{compactHeader && <FeedEntryCompactHeader entry={props.entry} />}
|
{compactHeader && <FeedEntryCompactHeader entry={props.entry} />}
|
||||||
{!compactHeader && <FeedEntryHeader entry={props.entry} expanded={props.expanded} />}
|
{!compactHeader && <FeedEntryHeader entry={props.entry} expanded={props.expanded} />}
|
||||||
</Box>
|
</Box>
|
||||||
|
|||||||
@@ -681,6 +681,10 @@ msgstr "الاشتراك في موجز ويب"
|
|||||||
msgid "Success"
|
msgid "Success"
|
||||||
msgstr "النجاح"
|
msgstr "النجاح"
|
||||||
|
|
||||||
|
#: src/components/KeyboardShortcutsHelp.tsx
|
||||||
|
msgid "Swipe header to the right"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/components/header/ProfileMenu.tsx
|
#: src/components/header/ProfileMenu.tsx
|
||||||
msgid "Switch to dark theme"
|
msgid "Switch to dark theme"
|
||||||
msgstr "التبديل إلى النسق الداكن"
|
msgstr "التبديل إلى النسق الداكن"
|
||||||
|
|||||||
@@ -681,6 +681,10 @@ msgstr "Subscriu-te al canal"
|
|||||||
msgid "Success"
|
msgid "Success"
|
||||||
msgstr "Éxit"
|
msgstr "Éxit"
|
||||||
|
|
||||||
|
#: src/components/KeyboardShortcutsHelp.tsx
|
||||||
|
msgid "Swipe header to the right"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/components/header/ProfileMenu.tsx
|
#: src/components/header/ProfileMenu.tsx
|
||||||
msgid "Switch to dark theme"
|
msgid "Switch to dark theme"
|
||||||
msgstr "Canvia al tema fosc"
|
msgstr "Canvia al tema fosc"
|
||||||
|
|||||||
@@ -681,6 +681,10 @@ msgstr "Přihlaste se k odběru kanálu"
|
|||||||
msgid "Success"
|
msgid "Success"
|
||||||
msgstr "Úspěch"
|
msgstr "Úspěch"
|
||||||
|
|
||||||
|
#: src/components/KeyboardShortcutsHelp.tsx
|
||||||
|
msgid "Swipe header to the right"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/components/header/ProfileMenu.tsx
|
#: src/components/header/ProfileMenu.tsx
|
||||||
msgid "Switch to dark theme"
|
msgid "Switch to dark theme"
|
||||||
msgstr "Přepněte na tmavý motiv"
|
msgstr "Přepněte na tmavý motiv"
|
||||||
|
|||||||
@@ -681,6 +681,10 @@ msgstr "Tanysgrifio i'r porthiant"
|
|||||||
msgid "Success"
|
msgid "Success"
|
||||||
msgstr "Llwyddiant"
|
msgstr "Llwyddiant"
|
||||||
|
|
||||||
|
#: src/components/KeyboardShortcutsHelp.tsx
|
||||||
|
msgid "Swipe header to the right"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/components/header/ProfileMenu.tsx
|
#: src/components/header/ProfileMenu.tsx
|
||||||
msgid "Switch to dark theme"
|
msgid "Switch to dark theme"
|
||||||
msgstr "Newid i thema dywyll"
|
msgstr "Newid i thema dywyll"
|
||||||
|
|||||||
@@ -681,6 +681,10 @@ msgstr "Abonner på feedet"
|
|||||||
msgid "Success"
|
msgid "Success"
|
||||||
msgstr "Succes"
|
msgstr "Succes"
|
||||||
|
|
||||||
|
#: src/components/KeyboardShortcutsHelp.tsx
|
||||||
|
msgid "Swipe header to the right"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/components/header/ProfileMenu.tsx
|
#: src/components/header/ProfileMenu.tsx
|
||||||
msgid "Switch to dark theme"
|
msgid "Switch to dark theme"
|
||||||
msgstr "Skift til mørkt tema"
|
msgstr "Skift til mørkt tema"
|
||||||
|
|||||||
@@ -681,6 +681,10 @@ msgstr "Feed abonnieren"
|
|||||||
msgid "Success"
|
msgid "Success"
|
||||||
msgstr "Erfolg"
|
msgstr "Erfolg"
|
||||||
|
|
||||||
|
#: src/components/KeyboardShortcutsHelp.tsx
|
||||||
|
msgid "Swipe header to the right"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/components/header/ProfileMenu.tsx
|
#: src/components/header/ProfileMenu.tsx
|
||||||
msgid "Switch to dark theme"
|
msgid "Switch to dark theme"
|
||||||
msgstr "Zum dunklen Design wechseln"
|
msgstr "Zum dunklen Design wechseln"
|
||||||
|
|||||||
@@ -681,6 +681,10 @@ msgstr "Subscribe to the feed"
|
|||||||
msgid "Success"
|
msgid "Success"
|
||||||
msgstr "Success"
|
msgstr "Success"
|
||||||
|
|
||||||
|
#: src/components/KeyboardShortcutsHelp.tsx
|
||||||
|
msgid "Swipe header to the right"
|
||||||
|
msgstr "Swipe header to the right"
|
||||||
|
|
||||||
#: src/components/header/ProfileMenu.tsx
|
#: src/components/header/ProfileMenu.tsx
|
||||||
msgid "Switch to dark theme"
|
msgid "Switch to dark theme"
|
||||||
msgstr "Switch to dark theme"
|
msgstr "Switch to dark theme"
|
||||||
|
|||||||
@@ -681,6 +681,10 @@ msgstr "Suscríbete a la fuente"
|
|||||||
msgid "Success"
|
msgid "Success"
|
||||||
msgstr "Éxito"
|
msgstr "Éxito"
|
||||||
|
|
||||||
|
#: src/components/KeyboardShortcutsHelp.tsx
|
||||||
|
msgid "Swipe header to the right"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/components/header/ProfileMenu.tsx
|
#: src/components/header/ProfileMenu.tsx
|
||||||
msgid "Switch to dark theme"
|
msgid "Switch to dark theme"
|
||||||
msgstr "Cambiar a tema oscuro"
|
msgstr "Cambiar a tema oscuro"
|
||||||
|
|||||||
@@ -681,6 +681,10 @@ msgstr "در فید مشترک شوید"
|
|||||||
msgid "Success"
|
msgid "Success"
|
||||||
msgstr "موفقیت"
|
msgstr "موفقیت"
|
||||||
|
|
||||||
|
#: src/components/KeyboardShortcutsHelp.tsx
|
||||||
|
msgid "Swipe header to the right"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/components/header/ProfileMenu.tsx
|
#: src/components/header/ProfileMenu.tsx
|
||||||
msgid "Switch to dark theme"
|
msgid "Switch to dark theme"
|
||||||
msgstr "تغییر به تم تیره"
|
msgstr "تغییر به تم تیره"
|
||||||
|
|||||||
@@ -681,6 +681,10 @@ msgstr "Tilaa syöte"
|
|||||||
msgid "Success"
|
msgid "Success"
|
||||||
msgstr "Onnistui"
|
msgstr "Onnistui"
|
||||||
|
|
||||||
|
#: src/components/KeyboardShortcutsHelp.tsx
|
||||||
|
msgid "Swipe header to the right"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/components/header/ProfileMenu.tsx
|
#: src/components/header/ProfileMenu.tsx
|
||||||
msgid "Switch to dark theme"
|
msgid "Switch to dark theme"
|
||||||
msgstr "Vaihda tummaan teemaan"
|
msgstr "Vaihda tummaan teemaan"
|
||||||
|
|||||||
@@ -681,6 +681,10 @@ msgstr "S'abonner au flux"
|
|||||||
msgid "Success"
|
msgid "Success"
|
||||||
msgstr "Succès"
|
msgstr "Succès"
|
||||||
|
|
||||||
|
#: src/components/KeyboardShortcutsHelp.tsx
|
||||||
|
msgid "Swipe header to the right"
|
||||||
|
msgstr "Faire glisser le titre vers la droite"
|
||||||
|
|
||||||
#: src/components/header/ProfileMenu.tsx
|
#: src/components/header/ProfileMenu.tsx
|
||||||
msgid "Switch to dark theme"
|
msgid "Switch to dark theme"
|
||||||
msgstr "Activer le mode sombre"
|
msgstr "Activer le mode sombre"
|
||||||
|
|||||||
@@ -681,6 +681,10 @@ msgstr "Subscríbete ao feed"
|
|||||||
msgid "Success"
|
msgid "Success"
|
||||||
msgstr "Éxito"
|
msgstr "Éxito"
|
||||||
|
|
||||||
|
#: src/components/KeyboardShortcutsHelp.tsx
|
||||||
|
msgid "Swipe header to the right"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/components/header/ProfileMenu.tsx
|
#: src/components/header/ProfileMenu.tsx
|
||||||
msgid "Switch to dark theme"
|
msgid "Switch to dark theme"
|
||||||
msgstr "Cambiar ao tema escuro"
|
msgstr "Cambiar ao tema escuro"
|
||||||
|
|||||||
@@ -681,6 +681,10 @@ msgstr "Feliratkozás a hírfolyamra"
|
|||||||
msgid "Success"
|
msgid "Success"
|
||||||
msgstr "Siker"
|
msgstr "Siker"
|
||||||
|
|
||||||
|
#: src/components/KeyboardShortcutsHelp.tsx
|
||||||
|
msgid "Swipe header to the right"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/components/header/ProfileMenu.tsx
|
#: src/components/header/ProfileMenu.tsx
|
||||||
msgid "Switch to dark theme"
|
msgid "Switch to dark theme"
|
||||||
msgstr "Váltás sötét témára"
|
msgstr "Váltás sötét témára"
|
||||||
|
|||||||
@@ -681,6 +681,10 @@ msgstr "Berlangganan umpan"
|
|||||||
msgid "Success"
|
msgid "Success"
|
||||||
msgstr "Sukses"
|
msgstr "Sukses"
|
||||||
|
|
||||||
|
#: src/components/KeyboardShortcutsHelp.tsx
|
||||||
|
msgid "Swipe header to the right"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/components/header/ProfileMenu.tsx
|
#: src/components/header/ProfileMenu.tsx
|
||||||
msgid "Switch to dark theme"
|
msgid "Switch to dark theme"
|
||||||
msgstr "Beralih ke tema gelap"
|
msgstr "Beralih ke tema gelap"
|
||||||
|
|||||||
@@ -681,6 +681,10 @@ msgstr "Iscriviti al feed"
|
|||||||
msgid "Success"
|
msgid "Success"
|
||||||
msgstr "Successo"
|
msgstr "Successo"
|
||||||
|
|
||||||
|
#: src/components/KeyboardShortcutsHelp.tsx
|
||||||
|
msgid "Swipe header to the right"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/components/header/ProfileMenu.tsx
|
#: src/components/header/ProfileMenu.tsx
|
||||||
msgid "Switch to dark theme"
|
msgid "Switch to dark theme"
|
||||||
msgstr "Passa al tema scuro"
|
msgstr "Passa al tema scuro"
|
||||||
|
|||||||
@@ -681,6 +681,10 @@ msgstr "フィードを購読する"
|
|||||||
msgid "Success"
|
msgid "Success"
|
||||||
msgstr "成功"
|
msgstr "成功"
|
||||||
|
|
||||||
|
#: src/components/KeyboardShortcutsHelp.tsx
|
||||||
|
msgid "Swipe header to the right"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/components/header/ProfileMenu.tsx
|
#: src/components/header/ProfileMenu.tsx
|
||||||
msgid "Switch to dark theme"
|
msgid "Switch to dark theme"
|
||||||
msgstr "ダークテーマに切り替え"
|
msgstr "ダークテーマに切り替え"
|
||||||
|
|||||||
@@ -681,6 +681,10 @@ msgstr "피드 구독"
|
|||||||
msgid "Success"
|
msgid "Success"
|
||||||
msgstr "성공"
|
msgstr "성공"
|
||||||
|
|
||||||
|
#: src/components/KeyboardShortcutsHelp.tsx
|
||||||
|
msgid "Swipe header to the right"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/components/header/ProfileMenu.tsx
|
#: src/components/header/ProfileMenu.tsx
|
||||||
msgid "Switch to dark theme"
|
msgid "Switch to dark theme"
|
||||||
msgstr "어두운 테마로 전환"
|
msgstr "어두운 테마로 전환"
|
||||||
|
|||||||
@@ -681,6 +681,10 @@ msgstr "Langgan suapan"
|
|||||||
msgid "Success"
|
msgid "Success"
|
||||||
msgstr "Kejayaan"
|
msgstr "Kejayaan"
|
||||||
|
|
||||||
|
#: src/components/KeyboardShortcutsHelp.tsx
|
||||||
|
msgid "Swipe header to the right"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/components/header/ProfileMenu.tsx
|
#: src/components/header/ProfileMenu.tsx
|
||||||
msgid "Switch to dark theme"
|
msgid "Switch to dark theme"
|
||||||
msgstr "Tukar kepada tema gelap"
|
msgstr "Tukar kepada tema gelap"
|
||||||
|
|||||||
@@ -681,6 +681,10 @@ msgstr "Abonner på feeden"
|
|||||||
msgid "Success"
|
msgid "Success"
|
||||||
msgstr "Suksess"
|
msgstr "Suksess"
|
||||||
|
|
||||||
|
#: src/components/KeyboardShortcutsHelp.tsx
|
||||||
|
msgid "Swipe header to the right"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/components/header/ProfileMenu.tsx
|
#: src/components/header/ProfileMenu.tsx
|
||||||
msgid "Switch to dark theme"
|
msgid "Switch to dark theme"
|
||||||
msgstr "Bytt til mørkt tema"
|
msgstr "Bytt til mørkt tema"
|
||||||
|
|||||||
@@ -681,6 +681,10 @@ msgstr "Abonneer je op de feed"
|
|||||||
msgid "Success"
|
msgid "Success"
|
||||||
msgstr "Succes"
|
msgstr "Succes"
|
||||||
|
|
||||||
|
#: src/components/KeyboardShortcutsHelp.tsx
|
||||||
|
msgid "Swipe header to the right"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/components/header/ProfileMenu.tsx
|
#: src/components/header/ProfileMenu.tsx
|
||||||
msgid "Switch to dark theme"
|
msgid "Switch to dark theme"
|
||||||
msgstr "Overschakelen naar donker thema"
|
msgstr "Overschakelen naar donker thema"
|
||||||
|
|||||||
@@ -681,6 +681,10 @@ msgstr "Abonner på feeden"
|
|||||||
msgid "Success"
|
msgid "Success"
|
||||||
msgstr "Suksess"
|
msgstr "Suksess"
|
||||||
|
|
||||||
|
#: src/components/KeyboardShortcutsHelp.tsx
|
||||||
|
msgid "Swipe header to the right"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/components/header/ProfileMenu.tsx
|
#: src/components/header/ProfileMenu.tsx
|
||||||
msgid "Switch to dark theme"
|
msgid "Switch to dark theme"
|
||||||
msgstr "Bytt til mørkt tema"
|
msgstr "Bytt til mørkt tema"
|
||||||
|
|||||||
@@ -681,6 +681,10 @@ msgstr "Subskrybuj kanał"
|
|||||||
msgid "Success"
|
msgid "Success"
|
||||||
msgstr "Sukces"
|
msgstr "Sukces"
|
||||||
|
|
||||||
|
#: src/components/KeyboardShortcutsHelp.tsx
|
||||||
|
msgid "Swipe header to the right"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/components/header/ProfileMenu.tsx
|
#: src/components/header/ProfileMenu.tsx
|
||||||
msgid "Switch to dark theme"
|
msgid "Switch to dark theme"
|
||||||
msgstr "Przełącz na ciemny motyw"
|
msgstr "Przełącz na ciemny motyw"
|
||||||
|
|||||||
@@ -681,6 +681,10 @@ msgstr "Inscrever-se no feed"
|
|||||||
msgid "Success"
|
msgid "Success"
|
||||||
msgstr "Sucesso"
|
msgstr "Sucesso"
|
||||||
|
|
||||||
|
#: src/components/KeyboardShortcutsHelp.tsx
|
||||||
|
msgid "Swipe header to the right"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/components/header/ProfileMenu.tsx
|
#: src/components/header/ProfileMenu.tsx
|
||||||
msgid "Switch to dark theme"
|
msgid "Switch to dark theme"
|
||||||
msgstr "Mudar para tema escuro"
|
msgstr "Mudar para tema escuro"
|
||||||
|
|||||||
@@ -681,6 +681,10 @@ msgstr "Подписаться на ленту"
|
|||||||
msgid "Success"
|
msgid "Success"
|
||||||
msgstr "Успех"
|
msgstr "Успех"
|
||||||
|
|
||||||
|
#: src/components/KeyboardShortcutsHelp.tsx
|
||||||
|
msgid "Swipe header to the right"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/components/header/ProfileMenu.tsx
|
#: src/components/header/ProfileMenu.tsx
|
||||||
msgid "Switch to dark theme"
|
msgid "Switch to dark theme"
|
||||||
msgstr "Переключиться на темную тему"
|
msgstr "Переключиться на темную тему"
|
||||||
|
|||||||
@@ -681,6 +681,10 @@ msgstr "Prihláste sa na odber kanála"
|
|||||||
msgid "Success"
|
msgid "Success"
|
||||||
msgstr "Úspech"
|
msgstr "Úspech"
|
||||||
|
|
||||||
|
#: src/components/KeyboardShortcutsHelp.tsx
|
||||||
|
msgid "Swipe header to the right"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/components/header/ProfileMenu.tsx
|
#: src/components/header/ProfileMenu.tsx
|
||||||
msgid "Switch to dark theme"
|
msgid "Switch to dark theme"
|
||||||
msgstr "Prepnúť na tmavú tému"
|
msgstr "Prepnúť na tmavú tému"
|
||||||
|
|||||||
@@ -681,6 +681,10 @@ msgstr "Prenumerera på flödet"
|
|||||||
msgid "Success"
|
msgid "Success"
|
||||||
msgstr "Framgång"
|
msgstr "Framgång"
|
||||||
|
|
||||||
|
#: src/components/KeyboardShortcutsHelp.tsx
|
||||||
|
msgid "Swipe header to the right"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/components/header/ProfileMenu.tsx
|
#: src/components/header/ProfileMenu.tsx
|
||||||
msgid "Switch to dark theme"
|
msgid "Switch to dark theme"
|
||||||
msgstr "Byt till mörkt tema"
|
msgstr "Byt till mörkt tema"
|
||||||
|
|||||||
@@ -681,6 +681,10 @@ msgstr "beslemeye abone olun"
|
|||||||
msgid "Success"
|
msgid "Success"
|
||||||
msgstr "Başarı"
|
msgstr "Başarı"
|
||||||
|
|
||||||
|
#: src/components/KeyboardShortcutsHelp.tsx
|
||||||
|
msgid "Swipe header to the right"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/components/header/ProfileMenu.tsx
|
#: src/components/header/ProfileMenu.tsx
|
||||||
msgid "Switch to dark theme"
|
msgid "Switch to dark theme"
|
||||||
msgstr "Karanlık temaya geç"
|
msgstr "Karanlık temaya geç"
|
||||||
|
|||||||
@@ -681,6 +681,10 @@ msgstr "订阅订阅源"
|
|||||||
msgid "Success"
|
msgid "Success"
|
||||||
msgstr "成功"
|
msgstr "成功"
|
||||||
|
|
||||||
|
#: src/components/KeyboardShortcutsHelp.tsx
|
||||||
|
msgid "Swipe header to the right"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/components/header/ProfileMenu.tsx
|
#: src/components/header/ProfileMenu.tsx
|
||||||
msgid "Switch to dark theme"
|
msgid "Switch to dark theme"
|
||||||
msgstr "切换到深色主题"
|
msgstr "切换到深色主题"
|
||||||
|
|||||||
Reference in New Issue
Block a user