diff --git a/harbour-tooter.pro b/harbour-tooter.pro index bd4e9d9..a5a786b 100644 --- a/harbour-tooter.pro +++ b/harbour-tooter.pro @@ -9,7 +9,6 @@ # - icon definition filename in desktop file must be changed # - translation filenames have to be changed -# The name of your application TARGET = harbour-tooter CONFIG += sailfishapp @@ -39,18 +38,18 @@ dbus_services.files = config/ba.dysko.harbour.tooter.service interfaces.path = /usr/share/dbus-1/interfaces/ interfaces.files = config/ba.dysko.harbour.tooter.xml -SOURCES += src/harbour-tooter.cpp -SOURCES += src/imageuploader.cpp -SOURCES += src/filedownloader.cpp -SOURCES += src/notifications.cpp -SOURCES += src/dbusAdaptor.cpp -SOURCES += src/dbus.cpp +SOURCES += src/harbour-tooter.cpp \ + src/imageuploader.cpp \ + src/filedownloader.cpp \ + src/notifications.cpp \ + src/dbusAdaptor.cpp \ + src/dbus.cpp -HEADERS += src/imageuploader.h -HEADERS += src/filedownloader.h -HEADERS += src/notifications.h -HEADERS += src/dbusAdaptor.h -HEADERS += src/dbus.h +HEADERS += src/imageuploader.h \ + src/filedownloader.h \ + src/notifications.h \ + src/dbusAdaptor.h \ + src/dbus.h DISTFILES += qml/harbour-tooter.qml \ qml/images/tooter-cover.svg \ @@ -94,23 +93,19 @@ SAILFISHAPP_ICONS = 86x86 108x108 128x128 172x172 # to disable building translations every time, comment out the # following CONFIG line -# CONFIG += sailfishapp_i18n +CONFIG += sailfishapp_i18n -# German translation is enabled as an example. If you aren't -# planning to localize your app, remember to comment out the -# following TRANSLATIONS line. And also do not forget to -# modify the localized app name in the the .desktop file. -TRANSLATIONS += translations/harbour-tooter-de.ts -TRANSLATIONS += translations/harbour-tooter-el.ts -TRANSLATIONS += translations/harbour-tooter-es.ts -TRANSLATIONS += translations/harbour-tooter-fi.ts -TRANSLATIONS += translations/harbour-tooter-fr.ts -TRANSLATIONS += translations/harbour-tooter-nl.ts -TRANSLATIONS += translations/harbour-tooter-nl_BE.ts -TRANSLATIONS += translations/harbour-tooter-oc.ts -TRANSLATIONS += translations/harbour-tooter-pl.ts -TRANSLATIONS += translations/harbour-tooter-ru.ts -TRANSLATIONS += translations/harbour-tooter-sr.ts -TRANSLATIONS += translations/harbour-tooter-sv.ts -TRANSLATIONS += translations/harbour-tooter-zh_CN.ts -TRANSLATIONS += translations/harbour-tooter-it.ts +TRANSLATIONS += translations/harbour-tooter.ts \ + translations/harbour-tooter-de.ts \ + translations/harbour-tooter-el.ts \ + translations/harbour-tooter-es.ts \ + translations/harbour-tooter-fr.ts \ + translations/harbour-tooter-it.ts \ + translations/harbour-tooter-nl.ts \ + translations/harbour-tooter-nl_BE.ts \ + translations/harbour-tooter-oc.ts \ + translations/harbour-tooter-pl.ts \ + translations/harbour-tooter-ru.ts \ + translations/harbour-tooter-sr.ts \ + translations/harbour-tooter-sv.ts \ + translations/harbour-tooter-zh_CN.ts diff --git a/qml/pages/ProfilePage.qml b/qml/pages/ProfilePage.qml index 4478e4c..e5ce206 100644 --- a/qml/pages/ProfilePage.qml +++ b/qml/pages/ProfilePage.qml @@ -170,7 +170,9 @@ Page { ExpandingSection { id: expandingSection1 - title: qsTr("About") + title: + //: If there's no good translation for "About", use "Details" (in details about profile). + qsTr("About") content.sourceComponent: Column { height: Math.min( txtContainer, parent.height * 0.7 ) spacing: Theme.paddingLarge @@ -248,7 +250,9 @@ Page { Text { id: txtFollowers visible: followers_count ? true : false - text: followers_count+" "+qsTr("Followers") + text: followers_count+" "+ + //: Will show as: "35 Followers" + qsTr("Followers") font.pixelSize: Theme.fontSizeExtraSmall color: Theme.highlightColor wrapMode: Text.Wrap @@ -257,7 +261,9 @@ Page { Text { id: txtFollowing visible: following_count ? true : false - text: following_count+" "+qsTr("Following") + text: following_count+" "+ + //: Will show as: "23 Following" + qsTr("Following") font.pixelSize: Theme.fontSizeExtraSmall color: Theme.highlightColor wrapMode: Text.Wrap @@ -266,7 +272,9 @@ Page { Text { id: txtStatuses visible: statuses_count ? true : false - text: statuses_count+" "+qsTr("Statuses") + text: statuses_count+" "+ + //: Will show as: "115 Statuses" + qsTr("Statuses") font.pixelSize: Theme.fontSizeExtraSmall color: Theme.highlightColor wrapMode: Text.Wrap @@ -275,7 +283,9 @@ Page { /*Text { id: txtFavourites visible: favourites_count ? true : false - text: favourites_count+" "+qsTr("Favourites") + text: favourites_count+" "+ + //: Will show as: "56 Favourites" + qsTr("Favourites") font.pixelSize: Theme.fontSizeExtraSmall color: Theme.highlightColor wrapMode: Text.Wrap @@ -294,7 +304,7 @@ Page { text: "Mention" onClicked: { pageStack.push(Qt.resolvedUrl("ConversationPage.qml"), { - headerTitle: "Mention", + headerTitle: qsTr("Mention"), description: "@"+username, type: "new" }) @@ -304,7 +314,13 @@ Page { Button { id: btnFollow preferredWidth: Theme.buttonWidthSmall - text: (following ? qsTr("Unfollow") : (requested ? qsTr("Requested") : qsTr("Follow"))) + text: (following ? + //: Is a button. Keep it as short as possible. + qsTr("Unfollow") : (requested ? + //: Is a button. Keep it as short as possible. + qsTr("Requested") : + //: Is a button. Keep it as short as possible. + qsTr("Follow"))) color: (following ? highlightColor : (requested ? palette.errorColor : palette.primaryColor)) onClicked: { var msg = { @@ -321,7 +337,11 @@ Page { Button { id: btnMute preferredWidth: Theme.buttonWidthSmall - text: (muting ? qsTr("Unmute") : qsTr("Mute")) + text: (muting ? + //: Is a button. Keep it as short as possible. + qsTr("Unmute") : + //: Is a button. Keep it as short as possible. + qsTr("Mute")) color: (muting ? palette.errorColor : palette.primaryColor) onClicked: { var msg = { @@ -337,7 +357,11 @@ Page { Button { id: btnBlock preferredWidth: Theme.buttonWidthSmall - text: (blocking ? qsTr("Unblock") : qsTr("Block") ) + text: (blocking ? + //: Is a button. Keep it as short as possible. + qsTr("Unblock") : + //: Is a button. Keep it as short as possible. + qsTr("Block") ) color: (blocking ? palette.errorColor : palette.primaryColor) onClicked: { var msg = { diff --git a/qml/pages/SettingsPage.qml b/qml/pages/SettingsPage.qml index 876929c..adb844d 100644 --- a/qml/pages/SettingsPage.qml +++ b/qml/pages/SettingsPage.qml @@ -111,7 +111,9 @@ Page { } LinkedLabel { - text: qsTr("Use Transifex to help with app translation to your language.") + id: translateLbl + //: Full sentence for translation: "Use Transifex to help with app translation to your language." - The word Transifex is a link and doesn't need translation. + text: qsTr("Use")+" "+"Transifex"+" "+qsTr("to help with app translation to your language.") textFormat: Text.StyledText color: Theme.highlightColor linkColor: Theme.primaryColor diff --git a/qml/pages/components/ProfileHeader.qml b/qml/pages/components/ProfileHeader.qml index de9c0af..0c8ab17 100644 --- a/qml/pages/components/ProfileHeader.qml +++ b/qml/pages/components/ProfileHeader.qml @@ -158,5 +158,4 @@ Item { } } } - } diff --git a/translations/harbour-tooter-de.ts b/translations/harbour-tooter-de.ts index 0f08f63..05e7430 100644 --- a/translations/harbour-tooter-de.ts +++ b/translations/harbour-tooter-de.ts @@ -21,23 +21,23 @@ - Conversation + ConversationPage - Delete - Löschen - - - Emojis - Emojis - - - Tap to insert - Tippen um einzufügen + Copy Link to Clipboard + Link kopieren Write your warning here Inhaltswarnung + + What's on your mind? + Was gibt's Neues? + + + Delete + Löschen + Public Öffentlich @@ -54,24 +54,27 @@ Direct Direktnachricht - - What's on your mind? - Was gibt's Neues? - Toot sent! Toot gesendet! + + + CoverPage - Copy Link to Clipboard - Link kopieren + New Toot + Neuer Toot - ImageFullScreen + EmojiSelect - Error loading - Ladefehler + Emojis + Emojis + + + Tap to insert + Tippen um einzufügen @@ -135,6 +138,13 @@ Föderation + + MediaFullScreen + + Error loading + Ladefehler + + MiniStatus @@ -168,72 +178,110 @@ please wait... bitte warten... + + New Toot + Neuer Toot + - Profile + ProfileHeader - Unfollow - Entfolgen + Follows you + Folgt dir - Follow request sent! - Folge-Anfrage gesendet! + Bot + Bot + + + + ProfilePage + + About + If there's no good translation for "About", use "Details" (in details about profile). + Details + + + Followers + Will show as: "35 Followers" + Folgende Following + Will show as: "23 Following" Folgt - Mute - Stummschalten + Statuses + Will show as: "115 Statuses" + Beiträge + + + Unfollow + Is a button. Keep it as short as possible. + Entfolgen + + + Requested + Is a button. Keep it as short as possible. + Angefragt + + + Follow + Is a button. Keep it as short as possible. + Folgen Unmute - Nicht stummschalten + Is a button. Keep it as short as possible. + Nicht stumm schalten + + + Mute + Is a button. Keep it as short as possible. + Stumm schalten Unblock + Is a button. Keep it as short as possible. Nicht blockieren Block + Is a button. Keep it as short as possible. Blockieren - Statuses - Beiträge + Open in Browser + Im Browser öffnen - Favourites - Favoriten - - - Follow - Folgen - - - Summary - Zusammenfassung - - - Followers - Folgende - - - Bio - Bio - - - Open Profile in Browser - Profil im Browser öffnen + Mention + Erwähnen - Settings + SettingsPage Settings Einstellungen + + Options + Optionen + + + Load Images in Toots + Bilder in Toots laden + + + Disable this option if you want to preserve your data connection + Diese Option deaktivieren um Datenvolumen zu sparen + + + Account + Konto + Remove Account Konto entfernen @@ -243,7 +291,7 @@ Konto hinzufügen - Deauthorize this app and remove your account + Deauthorize this app from using your account and remove account data from phone Konto entfernen und für diese Anwendung deaktivieren @@ -251,8 +299,8 @@ Zugriff durch diese Anwendung auf eigenes Mastodon-Konto erlauben - Disable this option if you want to preserve your data connection - Diese Option deaktivieren um Datenvolumen zu sparen + Translate + Übersetzungen Credits @@ -266,10 +314,18 @@ Visual identity Visuelle Identität + + Development and translations + Entwicklung und Übersetzungen + Occitan & French translation Französische Übersetzung + + Chinese translation + Chinesische Übersetzung + Dutch translation Niederländische Übersetzung @@ -283,24 +339,13 @@ Erstellung README-Datei - Chinese translation - Chinesische Übersetzung + Use + Full sentence for translation: "Use Transifex to help with app translation to your language." - The word Transifex is a link and doesn't need translation. + Benutze - Load images in toots - Bilder in Toots laden - - - Translate - Übersetzungen - - - Use Transifex to help with app translation to your language - Transifex benutzen um bei den Übersetzungen mitzuhelfen - - - Development and translations - Entwicklung und Übersetzungen + to help with app translation to your language. + um bei den Übersetzungen mitzuhelfen. @@ -336,5 +381,9 @@ Favorite Favorisieren + + Mention + Erwähnen + diff --git a/translations/harbour-tooter-el.ts b/translations/harbour-tooter-el.ts index df485eb..2a21994 100644 --- a/translations/harbour-tooter-el.ts +++ b/translations/harbour-tooter-el.ts @@ -21,23 +21,23 @@ - Conversation + ConversationPage - Delete - Διαγραφή - - - Emojis - Emoji - - - Tap to insert - Κτυπήστε για εισαγωγή + Copy Link to Clipboard + Write your warning here + + What's on your mind? + + + + Delete + Διαγραφή + Public @@ -54,24 +54,27 @@ Direct - - What's on your mind? - - Toot sent! - - Copy Link to Clipboard - - - ImageFullScreen + CoverPage - Error loading - + New Toot + Νέος + + + + EmojiSelect + + Emojis + Emoji + + + Tap to insert + Κτυπήστε για εισαγωγή @@ -128,13 +131,20 @@ Local - + Τοπικός Federated + + MediaFullScreen + + Error loading + + + MiniStatus @@ -168,72 +178,110 @@ please wait... + + New Toot + Νέος + - Profile + ProfileHeader - Unfollow - Αναίρεση παρακολούθησης + Follows you + - Follow request sent! - Η αίτηση παρακολούθησης εστάλη! + Bot + + + + + ProfilePage + + About + If there's no good translation for "About", use "Details" (in details about profile). + + + + Followers + Will show as: "35 Followers" + Σας ακολουθούν Following + Will show as: "23 Following" Σε παρακολούθηση - Mute - Σίγαση + Statuses + Will show as: "115 Statuses" + Κατάσταση + + + Unfollow + Is a button. Keep it as short as possible. + Αναίρεση παρακολούθησης + + + Requested + Is a button. Keep it as short as possible. + + + + Follow + Is a button. Keep it as short as possible. + Παρακολούθηση Unmute + Is a button. Keep it as short as possible. Αναίρεση σίγασης + + Mute + Is a button. Keep it as short as possible. + Σίγαση + Unblock + Is a button. Keep it as short as possible. Αναίρεση φραγής Block + Is a button. Keep it as short as possible. Φραγή - Statuses - Κατάσταση - - - Favourites - Σελιδοδείκτες - - - Follow - Παρακολούθηση - - - Summary - Σύνοψη - - - Followers - Σας ακολουθούν - - - Bio + Open in Browser - Open Profile in Browser + Mention - Settings + SettingsPage Settings Ρυθμίσεις + + Options + + + + Load Images in Toots + + + + Disable this option if you want to preserve your data connection + Απενεργοποιήστε αυτήν την επιλογή αν θέλετε να διατηρήσετε την σύνδεση των δεδομένων σας + + + Account + λογαριασμού + Remove Account Αφαίρεση λογαριασμού @@ -243,7 +291,7 @@ Προσθήκη λογαριασμού - Deauthorize this app and remove your account + Deauthorize this app from using your account and remove account data from phone Άρση της αδειοδότησης της εφαρμογής και αφαίρεση του λογαριασμού σας @@ -251,8 +299,8 @@ Να επιτρέπεται στην εφαρμογή να χρησιμοποιεί τον λογαριασμό σας στο Mastodon εκ μέρους σας - Disable this option if you want to preserve your data connection - Απενεργοποιήστε αυτήν την επιλογή αν θέλετε να διατηρήσετε την σύνδεση των δεδομένων σας + Translate + Μετάφραση Credits @@ -266,10 +314,18 @@ Visual identity + + Development and translations + + Occitan & French translation + + Chinese translation + + Dutch translation @@ -283,24 +339,13 @@ - Chinese translation - + Use + Full sentence for translation: "Use Transifex to help with app translation to your language." - The word Transifex is a link and doesn't need translation. + Χρησιμοποιήστε το - Load images in toots - - - - Translate - Μετάφραση - - - Use Transifex to help with app translation to your language - Χρησιμοποιήστε το Transifex για να βοηθήσετε την μετάφραση της εφαρμογής στην γλώσσα σας - - - Development and translations - + to help with app translation to your language. + για να βοηθήσετε την μετάφραση της εφαρμογής στην γλώσσα σας. @@ -336,5 +381,9 @@ Favorite Σελιδοδείκτης + + Mention + + diff --git a/translations/harbour-tooter-es.ts b/translations/harbour-tooter-es.ts index 195b8f5..af93f43 100644 --- a/translations/harbour-tooter-es.ts +++ b/translations/harbour-tooter-es.ts @@ -21,23 +21,23 @@ - Conversation + ConversationPage - Delete - Borrar - - - Emojis - Emoticonos - - - Tap to insert - Toca para insertar + Copy Link to Clipboard + Copiar enlace al portapapeles Write your warning here Escribe aquí tu advertencia + + What's on your mind? + ¿En qué estás pensando? + + + Delete + Borrar + Public Público @@ -54,24 +54,27 @@ Direct Directo - - What's on your mind? - ¿En qué estás pensando? - Toot sent! - - - - Copy Link to Clipboard - + ¡Toot enviado! - ImageFullScreen + CoverPage - Error loading - + New Toot + Nuevo toot + + + + EmojiSelect + + Emojis + Emoticonos + + + Tap to insert + Toca para insertar @@ -135,6 +138,13 @@ Federada + + MediaFullScreen + + Error loading + Error al cargar + + MiniStatus @@ -168,72 +178,110 @@ please wait... por favor, espera... + + New Toot + Nuevo toot + - Profile + ProfileHeader - Unfollow - Dejar de seguir + Follows you + - Follow request sent! - ¡Solicitud de seguidor enviada! + Bot + Bot + + + + ProfilePage + + About + If there's no good translation for "About", use "Details" (in details about profile). + Detalles + + + Followers + Will show as: "35 Followers" + Seguidores Following + Will show as: "23 Following" Siguiendo - Mute - Silenciar + Statuses + Will show as: "115 Statuses" + Estados + + + Unfollow + Is a button. Keep it as short as possible. + Dejar de seguir + + + Requested + Is a button. Keep it as short as possible. + + + + Follow + Is a button. Keep it as short as possible. + Seguir Unmute + Is a button. Keep it as short as possible. Dejar de silenciar + + Mute + Is a button. Keep it as short as possible. + Silenciar + Unblock + Is a button. Keep it as short as possible. Desbloquear Block + Is a button. Keep it as short as possible. Bloquear - Statuses - Estados + Open in Browser + Abrir en el navegador - Favourites - Favoritos - - - Follow - Seguir - - - Summary - Resumen - - - Followers - Seguidores - - - Bio - Bio - - - Open Profile in Browser - Abrir perfil en el navegador + Mention + - Settings + SettingsPage Settings Ajustes + + Options + Opciones + + + Load Images in Toots + Cargar imágenes en messages + + + Disable this option if you want to preserve your data connection + Deshabilita esta opción si quieres ahorrar en tu conexión de datos + + + Account + Cuenta + Remove Account Eliminar cuenta @@ -243,7 +291,7 @@ Añadir cuenta - Deauthorize this app and remove your account + Deauthorize this app from using your account and remove account data from phone Retira la autorización a esta aplicación y elimina tu cuenta @@ -251,8 +299,8 @@ Autoriza a esta aplicación para usar tu cuenta de Mastodon en tu nombre - Disable this option if you want to preserve your data connection - Deshabilita esta opción si quieres ahorrar en tu conexión de datos + Translate + Traducir Credits @@ -266,10 +314,18 @@ Visual identity Identidad visual + + Development and translations + Desarrollo y traducciones + Occitan & French translation Traducción al occitano y francés + + Chinese translation + Traducción al chino + Dutch translation Traducción al holandés @@ -283,24 +339,13 @@ Añadido archivo README - Chinese translation - Traducción al chino + Use + Full sentence for translation: "Use Transifex to help with app translation to your language." - The word Transifex is a link and doesn't need translation. + Usar - Load images in toots - Cargar imágenes en messages - - - Translate - Traducir - - - Use Transifex to help with app translation to your language - Usar Transifex para ayudar con traducciones - - - Development and translations - Desarrollo y traducciones + to help with app translation to your language. + para ayudar con traducciones. @@ -336,5 +381,9 @@ Favorite Marcar como favorito + + Mention + + diff --git a/translations/harbour-tooter-fi.ts b/translations/harbour-tooter-fi.ts deleted file mode 100644 index 50a5f73..0000000 --- a/translations/harbour-tooter-fi.ts +++ /dev/null @@ -1,340 +0,0 @@ - - - - - API - - favourited - - - - followed you - - - - boosted - - - - said - - - - - Conversation - - Delete - - - - Emojis - - - - Tap to insert - - - - Write your warning here - - - - Public - - - - Unlisted - - - - Followers-only - - - - Direct - - - - What's on your mind? - - - - Toot sent! - - - - Copy Link to Clipboard - - - - - ImageFullScreen - - Error loading - - - - - ImageUploader - - The file %1 does not exists - - - - - LoginPage - - Login - - - - Instance - - - - Enter a valid Mastodon instance URL - - - - Mastodon is a free, open-source social network. A decentralized alternative to commercial platforms, it avoids the risks of a single company monopolizing your communication. Pick a server that you trust — whichever you choose, you can interact with everyone else. Anyone can run their own Mastodon instance and participate in the social network seamlessly. - - - - Reload - - - - - MainPage - - Home - - - - Notifications - - - - New Toot - - - - Search - - - - @user or #term - - - - Local - - - - Federated - - - - - MiniStatus - - boosted - - - - favourited - - - - followed you - - - - - MyList - - Load more - - - - Settings - - - - Loading - - - - please wait... - - - - - Profile - - Unfollow - - - - Follow request sent! - - - - Following - - - - Mute - - - - Unmute - - - - Unblock - - - - Block - - - - Statuses - - - - Favourites - - - - Follow - - - - Summary - - - - Followers - - - - Bio - - - - Open Profile in Browser - - - - - Settings - - Settings - - - - Remove Account - - - - Add Account - - - - Deauthorize this app and remove your account - - - - Authorize this app to access your Mastodon account - - - - Disable this option if you want to preserve your data connection - - - - Credits - - - - UI/UX design and development - - - - Visual identity - - - - Occitan & French translation - - - - Dutch translation - - - - Spanish translation - - - - Added README file - - - - Chinese translation - - - - Load images in toots - - - - Translate - - - - Use Transifex to help with app translation to your language - - - - Development and translations - - - - - Toot - - boosted - - - - favourited - - - - followed you - - - - - VisualContainer - - Unboost - - - - Boost - - - - Unfavorite - - - - Favorite - - - - diff --git a/translations/harbour-tooter-fr.ts b/translations/harbour-tooter-fr.ts index baafe35..3f560f4 100644 --- a/translations/harbour-tooter-fr.ts +++ b/translations/harbour-tooter-fr.ts @@ -21,23 +21,23 @@ - Conversation + ConversationPage - Delete - Supprimer - - - Emojis - Emojis - - - Tap to insert - Appuyez pour insérer + Copy Link to Clipboard + Copier le lien Write your warning here Rédigez votre alerte ici + + What's on your mind? + Qu'avez-vous en tête? + + + Delete + Supprimer + Public Public @@ -54,24 +54,27 @@ Direct Direct - - What's on your mind? - Qu'avez-vous en tête? - Toot sent! Pouet envoyé ! + + + CoverPage - Copy Link to Clipboard - Copier le lien + New Toot + Nouveau pouet - ImageFullScreen + EmojiSelect - Error loading - + Emojis + Emojis + + + Tap to insert + Appuyez pour insérer @@ -135,6 +138,13 @@ Fil public global + + MediaFullScreen + + Error loading + Erreur au chargement + + MiniStatus @@ -168,72 +178,110 @@ please wait... patientez... + + New Toot + Nouveau pouet + - Profile + ProfileHeader - Unfollow - Ne plus suivre + Follows you + Vous suit - Follow request sent! - Demande d’abonnement envoyée ! + Bot + Bot + + + + ProfilePage + + About + If there's no good translation for "About", use "Details" (in details about profile). + Détails + + + Followers + Will show as: "35 Followers" + Abonné(e)s Following + Will show as: "23 Following" Abonnements - Mute - Masquer + Statuses + Will show as: "115 Statuses" + Pouets + + + Unfollow + Is a button. Keep it as short as possible. + Ne plus suivre + + + Requested + Is a button. Keep it as short as possible. + Demandé + + + Follow + Is a button. Keep it as short as possible. + Suivre Unmute + Is a button. Keep it as short as possible. Démasquer + + Mute + Is a button. Keep it as short as possible. + Masquer + Unblock + Is a button. Keep it as short as possible. Débloquer Block + Is a button. Keep it as short as possible. Bloquer - Statuses - Pouets - - - Favourites - Favoris - - - Follow - Suivre - - - Summary - Résumé - - - Followers - Abonné(e)s - - - Bio - Bio - - - Open Profile in Browser + Open in Browser Ouvrir dans le navigateur + + Mention + Mentionner + - Settings + SettingsPage Settings Paramètres + + Options + Options + + + Load Images in Toots + Charger images dans les pouets + + + Disable this option if you want to preserve your data connection + Désactiver cette option pour économiser des données mobiles + + + Account + Compte + Remove Account Déconnecter votre compte @@ -243,7 +291,7 @@ Ajouter compte - Deauthorize this app and remove your account + Deauthorize this app from using your account and remove account data from phone Désautoriser cette application et enlever votre compte @@ -251,8 +299,8 @@ Autoriser l’accès à votre compte pour cette application - Disable this option if you want to preserve your data connection - Désactiver cette option pour économiser des données mobiles + Translate + Traduire Credits @@ -266,10 +314,18 @@ Visual identity Identité visuelle + + Development and translations + Développement et traductions + Occitan & French translation Traduction français + + Chinese translation + Traduction chinoise + Dutch translation Traduction néerlandaise @@ -278,29 +334,18 @@ Spanish translation Traduction espagnole - - Chinese translation - Traduction chinoise - Added README file Fichier README ajouté - Load images in toots - Charger images dans les pouets + Use + Full sentence for translation: "Use Transifex to help with app translation to your language." - The word Transifex is a link and doesn't need translation. + Utiliser - Translate - Traduire - - - Use Transifex to help with app translation to your language - Utiliser Transifex pour aider à traduire cette application - - - Development and translations - Développement et traductions + to help with app translation to your language. + pour aider à traduire cette application. @@ -336,5 +381,9 @@ Favorite Ajouter aux favoris + + Mention + Mentionner + diff --git a/translations/harbour-tooter-it.ts b/translations/harbour-tooter-it.ts index 5b5be12..8cb29ba 100644 --- a/translations/harbour-tooter-it.ts +++ b/translations/harbour-tooter-it.ts @@ -4,93 +4,96 @@ API - + favourited ha apprezzato - + followed you ha iniziato a seguirti - + boosted ha condiviso + - said ha detto - Conversation + ConversationPage - + Copy Link to Clipboard Copia link - + Write your warning here Contenuto avviso - + What's on your mind? A cosa stai pensando? - + Delete Elimina - + Public Pubblico - + Unlisted Non elencato - + Followers-only Solo ai seguaci - + Direct Diretto - + Toot sent! Toot è stato pubblicato! + + + CoverPage - + + New Toot + Nuovo toot + + + + EmojiSelect + + Emojis Emojis - + Tap to insert Tap per inserire - - ImageFullScreen - - - Error loading - Errore durante caricamento - - ImageUploader @@ -102,27 +105,27 @@ LoginPage - + Login Accesso - + Instance Istanza - + Enter a valid Mastodon instance URL Inserire URL di una istanza Mastodon valida - + Mastodon is a free, open-source social network. A decentralized alternative to commercial platforms, it avoids the risks of a single company monopolizing your communication. Pick a server that you trust — whichever you choose, you can interact with everyone else. Anyone can run their own Mastodon instance and participate in the social network seamlessly. Mastodon è un servizio di rete sociale in software libero, costituito in una federazione d'istanze. Mastodon fa parte del più ampio Fediverso, permettendo ai suoi utenti di interagire anche con utenti su diverse piattaforme aperte che supportano lo stesso protocollo. - + Reload Ricarica @@ -130,55 +133,63 @@ MainPage - + Home Home - + Notifications Notifiche - + Local Locale - + Federated Federazione - + Search Cerca - + @user or #term @utente o #termine - + New Toot Nuovo toot + + MediaFullScreen + + + Error loading + Errore durante caricamento + + MiniStatus - + boosted ha condiviso - + favourited ha apprezzato - + followed you ha iniziato a seguirti @@ -186,12 +197,12 @@ MyList - + Loading Caricamento - + please wait... Attendere un momento... @@ -202,172 +213,212 @@ + New Toot + Nuovo toot + + + Load more Caricare altri - Profile + ProfileHeader - - Summary - Sintesi + + Follows you + Ti segue - - Followers - Seguaci - - - - Following - Segue - - - - Statuses - Toots - - - - Favourites - Apprezzati - - - - Unfollow - Smetti di seguire - - - - Follow request sent! - Richiesta di seguito inviata! - - - - Follow - Segui - - - - Unmute - Non silenziare - - - - Mute - Silenzia - - - - Unblock - Sblocca - - - - Block - Blocca - - - - Bio - Biografia - - - - Open Profile in Browser - Aprire profile nel browser + + Bot + Bot - Settings + ProfilePage - + + About + If there's no good translation for "About", use "Details" (in details about profile). + Dettagli + + + + Followers + Will show as: "35 Followers" + Seguaci + + + + Following + Will show as: "23 Following" + Segue + + + + Statuses + Will show as: "115 Statuses" + Toots + + + + Mention + Menzionare + + + + Unfollow + Is a button. Keep it as short as possible. + Smetti di seguire + + + + Requested + Is a button. Keep it as short as possible. + Richiesto + + + + Follow + Is a button. Keep it as short as possible. + Segui + + + + Unmute + Is a button. Keep it as short as possible. + Non silenziare + + + + Mute + Is a button. Keep it as short as possible. + Silenzia + + + + Unblock + Is a button. Keep it as short as possible. + Sblocca + + + + Block + Is a button. Keep it as short as possible. + Blocca + + + + Open in Browser + Aprire nel browser + + + + SettingsPage + + Settings - Impostazione + Impostazioni - - Remove Account - Rimozione del account + + Options + Opzioni - - Add Account - Aggiungi account - - - - Deauthorize this app and remove your account - Annullare l'autorizzazione dell'app e rimuovere l'account - - - - Authorize this app to access your Mastodon account - Autorizzare l'app all'utilizzo del conto Mastodon - - - - Load images in toots + + Load Images in Toots Caricare immagini nei toots - + Disable this option if you want to preserve your data connection Disabilitare questa opzione per conservare connessione dati - + + Account + Account + + + + Remove Account + Rimozione del account + + + + Add Account + Aggiungi account + + + + Deauthorize this app from using your account and remove account data from phone + Annullare l'autorizzazione dell'app e rimuovere l'account + + + + Authorize this app to access your Mastodon account + Autorizzare l'app all'utilizzo del conto Mastodon + + + Translate Tradurre - - Use Transifex to help with app translation to your language - Utilizzare Transifex per aiutare nella traduzione dell'app + + Use + Full sentence for translation: "Use Transifex to help with app translation to your language." - The word Transifex is a link and doesn't need translation. + Utilizzare - + + to help with app translation to your language. + per aiutare nella traduzione dell'app. + + + Credits Sviluppo - + UI/UX design and development Design UI/UX e sviluppo - + Visual identity Identità visiva - + Development and translations Sviluppo e traduzioni - + Occitan & French translation Traduzione francese e occitanica - + Chinese translation Traduzione cinese - + Dutch translation Traduzione olandese - + Spanish translation Traduzione spagnola - + Added README file Aggiunto file README @@ -375,17 +426,17 @@ Toot - + boosted ha condiviso - + favourited ha apprezzato - + followed you ha iniziato a seguirti @@ -393,24 +444,29 @@ VisualContainer - + Unboost Annulla condivisione - + Boost Condividi - + Unfavorite Annulla apprezzamento - + Favorite Apprezzato + + + Mention + Menzionare + diff --git a/translations/harbour-tooter-nl.ts b/translations/harbour-tooter-nl.ts index 9c3e4b0..abf442d 100644 --- a/translations/harbour-tooter-nl.ts +++ b/translations/harbour-tooter-nl.ts @@ -21,23 +21,23 @@ - Conversation + ConversationPage - Delete - Verwijderen - - - Emojis - Emojis - - - Tap to insert - Tikken om in te voegen + Copy Link to Clipboard + Linkadres kopiëren Write your warning here + + What's on your mind? + + + + Delete + Verwijderen + Public @@ -54,24 +54,27 @@ Direct - - What's on your mind? - - Toot sent! - - Copy Link to Clipboard - - - ImageFullScreen + CoverPage - Error loading - + New Toot + Nieuwe Toot + + + + EmojiSelect + + Emojis + Emojis + + + Tap to insert + Tikken om in te voegen @@ -135,6 +138,13 @@ Gefedereerd + + MediaFullScreen + + Error loading + + + MiniStatus @@ -168,72 +178,110 @@ please wait... even geduld… + + New Toot + Nieuwe Toot + - Profile + ProfileHeader - Unfollow - Ontvolgen + Follows you + - Follow request sent! - Volgverzoek verstuurd! + Bot + Bot + + + + ProfilePage + + About + If there's no good translation for "About", use "Details" (in details about profile). + Gegevens + + + Followers + Will show as: "35 Followers" + Volgers Following + Will show as: "23 Following" Volgend - Mute - Dempen + Statuses + Will show as: "115 Statuses" + Statussen + + + Unfollow + Is a button. Keep it as short as possible. + Ontvolgen + + + Requested + Is a button. Keep it as short as possible. + Gevraagd + + + Follow + Is a button. Keep it as short as possible. + Volgen Unmute + Is a button. Keep it as short as possible. Ontdempen + + Mute + Is a button. Keep it as short as possible. + Dempen + Unblock + Is a button. Keep it as short as possible. Deblokkeren Block + Is a button. Keep it as short as possible. Blokkeren - Statuses - Statussen + Open in Browser + Open een Browser - Favourites - Favorieten - - - Follow - Volgen - - - Summary - Samenvatting - - - Followers - Volgers - - - Bio - - - - Open Profile in Browser - + Mention + Vermelden - Settings + SettingsPage Settings Instellingen + + Options + Opties + + + Load Images in Toots + Laden afbeeldingen in toots + + + Disable this option if you want to preserve your data connection + Schakel deze optie uit als je je dataverbinding wilt behouden + + + Account + Account + Remove Account Verwijderen account @@ -243,7 +291,7 @@ Toevoegen account - Deauthorize this app and remove your account + Deauthorize this app from using your account and remove account data from phone Trek autorisaties van deze app in en verwijder je account @@ -251,8 +299,8 @@ Autoriseer deze app om je Mastodon namens jou te gebruiken - Disable this option if you want to preserve your data connection - Schakel deze optie uit als je je dataverbinding wilt behouden + Translate + Vertalen Credits @@ -266,10 +314,18 @@ Visual identity + + Development and translations + Ontwikkeling en vertalingen + Occitan & French translation + + Chinese translation + + Dutch translation @@ -283,24 +339,13 @@ - Chinese translation - + Use + Full sentence for translation: "Use Transifex to help with app translation to your language." - The word Transifex is a link and doesn't need translation. + Gebruik - Load images in toots - Laden afbeeldingen in toots - - - Translate - Vertalen - - - Use Transifex to help with app translation to your language - Gebruik Transifex om deze app te helpen vertalen in jouw taal - - - Development and translations - Ontwikkeling en vertalingen + to help with app translation to your language. + om deze app te helpen vertalen in jouw taal. @@ -336,5 +381,9 @@ Favorite Markeren als favoriet + + Mention + Vermelden + diff --git a/translations/harbour-tooter-nl_BE.ts b/translations/harbour-tooter-nl_BE.ts index 25d9369..d333bb8 100644 --- a/translations/harbour-tooter-nl_BE.ts +++ b/translations/harbour-tooter-nl_BE.ts @@ -21,23 +21,23 @@ - Conversation + ConversationPage - Delete - Verwijderen - - - Emojis - Emoji’s - - - Tap to insert - Tikt voor in te voegen + Copy Link to Clipboard + Write your warning here + + What's on your mind? + + + + Delete + Verwijderen + Public @@ -54,24 +54,27 @@ Direct - - What's on your mind? - - Toot sent! - - Copy Link to Clipboard - - - ImageFullScreen + CoverPage - Error loading - + New Toot + Nieuwen toot + + + + EmojiSelect + + Emojis + Emoji’s + + + Tap to insert + Tikt voor in te voegen @@ -135,6 +138,13 @@ Gefedereerd + + MediaFullScreen + + Error loading + + + MiniStatus @@ -168,72 +178,110 @@ please wait... efkens geduld… + + New Toot + Nieuwen toot + - Profile + ProfileHeader - Unfollow - Ontvolgen + Follows you + - Follow request sent! - Volgverzoek verzonden! + Bot + Bot + + + + ProfilePage + + About + If there's no good translation for "About", use "Details" (in details about profile). + + + + Followers + Will show as: "35 Followers" + Volgers Following + Will show as: "23 Following" Volgend - Mute - Dempen + Statuses + Will show as: "115 Statuses" + Statussen + + + Unfollow + Is a button. Keep it as short as possible. + Ontvolgen + + + Requested + Is a button. Keep it as short as possible. + + + + Follow + Is a button. Keep it as short as possible. + Volgen Unmute + Is a button. Keep it as short as possible. Ontdempen + + Mute + Is a button. Keep it as short as possible. + Dempen + Unblock + Is a button. Keep it as short as possible. Deblokkeren Block + Is a button. Keep it as short as possible. Blokkeren - Statuses - Statussen - - - Favourites - Duimen - - - Follow - Volgen - - - Summary - Samenvatting - - - Followers - Volgers - - - Bio + Open in Browser - Open Profile in Browser + Mention - Settings + SettingsPage Settings Instellingen + + Options + + + + Load Images in Toots + Afbeeldingen in toots laden + + + Disable this option if you want to preserve your data connection + Schakelt dees optie uit als ge uw verbinding wilt behouden + + + Account + Account + Remove Account Account verwijderen @@ -243,7 +291,7 @@ Account toevoegen - Deauthorize this app and remove your account + Deauthorize this app from using your account and remove account data from phone Trekt autorisaties van dezen app in en verwijdert uwen account @@ -251,8 +299,8 @@ Autoriseert dezen app voor uwe Mastodon-account namens u te gebruiken - Disable this option if you want to preserve your data connection - Schakelt dees optie uit als ge uw verbinding wilt behouden + Translate + Vertalen Credits @@ -266,10 +314,18 @@ Visual identity + + Development and translations + + Occitan & French translation + + Chinese translation + + Dutch translation @@ -283,24 +339,13 @@ - Chinese translation - + Use + Full sentence for translation: "Use Transifex to help with app translation to your language." - The word Transifex is a link and doesn't need translation. + Gebruikt - Load images in toots - Afbeeldingen in toots laden - - - Translate - Vertalen - - - Use Transifex to help with app translation to your language - Gebruikt Transifex voor te helpen met dezen app in uw taal te vertalen - - - Development and translations - + to help with app translation to your language. + voor te helpen met dezen app in uw taal te vertalen. @@ -336,5 +381,9 @@ Favorite Duim toevoegen + + Mention + + diff --git a/translations/harbour-tooter-oc.ts b/translations/harbour-tooter-oc.ts index 3319228..2748d68 100644 --- a/translations/harbour-tooter-oc.ts +++ b/translations/harbour-tooter-oc.ts @@ -21,23 +21,23 @@ - Conversation + ConversationPage - Delete - Escafar - - - Emojis - Emojis - - - Tap to insert - Tustejar per inserir + Copy Link to Clipboard + Write your warning here + + What's on your mind? + + + + Delete + Escafar + Public @@ -54,24 +54,27 @@ Direct - - What's on your mind? - - Toot sent! - - Copy Link to Clipboard - - - ImageFullScreen + CoverPage - Error loading - + New Toot + Nòu Tut + + + + EmojiSelect + + Emojis + Emojis + + + Tap to insert + Tustejar per inserir @@ -135,6 +138,13 @@ Federat + + MediaFullScreen + + Error loading + + + MiniStatus @@ -168,72 +178,110 @@ please wait... esperatz.... + + New Toot + Nòu Tut + - Profile + ProfileHeader - Unfollow - Quitar de seguir + Follows you + - Follow request sent! - Demanda de seguir enviada ! + Bot + Bot + + + + ProfilePage + + About + If there's no good translation for "About", use "Details" (in details about profile). + + + + Followers + Will show as: "35 Followers" + Seguidors Following + Will show as: "23 Following" Abonaments - Mute - Amagar + Statuses + Will show as: "115 Statuses" + Estatuts + + + Unfollow + Is a button. Keep it as short as possible. + Quitar de seguir + + + Requested + Is a button. Keep it as short as possible. + + + + Follow + Is a button. Keep it as short as possible. + Seguir Unmute + Is a button. Keep it as short as possible. Mostrar + + Mute + Is a button. Keep it as short as possible. + Amagar + Unblock + Is a button. Keep it as short as possible. Desblocar Block + Is a button. Keep it as short as possible. Blocar - Statuses - Estatuts - - - Favourites - Favorits - - - Follow - Seguir - - - Summary - Resumit - - - Followers - Seguidors - - - Bio + Open in Browser - Open Profile in Browser + Mention - Settings + SettingsPage Settings Parmètres + + Options + + + + Load Images in Toots + Cargar los imatges dels tuts + + + Disable this option if you want to preserve your data connection + Desactivar aquesta opcion per estalviar vòstra connexion de donadas + + + Account + Compte + Remove Account Levar un compte @@ -243,7 +291,7 @@ Ajustar un compte - Deauthorize this app and remove your account + Deauthorize this app from using your account and remove account data from phone Revocar l’aplicacion e levar vòstre compte @@ -251,8 +299,8 @@ Autorizar aquesta aplicacion a utilizar vòstre compte Mastodon per vos - Disable this option if you want to preserve your data connection - Desactivar aquesta opcion per estalviar vòstra connexion de donadas + Translate + Traduire Credits @@ -266,10 +314,18 @@ Visual identity + + Development and translations + + Occitan & French translation + + Chinese translation + + Dutch translation @@ -283,24 +339,13 @@ - Chinese translation - + Use + Full sentence for translation: "Use Transifex to help with app translation to your language." - The word Transifex is a link and doesn't need translation. + Utilizar - Load images in toots - Cargar los imatges dels tuts - - - Translate - Traduire - - - Use Transifex to help with app translation to your language - Utilizar Transifex per ajudar a traduire l’aplicacion dins vòstra lenga - - - Development and translations - + to help with app translation to your language. + per ajudar a traduire l’aplicacion dins vòstra lenga. @@ -336,5 +381,9 @@ Favorite Ajustar als favorits + + Mention + + diff --git a/translations/harbour-tooter-pl.ts b/translations/harbour-tooter-pl.ts index 4d7fe81..5a17753 100644 --- a/translations/harbour-tooter-pl.ts +++ b/translations/harbour-tooter-pl.ts @@ -5,7 +5,7 @@ API favourited - dodał(a) do ulubionych + dodał(a) do ulubionych followed you @@ -21,23 +21,23 @@ - Conversation + ConversationPage - Delete - Usuń - - - Emojis - Emoji - - - Tap to insert - Dotknij aby wstawić + Copy Link to Clipboard + Write your warning here + + What's on your mind? + + + + Delete + Usuń + Public @@ -54,24 +54,27 @@ Direct - - What's on your mind? - - Toot sent! - - Copy Link to Clipboard - - - ImageFullScreen + CoverPage - Error loading - + New Toot + Nowy wpis + + + + EmojiSelect + + Emojis + Emoji + + + Tap to insert + Dotknij aby wstawić @@ -135,6 +138,13 @@ Globalne + + MediaFullScreen + + Error loading + + + MiniStatus @@ -168,71 +178,109 @@ please wait... proszę czekać… + + New Toot + Nowy wpis + - Profile + ProfileHeader - Unfollow - Przestań śledzić + Follows you + - Follow request sent! - Wysłano prośbę o możliwość śledzenia! + Bot + Bot + + + ProfilePage - Following - Śledzisz - - - Mute - Wycisz - - - Unmute - Unmute - - - Unblock - Unblock - - - Block - Block - - - Statuses - Statuses - - - Favourites - Favourites - - - Follow - Follow - - - Summary - Summary + About + If there's no good translation for "About", use "Details" (in details about profile). + Followers - Followers - - - Bio + Will show as: "35 Followers" - Open Profile in Browser + Following + Will show as: "23 Following" + Śledzisz + + + Statuses + Will show as: "115 Statuses" + + + + Unfollow + Is a button. Keep it as short as possible. + Przestań śledzić + + + Requested + Is a button. Keep it as short as possible. + + + + Follow + Is a button. Keep it as short as possible. + + + + Unmute + Is a button. Keep it as short as possible. + + + + Mute + Is a button. Keep it as short as possible. + Wycisz + + + Unblock + Is a button. Keep it as short as possible. + + + + Block + Is a button. Keep it as short as possible. + + + + Open in Browser + + + + Mention - Settings + SettingsPage Settings - Ustawienia + Ustawienia + + + Options + + + + Load Images in Toots + + + + Disable this option if you want to preserve your data connection + + + + Account + Remove Account @@ -243,7 +291,7 @@ - Deauthorize this app and remove your account + Deauthorize this app from using your account and remove account data from phone @@ -251,7 +299,7 @@ - Disable this option if you want to preserve your data connection + Translate @@ -266,10 +314,18 @@ Visual identity + + Development and translations + + Occitan & French translation + + Chinese translation + + Dutch translation @@ -283,23 +339,12 @@ - Chinese translation + Use + Full sentence for translation: "Use Transifex to help with app translation to your language." - The word Transifex is a link and doesn't need translation. - Load images in toots - - - - Translate - - - - Use Transifex to help with app translation to your language - - - - Development and translations + to help with app translation to your language. @@ -336,5 +381,9 @@ Favorite + + Mention + + diff --git a/translations/harbour-tooter-ru.ts b/translations/harbour-tooter-ru.ts index d47095f..8e5fc39 100644 --- a/translations/harbour-tooter-ru.ts +++ b/translations/harbour-tooter-ru.ts @@ -21,23 +21,23 @@ - Conversation + ConversationPage - Delete - Удалить - - - Emojis - Cмайликов - - - Tap to insert - Нажмите, чтобы вставить + Copy Link to Clipboard + Write your warning here + + What's on your mind? + + + + Delete + Удалить + Public @@ -54,24 +54,27 @@ Direct - - What's on your mind? - - Toot sent! - - Copy Link to Clipboard - - - ImageFullScreen + CoverPage - Error loading - + New Toot + Новый + + + + EmojiSelect + + Emojis + Cмайликов + + + Tap to insert + Нажмите, чтобы вставить @@ -135,6 +138,13 @@ Федеративные + + MediaFullScreen + + Error loading + + + MiniStatus @@ -168,72 +178,110 @@ please wait... Пожалуйста, подождите... + + New Toot + Новый + - Profile + ProfileHeader - Unfollow - Отписаться + Follows you + - Follow request sent! - Следуйте запрошенному запросу! + Bot + + + + + ProfilePage + + About + If there's no good translation for "About", use "Details" (in details about profile). + + + + Followers + Will show as: "35 Followers" + Читают Following + Will show as: "23 Following" Следующий - Mute - Безгласный + Statuses + Will show as: "115 Statuses" + Статусы + + + Unfollow + Is a button. Keep it as short as possible. + Отписаться + + + Requested + Is a button. Keep it as short as possible. + + + + Follow + Is a button. Keep it as short as possible. + Следить Unmute + Is a button. Keep it as short as possible. Нет безгласный + + Mute + Is a button. Keep it as short as possible. + Безгласный + Unblock + Is a button. Keep it as short as possible. Открыть Block + Is a button. Keep it as short as possible. Блокировать - Statuses - Статусы - - - Favourites - Избранные - - - Follow - Следить - - - Summary - Резюме - - - Followers - Читают - - - Bio + Open in Browser - Open Profile in Browser + Mention - Settings + SettingsPage Settings Настройки + + Options + + + + Load Images in Toots + Загружать изображения + + + Disable this option if you want to preserve your data connection + Отключите эту опцию, если вы хотите сохранить подключение к данным + + + Account + Aккаунт + Remove Account Удалить учетную запись @@ -243,7 +291,7 @@ Добавить аккаунт - Deauthorize this app and remove your account + Deauthorize this app from using your account and remove account data from phone удалить учетную запись с устройства @@ -251,8 +299,8 @@ Уполномочить это приложение использовать свою учетную запись Mastodon от вашего имени - Disable this option if you want to preserve your data connection - Отключите эту опцию, если вы хотите сохранить подключение к данным + Translate + Переведите Credits @@ -266,10 +314,18 @@ Visual identity + + Development and translations + + Occitan & French translation + + Chinese translation + + Dutch translation @@ -283,24 +339,13 @@ - Chinese translation - + Use + Full sentence for translation: "Use Transifex to help with app translation to your language." - The word Transifex is a link and doesn't need translation. + Используйте - Load images in toots - Загружать изображения - - - Translate - Переведите - - - Use Transifex to help with app translation to your language - Используйте Transifex, чтобы помочь с переводом приложения на ваш язык - - - Development and translations - + to help with app translation to your language. + чтобы помочь с переводом приложения на ваш язык. @@ -336,5 +381,9 @@ Favorite Избранные + + Mention + + diff --git a/translations/harbour-tooter-sr.ts b/translations/harbour-tooter-sr.ts index 52a0d2c..d0eb23a 100644 --- a/translations/harbour-tooter-sr.ts +++ b/translations/harbour-tooter-sr.ts @@ -21,23 +21,23 @@ - Conversation + ConversationPage - Delete - Обриши - - - Emojis - Емотикони - - - Tap to insert - Тапни за убацивање + Copy Link to Clipboard + Write your warning here + + What's on your mind? + + + + Delete + Обриши + Public @@ -54,24 +54,27 @@ Direct - - What's on your mind? - - Toot sent! - - Copy Link to Clipboard - - - ImageFullScreen + CoverPage - Error loading - + New Toot + Novi toot + + + + EmojiSelect + + Emojis + Емотикони + + + Tap to insert + Тапни за убацивање @@ -135,6 +138,13 @@ Федеративна + + MediaFullScreen + + Error loading + + + MiniStatus @@ -168,72 +178,110 @@ please wait... молимо вас, сачекајте... + + New Toot + Novi toot + - Profile + ProfileHeader - Unfollow - Одпрати + Follows you + - Follow request sent! - Захтјев за праћењем поднесен! + Bot + + + + + ProfilePage + + About + If there's no good translation for "About", use "Details" (in details about profile). + + + + Followers + Will show as: "35 Followers" + Пратиоци Following + Will show as: "23 Following" Пратите - Mute - Утишај + Statuses + Will show as: "115 Statuses" + Статуси + + + Unfollow + Is a button. Keep it as short as possible. + Одпрати + + + Requested + Is a button. Keep it as short as possible. + + + + Follow + Is a button. Keep it as short as possible. + Прати Unmute + Is a button. Keep it as short as possible. Укини утишање + + Mute + Is a button. Keep it as short as possible. + Утишај + Unblock + Is a button. Keep it as short as possible. Одблокирати Block + Is a button. Keep it as short as possible. Блокирати - Statuses - Статуси - - - Favourites - Омиљени - - - Follow - Прати - - - Summary - Детаљи - - - Followers - Пратиоци - - - Bio + Open in Browser - Open Profile in Browser + Mention - Settings + SettingsPage Settings Подешавања + + Options + + + + Load Images in Toots + Прикажи слике у објавама + + + Disable this option if you want to preserve your data connection + Искључите ову опцију уколико желите да уштедите на преносу података + + + Account + Hалог + Remove Account Уклони налог @@ -243,7 +291,7 @@ Додај налог - Deauthorize this app and remove your account + Deauthorize this app from using your account and remove account data from phone Укините дозволе за кориштење и уклоните налог с телефона @@ -251,8 +299,8 @@ Дозволите овој апликацији да користи ваш Mastodon налог - Disable this option if you want to preserve your data connection - Искључите ову опцију уколико желите да уштедите на преносу података + Translate + Преведи Credits @@ -266,10 +314,18 @@ Visual identity + + Development and translations + + Occitan & French translation + + Chinese translation + + Dutch translation @@ -283,24 +339,13 @@ - Chinese translation - + Use + Full sentence for translation: "Use Transifex to help with app translation to your language." - The word Transifex is a link and doesn't need translation. + Користите - Load images in toots - Прикажи слике у објавама - - - Translate - Преведи - - - Use Transifex to help with app translation to your language - Користите Transifex и помозите у преводу апликације на други језик - - - Development and translations - + to help with app translation to your language. + и помозите у преводу апликације на други језик. @@ -336,5 +381,9 @@ Favorite + + Mention + + diff --git a/translations/harbour-tooter-sv.ts b/translations/harbour-tooter-sv.ts index 5cd3f54..ccfc0f8 100644 --- a/translations/harbour-tooter-sv.ts +++ b/translations/harbour-tooter-sv.ts @@ -21,23 +21,23 @@ - Conversation + ConversationPage - Delete - Radera - - - Emojis - Emojis - - - Tap to insert - Tryck för att infoga + Copy Link to Clipboard + Write your warning here + + What's on your mind? + + + + Delete + Radera + Public @@ -54,24 +54,27 @@ Direct - - What's on your mind? - - Toot sent! - - Copy Link to Clipboard - - - ImageFullScreen + CoverPage - Error loading - + New Toot + Ny toot + + + + EmojiSelect + + Emojis + Emojis + + + Tap to insert + Tryck för att infoga @@ -135,6 +138,13 @@ Förenade + + MediaFullScreen + + Error loading + + + MiniStatus @@ -168,72 +178,110 @@ please wait... Vänligen vänta... + + New Toot + Ny toot + - Profile + ProfileHeader - Unfollow - Sluta följa + Follows you + - Follow request sent! - Följarförfrågan har skickats! + Bot + Bot + + + + ProfilePage + + About + If there's no good translation for "About", use "Details" (in details about profile). + + + + Followers + Will show as: "35 Followers" + Följare Following + Will show as: "23 Following" Följer - Mute - Tysta + Statuses + Will show as: "115 Statuses" + Statusar + + + Unfollow + Is a button. Keep it as short as possible. + Sluta följa + + + Requested + Is a button. Keep it as short as possible. + + + + Follow + Is a button. Keep it as short as possible. + Följ Unmute + Is a button. Keep it as short as possible. Avtysta + + Mute + Is a button. Keep it as short as possible. + Tysta + Unblock + Is a button. Keep it as short as possible. Avblockera Block + Is a button. Keep it as short as possible. Blockera - Statuses - Statusar - - - Favourites - Favoriter - - - Follow - Följ - - - Summary - Översikt - - - Followers - Följare - - - Bio + Open in Browser - Open Profile in Browser + Mention - Settings + SettingsPage Settings Inställningar + + Options + + + + Load Images in Toots + Ladda bilder i toots + + + Disable this option if you want to preserve your data connection + Inaktivera det här alternativet om du vill behålla din dataanslutning + + + Account + Konto + Remove Account Radera konto @@ -243,16 +291,16 @@ Lägg till konto - Deauthorize this app and remove your account - Avauktorisera denna app och radera ditt konto + Deauthorize this app from using your account and remove account data from phone + Avauktorisera denna app och radera ditt konto Authorize this app to access your Mastodon account Godkänn denna app att använda ditt Mastodon-konto på dina vägnar - Disable this option if you want to preserve your data connection - Inaktivera det här alternativet om du vill behålla din dataanslutning + Translate + Översätt Credits @@ -266,10 +314,18 @@ Visual identity + + Development and translations + + Occitan & French translation + + Chinese translation + + Dutch translation @@ -283,24 +339,13 @@ - Chinese translation - + Use + Full sentence for translation: "Use Transifex to help with app translation to your language." - The word Transifex is a link and doesn't need translation. + Använd - Load images in toots - Ladda bilder i toots - - - Translate - Översätt - - - Use Transifex to help with app translation to your language - - - - Development and translations - Använd Transifex för att hjälpa med app-översättningar till ditt språk + to help with app translation to your language. + för att hjälpa med app-översättningar till ditt språk. @@ -336,5 +381,9 @@ Favorite Favorisera + + Mention + + diff --git a/translations/harbour-tooter-zh_CN.ts b/translations/harbour-tooter-zh_CN.ts index b92289e..b2c834b 100644 --- a/translations/harbour-tooter-zh_CN.ts +++ b/translations/harbour-tooter-zh_CN.ts @@ -21,23 +21,23 @@ - Conversation + ConversationPage - Delete - 删除 - - - Emojis - 表情 - - - Tap to insert - 点击以插入 + Copy Link to Clipboard + 复制链接到剪切板 Write your warning here 在此编写你的警告信息 + + What's on your mind? + 有何想法? + + + Delete + 删除 + Public 公共区域 @@ -54,24 +54,27 @@ Direct 私信 - - What's on your mind? - 有何想法? - Toot sent! - - - - Copy Link to Clipboard - 复制链接到剪切板 + 已发送嘟嘟! - ImageFullScreen + CoverPage - Error loading - + New Toot + 新嘟嘟 + + + + EmojiSelect + + Emojis + 表情 + + + Tap to insert + 点击以插入 @@ -135,6 +138,13 @@ 联合 + + MediaFullScreen + + Error loading + 加载错误 + + MiniStatus @@ -168,72 +178,110 @@ please wait... 稍等片刻...... + + New Toot + 新嘟嘟 + - Profile + ProfileHeader - Unfollow - 取消关注 + Follows you + - Follow request sent! - 已寄出关注请求! + Bot + + + + + ProfilePage + + About + If there's no good translation for "About", use "Details" (in details about profile). + + + + Followers + Will show as: "35 Followers" + 关注者 Following + Will show as: "23 Following" 关注中 - Mute - 静音 + Statuses + Will show as: "115 Statuses" + 状态 + + + Unfollow + Is a button. Keep it as short as possible. + 取消关注 + + + Requested + Is a button. Keep it as short as possible. + + + + Follow + Is a button. Keep it as short as possible. + 关注 Unmute + Is a button. Keep it as short as possible. 未静音 + + Mute + Is a button. Keep it as short as possible. + 静音 + Unblock + Is a button. Keep it as short as possible. 解除封锁 Block + Is a button. Keep it as short as possible. 封锁 - Statuses - 状态 - - - Favourites - 收藏 - - - Follow - 关注 - - - Summary - 摘要 - - - Followers - 关注者 - - - Bio - 简介 - - - Open Profile in Browser + Open in Browser 在浏览器打开个人简介 + + Mention + + - Settings + SettingsPage Settings 设置 + + Options + + + + Load Images in Toots + 加载嘟嘟图片 + + + Disable this option if you want to preserve your data connection + 如果你想保护你的数据连接,请禁用此选项 + + + Account + 账号 + Remove Account 移除账号 @@ -243,7 +291,7 @@ 添加账号 - Deauthorize this app and remove your account + Deauthorize this app from using your account and remove account data from phone 取消授权此软件并移除你的账号 @@ -251,8 +299,8 @@ 授权此软件使用你的 Mastodon 账号 - Disable this option if you want to preserve your data connection - 如果你想保护你的数据连接,请禁用此选项 + Translate + Credits @@ -266,10 +314,18 @@ Visual identity 视觉识别 + + Development and translations + 开发及翻译 + Occitan & French translation 奥克西坦语及法语翻译 + + Chinese translation + 汉语翻译 + Dutch translation 尼德兰语翻译 @@ -283,25 +339,14 @@ 添加 README 文件 - Chinese translation - 汉语翻译 - - - Load images in toots + Use + Full sentence for translation: "Use Transifex to help with app translation to your language." - The word Transifex is a link and doesn't need translation. - Translate + to help with app translation to your language. - - Use Transifex to help with app translation to your language - 使用 Transifex 以帮助翻译软件为你的语言 - - - Development and translations - 开发及翻译 - Toot @@ -336,5 +381,9 @@ Favorite 关注 + + Mention + + diff --git a/translations/harbour-tooter.ts b/translations/harbour-tooter.ts index 7e229a9..81c2b3a 100644 --- a/translations/harbour-tooter.ts +++ b/translations/harbour-tooter.ts @@ -1,6 +1,6 @@ - + API @@ -21,60 +21,60 @@ - Conversation + ConversationPage Copy Link to Clipboard - + Copy Link to Clipboard Write your warning here - + Write your warning here What's on your mind? - + What's on your mind? Delete - + Delete Public - + Public Unlisted - + Unlisted Followers-only - + Followers-only Direct - + Direct Toot sent! - + Toot sent! - EmojiPage + CoverPage + + New Toot + New Toot + + + + EmojiSelect Emojis - + Emojis Tap to insert - - - - - ImageFullScreen - - Error loading - + Tap to insert @@ -88,23 +88,23 @@ LoginPage Login - + Login Instance - + Instance Enter a valid Mastodon instance URL - + Enter a valid Mastodon instance URL Mastodon is a free, open-source social network. A decentralized alternative to commercial platforms, it avoids the risks of a single company monopolizing your communication. Pick a server that you trust — whichever you choose, you can interact with everyone else. Anyone can run their own Mastodon instance and participate in the social network seamlessly. - + Mastodon is a free, open-source social network. A decentralized alternative to commercial platforms, it avoids the risks of a single company monopolizing your communication. Pick a server that you trust — whichever you choose, you can interact with everyone else. Anyone can run their own Mastodon instance and participate in the social network seamlessly. Reload - + Reload @@ -138,6 +138,13 @@ + + MediaFullScreen + + Error loading + Error loading + + MiniStatus @@ -171,139 +178,174 @@ please wait... + + New Toot + New Toot + - Profile + ProfileHeader - Unfollow - Unfollow + Follows you + Follows you - Follow request sent! - Follow request sent! + Bot + Bot + + + + ProfilePage + + About + If there's no good translation for "About", use "Details" (in details about profile). + About + + + Followers + Will show as: "35 Followers" + Followers Following + Will show as: "23 Following" Following - Mute - Mute + Statuses + Will show as: "115 Statuses" + Statuses + + + Unfollow + Is a button. Keep it as short as possible. + Unfollow + + + Requested + Is a button. Keep it as short as possible. + Requested + + + Follow + Is a button. Keep it as short as possible. + Follow Unmute + Is a button. Keep it as short as possible. Unmute + + Mute + Is a button. Keep it as short as possible. + Mute + Unblock + Is a button. Keep it as short as possible. Unblock Block + Is a button. Keep it as short as possible. Block - Statuses - Statuses + Open in Browser + Open in Browser - Favourites - Favourites - - - Follow - Follow - - - Summary - Summary - - - Followers - Followers - - - Bio - - - - Open Profile in Browser - + Mention + Mention - Settings + SettingsPage Settings - Settings + Settings - Remove Account - + Options + Options - Add Account - - - - Deauthorize this app and remove your account - - - - Authorize this app to access your Mastodon account - + Load Images in Toots + Load Images in Toots Disable this option if you want to preserve your data connection - + Disable this option if you want to preserve your data connection - Credits - + Account + Account - UI/UX design and development - + Remove Account + Remove Account - Visual identity - + Add Account + Add Account - Occitan & French translation - + Deauthorize this app from using your account and remove account data from phone + Deauthorize this app from using your account and remove account data from phone - Dutch translation - - - - Spanish translation - - - - Added README file - - - - Chinese translation - - - - Load images in toots - + Authorize this app to access your Mastodon account + Authorize this app to access your Mastodon account Translate - + Translate - Use Transifex to help with app translation to your language - + Credits + Credits + + + UI/UX design and development + UI/UX design and development + + + Visual identity + Visual identity Development and translations - + Development and translations + + + Occitan & French translation + Occitan & French translation + + + Chinese translation + Chinese translation + + + Dutch translation + Dutch translation + + + Spanish translation + Spanish translation + + + Added README file + Added README file + + + Use + Full sentence for translation: "Use Transifex to help with app translation to your language." - The word Transifex is a link and doesn't need translation. + Use + + + to help with app translation to your language. + to help with app translation to your language. @@ -325,19 +367,23 @@ VisualContainer Unboost - + Unboost Boost - + Boost Unfavorite - + Unfavourite Favorite - + Favourite + + + Mention + Mention