refactor: 🌐 rework read and add missing translations
This commit is contained in:
parent
a30678bfd2
commit
2824431330
|
@ -18,8 +18,7 @@ OC.L10N.register(
|
|||
"Link copied to the clipboard" : "Der Link des Feeds wurde in die Zwischenablage kopiert",
|
||||
"Play" : "Abspielen",
|
||||
"Stop" : "Stopp",
|
||||
"Mark as read" : "Als gelesen markieren",
|
||||
"Mark as unread" : "Als ungelesen markieren",
|
||||
"Read" : "Gelesen",
|
||||
"Open website" : "Webseite aufrufen",
|
||||
"Could not fetch episodes" : "Folgen können nicht abgerufen werden",
|
||||
"Could not change the status of the episode" : "Kann den Status der Folge nicht ändern",
|
||||
|
@ -33,6 +32,7 @@ OC.L10N.register(
|
|||
"Import OPML file" : "Importiere OPML-Datei",
|
||||
"Rate RePod ❤️" : "Bewerte RePod ❤️",
|
||||
"Playback speed" : "Wiedergabegeschwindigkeit",
|
||||
"Favorite" : "Favorit",
|
||||
"Are you sure you want to delete this subscription?" : "Bist Du sicher, dass Du das Abonnement löschen möchtest?",
|
||||
"Error while removing the feed" : "Fehler beim Löschen des Feeds",
|
||||
"Add a podcast" : "Einen Podcast hinzufügen",
|
||||
|
|
|
@ -16,8 +16,7 @@
|
|||
"Link copied to the clipboard" : "Der Link des Feeds wurde in die Zwischenablage kopiert",
|
||||
"Play" : "Abspielen",
|
||||
"Stop" : "Stopp",
|
||||
"Mark as read" : "Als gelesen markieren",
|
||||
"Mark as unread" : "Als ungelesen markieren",
|
||||
"Read" : "Gelesen",
|
||||
"Open website" : "Webseite aufrufen",
|
||||
"Could not fetch episodes" : "Folgen können nicht abgerufen werden",
|
||||
"Could not change the status of the episode" : "Kann den Status der Folge nicht ändern",
|
||||
|
@ -31,6 +30,7 @@
|
|||
"Import OPML file" : "Importiere OPML-Datei",
|
||||
"Rate RePod ❤️" : "Bewerte RePod ❤️",
|
||||
"Playback speed" : "Wiedergabegeschwindigkeit",
|
||||
"Favorite" : "Favorit",
|
||||
"Are you sure you want to delete this subscription?" : "Bist Du sicher, dass Du das Abonnement löschen möchtest?",
|
||||
"Error while removing the feed" : "Fehler beim Löschen des Feeds",
|
||||
"Add a podcast" : "Einen Podcast hinzufügen",
|
||||
|
|
|
@ -18,8 +18,7 @@ OC.L10N.register(
|
|||
"Link copied to the clipboard" : "Lien vers le flux copié dans le presse-papiers",
|
||||
"Play" : "Lecture",
|
||||
"Stop" : "Arrêter",
|
||||
"Mark as read" : "Marquer comme lu",
|
||||
"Mark as unread" : "Marquer comme non lu",
|
||||
"Read" : "Lu",
|
||||
"Open website" : "Ouvrir le site web",
|
||||
"Could not fetch episodes" : "Impossible de récuprer les épisodes",
|
||||
"Could not change the status of the episode" : "Impossible de changer le status de l'épisode",
|
||||
|
@ -33,6 +32,7 @@ OC.L10N.register(
|
|||
"Import OPML file" : "Importer un fichier OPML",
|
||||
"Rate RePod ❤️" : "Donnez votre avis ❤️",
|
||||
"Playback speed" : "Vitesse de lecture",
|
||||
"Favorite" : "Favori",
|
||||
"Are you sure you want to delete this subscription?" : "Êtes-vous sûr de vouloir supprimer ce flux ?",
|
||||
"Error while removing the feed" : "Erreur lors de la suppression du flux",
|
||||
"Add a podcast" : "Ajouter un podcast",
|
||||
|
|
|
@ -16,8 +16,7 @@
|
|||
"Link copied to the clipboard" : "Lien vers le flux copié dans le presse-papiers",
|
||||
"Play" : "Lecture",
|
||||
"Stop" : "Arrêter",
|
||||
"Mark as read" : "Marquer comme lu",
|
||||
"Mark as unread" : "Marquer comme non lu",
|
||||
"Read" : "Lu",
|
||||
"Open website" : "Ouvrir le site web",
|
||||
"Could not fetch episodes" : "Impossible de récuprer les épisodes",
|
||||
"Could not change the status of the episode" : "Impossible de changer le status de l'épisode",
|
||||
|
@ -31,6 +30,7 @@
|
|||
"Import OPML file" : "Importer un fichier OPML",
|
||||
"Rate RePod ❤️" : "Donnez votre avis ❤️",
|
||||
"Playback speed" : "Vitesse de lecture",
|
||||
"Favorite" : "Favori",
|
||||
"Are you sure you want to delete this subscription?" : "Êtes-vous sûr de vouloir supprimer ce flux ?",
|
||||
"Error while removing the feed" : "Erreur lors de la suppression du flux",
|
||||
"Add a podcast" : "Ajouter un podcast",
|
||||
|
|
|
@ -37,25 +37,20 @@
|
|||
<template #extra>
|
||||
<NcActions>
|
||||
<NcActionButton
|
||||
v-if="episode.duration && !hasEnded(episode)"
|
||||
:aria-label="t('repod', 'Mark as read')"
|
||||
v-if="episode.duration"
|
||||
:aria-label="t('repod', 'Read')"
|
||||
:disabled="loadingAction"
|
||||
:name="t('repod', 'Mark as read')"
|
||||
:title="t('repod', 'Mark as read')"
|
||||
@click="markAs(episode, true)">
|
||||
:model-value="hasEnded(episode)"
|
||||
:name="t('repod', 'Read')"
|
||||
:title="t('repod', 'Read')"
|
||||
@update:modelValue="markAs(episode, !hasEnded(episode))">
|
||||
<template #icon>
|
||||
<PlaylistPlayIcon :size="20" />
|
||||
</template>
|
||||
</NcActionButton>
|
||||
<NcActionButton
|
||||
v-if="episode.duration && hasEnded(episode)"
|
||||
:aria-label="t('repod', 'Mark as unread')"
|
||||
:disabled="loadingAction"
|
||||
:name="t('repod', 'Mark as unread')"
|
||||
:title="t('repod', 'Mark as unread')"
|
||||
@click="markAs(episode, false)">
|
||||
<template #icon>
|
||||
<PlaylistRemoveIcon :size="20" />
|
||||
<PlaylistPlayIcon
|
||||
v-if="!hasEnded(episode)"
|
||||
:size="20" />
|
||||
<PlaylistRemoveIcon
|
||||
v-if="hasEnded(episode)"
|
||||
:size="20" />
|
||||
</template>
|
||||
</NcActionButton>
|
||||
<NcActionLink
|
||||
|
|
|
@ -83,11 +83,8 @@ msgstr "Abspielen"
|
|||
msgid "Stop"
|
||||
msgstr "Stopp"
|
||||
|
||||
msgid "Mark as read"
|
||||
msgstr "Als gelesen markieren"
|
||||
|
||||
msgid "Mark as unread"
|
||||
msgstr "Als ungelesen markieren"
|
||||
msgid "Read"
|
||||
msgstr "Gelesen"
|
||||
|
||||
msgid "Open website"
|
||||
msgstr "Webseite aufrufen"
|
||||
|
@ -128,6 +125,9 @@ msgstr "Bewerte RePod ❤️"
|
|||
msgid "Playback speed"
|
||||
msgstr "Wiedergabegeschwindigkeit"
|
||||
|
||||
msgid "Favorite"
|
||||
msgstr "Favorit"
|
||||
|
||||
msgid "Are you sure you want to delete this subscription?"
|
||||
msgstr "Bist Du sicher, dass Du das Abonnement löschen möchtest?"
|
||||
|
||||
|
|
|
@ -83,11 +83,8 @@ msgstr "Lecture"
|
|||
msgid "Stop"
|
||||
msgstr "Arrêter"
|
||||
|
||||
msgid "Mark as read"
|
||||
msgstr "Marquer comme lu"
|
||||
|
||||
msgid "Mark as unread"
|
||||
msgstr "Marquer comme non lu"
|
||||
msgid "Read"
|
||||
msgstr "Lu"
|
||||
|
||||
msgid "Open website"
|
||||
msgstr "Ouvrir le site web"
|
||||
|
@ -128,6 +125,9 @@ msgstr "Donnez votre avis ❤️"
|
|||
msgid "Playback speed"
|
||||
msgstr "Vitesse de lecture"
|
||||
|
||||
msgid "Favorite"
|
||||
msgstr "Favori"
|
||||
|
||||
msgid "Are you sure you want to delete this subscription?"
|
||||
msgstr "Êtes-vous sûr de vouloir supprimer ce flux ?"
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Nextcloud 3.14159\n"
|
||||
"Report-Msgid-Bugs-To: translations\\@example.com\n"
|
||||
"POT-Creation-Date: 2024-08-09 10:10+0000\n"
|
||||
"POT-Creation-Date: 2024-08-17 16:18+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -48,8 +48,8 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#: /app/specialVueFakeDummyForL10nScript.js:1
|
||||
#: /app/specialVueFakeDummyForL10nScript.js:27
|
||||
#: /app/specialVueFakeDummyForL10nScript.js:28
|
||||
#: /app/specialVueFakeDummyForL10nScript.js:24
|
||||
#: /app/specialVueFakeDummyForL10nScript.js:25
|
||||
msgid "Download"
|
||||
msgstr ""
|
||||
|
||||
|
@ -106,68 +106,68 @@ msgstr ""
|
|||
#: /app/specialVueFakeDummyForL10nScript.js:19
|
||||
#: /app/specialVueFakeDummyForL10nScript.js:20
|
||||
#: /app/specialVueFakeDummyForL10nScript.js:21
|
||||
msgid "Mark as read"
|
||||
msgid "Read"
|
||||
msgstr ""
|
||||
|
||||
#: /app/specialVueFakeDummyForL10nScript.js:22
|
||||
#: /app/specialVueFakeDummyForL10nScript.js:23
|
||||
#: /app/specialVueFakeDummyForL10nScript.js:24
|
||||
msgid "Mark as unread"
|
||||
msgstr ""
|
||||
|
||||
#: /app/specialVueFakeDummyForL10nScript.js:25
|
||||
#: /app/specialVueFakeDummyForL10nScript.js:26
|
||||
msgid "Open website"
|
||||
msgstr ""
|
||||
|
||||
#: /app/specialVueFakeDummyForL10nScript.js:29
|
||||
#: /app/specialVueFakeDummyForL10nScript.js:26
|
||||
msgid "Could not fetch episodes"
|
||||
msgstr ""
|
||||
|
||||
#: /app/specialVueFakeDummyForL10nScript.js:30
|
||||
#: /app/specialVueFakeDummyForL10nScript.js:27
|
||||
msgid "Could not change the status of the episode"
|
||||
msgstr ""
|
||||
|
||||
#: /app/specialVueFakeDummyForL10nScript.js:31
|
||||
#: /app/specialVueFakeDummyForL10nScript.js:28
|
||||
msgid "Export subscriptions"
|
||||
msgstr ""
|
||||
|
||||
#: /app/specialVueFakeDummyForL10nScript.js:32
|
||||
#: /app/specialVueFakeDummyForL10nScript.js:29
|
||||
msgid "Filtering episodes"
|
||||
msgstr ""
|
||||
|
||||
#: /app/specialVueFakeDummyForL10nScript.js:33
|
||||
#: /app/specialVueFakeDummyForL10nScript.js:30
|
||||
msgid "Show all"
|
||||
msgstr ""
|
||||
|
||||
#: /app/specialVueFakeDummyForL10nScript.js:34
|
||||
#: /app/specialVueFakeDummyForL10nScript.js:31
|
||||
msgid "Listened"
|
||||
msgstr ""
|
||||
|
||||
#: /app/specialVueFakeDummyForL10nScript.js:35
|
||||
#: /app/specialVueFakeDummyForL10nScript.js:32
|
||||
msgid "Listening"
|
||||
msgstr ""
|
||||
|
||||
#: /app/specialVueFakeDummyForL10nScript.js:36
|
||||
#: /app/specialVueFakeDummyForL10nScript.js:33
|
||||
msgid "Unlistened"
|
||||
msgstr ""
|
||||
|
||||
#: /app/specialVueFakeDummyForL10nScript.js:37
|
||||
#: /app/specialVueFakeDummyForL10nScript.js:34
|
||||
msgid "Import subscriptions"
|
||||
msgstr ""
|
||||
|
||||
#: /app/specialVueFakeDummyForL10nScript.js:38
|
||||
#: /app/specialVueFakeDummyForL10nScript.js:35
|
||||
msgid "Import OPML file"
|
||||
msgstr ""
|
||||
|
||||
#: /app/specialVueFakeDummyForL10nScript.js:39
|
||||
#: /app/specialVueFakeDummyForL10nScript.js:36
|
||||
msgid "Rate RePod ❤️"
|
||||
msgstr ""
|
||||
|
||||
#: /app/specialVueFakeDummyForL10nScript.js:40
|
||||
#: /app/specialVueFakeDummyForL10nScript.js:37
|
||||
msgid "Playback speed"
|
||||
msgstr ""
|
||||
|
||||
#: /app/specialVueFakeDummyForL10nScript.js:38
|
||||
#: /app/specialVueFakeDummyForL10nScript.js:39
|
||||
#: /app/specialVueFakeDummyForL10nScript.js:40
|
||||
msgid "Favorite"
|
||||
msgstr ""
|
||||
|
||||
#: /app/specialVueFakeDummyForL10nScript.js:41
|
||||
msgid "Are you sure you want to delete this subscription?"
|
||||
msgstr ""
|
||||
|
@ -177,25 +177,29 @@ msgid "Error while removing the feed"
|
|||
msgstr ""
|
||||
|
||||
#: /app/specialVueFakeDummyForL10nScript.js:43
|
||||
msgid "Add a podcast"
|
||||
msgid "You can only have 10 favorites"
|
||||
msgstr ""
|
||||
|
||||
#: /app/specialVueFakeDummyForL10nScript.js:44
|
||||
msgid "Could not fetch subscriptions"
|
||||
msgid "Add a podcast"
|
||||
msgstr ""
|
||||
|
||||
#: /app/specialVueFakeDummyForL10nScript.js:45
|
||||
msgid "Find a podcast"
|
||||
msgid "Could not fetch subscriptions"
|
||||
msgstr ""
|
||||
|
||||
#: /app/specialVueFakeDummyForL10nScript.js:46
|
||||
msgid "Error loading feed"
|
||||
msgid "Find a podcast"
|
||||
msgstr ""
|
||||
|
||||
#: /app/specialVueFakeDummyForL10nScript.js:47
|
||||
msgid "Missing required app"
|
||||
msgid "Error loading feed"
|
||||
msgstr ""
|
||||
|
||||
#: /app/specialVueFakeDummyForL10nScript.js:48
|
||||
msgid "Missing required app"
|
||||
msgstr ""
|
||||
|
||||
#: /app/specialVueFakeDummyForL10nScript.js:49
|
||||
msgid "Install GPodder Sync"
|
||||
msgstr ""
|
||||
|
|
Loading…
Reference in New Issue