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/translations/harbour-tooter-de.ts b/translations/harbour-tooter-de.ts
index 507cee7..05e7430 100644
--- a/translations/harbour-tooter-de.ts
+++ b/translations/harbour-tooter-de.ts
@@ -198,52 +198,67 @@
ProfilePage
+ If there's no good translation for "About", use "Details" (in details about profile).Details
+ Will show as: "35 Followers"Folgende
+ Will show as: "23 Following"Folgt
+ Will show as: "115 Statuses"Beiträge
+ Is a button. Keep it as short as possible.Entfolgen
+ Is a button. Keep it as short as possible.Angefragt
+ Is a button. Keep it as short as possible.Folgen
+ Is a button. Keep it as short as possible.Nicht stumm schalten
+ Is a button. Keep it as short as possible.Stumm schalten
+ Is a button. Keep it as short as possible.Nicht blockieren
+ Is a button. Keep it as short as possible.BlockierenIm Browser öffnen
+
+
+ Erwähnen
+ SettingsPage
@@ -287,10 +302,6 @@
Übersetzungen
-
-
- <a href='https://www.transifex.com/dysko/tooter/'>Transifex</a> benutzen um bei den Übersetzungen mitzuhelfen.
- Über
@@ -327,6 +338,15 @@
Erstellung README-Datei
+
+
+ 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
+
+
+
+ um bei den Übersetzungen mitzuhelfen.
+ Toot
diff --git a/translations/harbour-tooter-el.ts b/translations/harbour-tooter-el.ts
index ca66d27..2a21994 100644
--- a/translations/harbour-tooter-el.ts
+++ b/translations/harbour-tooter-el.ts
@@ -36,7 +36,7 @@
- Διαγραφή
+ Διαγραφή
@@ -63,18 +63,18 @@
CoverPage
- Νέος
+ ΝέοςEmojiSelect
- Emoji
+ Emoji
- Κτυπήστε για εισαγωγή
+ Κτυπήστε για εισαγωγή
@@ -131,7 +131,7 @@
-
+ Τοπικός
@@ -180,7 +180,7 @@
- Νέος
+ Νέος
@@ -198,58 +198,73 @@
ProfilePage
+ If there's no good translation for "About", use "Details" (in details about profile).
- Σας ακολουθούν
+ Will show as: "35 Followers"
+ Σας ακολουθούν
- Σε παρακολούθηση
+ Will show as: "23 Following"
+ Σε παρακολούθηση
- Κατάσταση
+ Will show as: "115 Statuses"
+ Κατάσταση
- Αναίρεση παρακολούθησης
+ Is a button. Keep it as short as possible.
+ Αναίρεση παρακολούθησης
+ Is a button. Keep it as short as possible.
- Παρακολούθηση
+ Is a button. Keep it as short as possible.
+ Παρακολούθηση
- Αναίρεση σίγασης
+ Is a button. Keep it as short as possible.
+ Αναίρεση σίγασης
- Σίγαση
+ Is a button. Keep it as short as possible.
+ Σίγαση
- Αναίρεση φραγής
+ Is a button. Keep it as short as possible.
+ Αναίρεση φραγής
- Φραγή
+ Is a button. Keep it as short as possible.
+ Φραγή
+
+
+
+ SettingsPage
- Ρυθμίσεις
+ Ρυθμίσεις
@@ -261,43 +276,39 @@
- Απενεργοποιήστε αυτήν την επιλογή αν θέλετε να διατηρήσετε την σύνδεση των δεδομένων σας
+ Απενεργοποιήστε αυτήν την επιλογή αν θέλετε να διατηρήσετε την σύνδεση των δεδομένων σας
-
+ λογαριασμού
- Αφαίρεση λογαριασμού
+ Αφαίρεση λογαριασμού
- Προσθήκη λογαριασμού
+ Προσθήκη λογαριασμού
-
+ Άρση της αδειοδότησης της εφαρμογής και αφαίρεση του λογαριασμού σας
- Να επιτρέπεται στην εφαρμογή να χρησιμοποιεί τον λογαριασμό σας στο Mastodon εκ μέρους σας
+ Να επιτρέπεται στην εφαρμογή να χρησιμοποιεί τον λογαριασμό σας στο Mastodon εκ μέρους σας
- Μετάφραση
-
-
-
-
+ Μετάφραση
- Ευχαριστίες
+ Ευχαριστίες
- UI/UX σχεδιασμός και ανάπτυξη
+ UI/UX σχεδιασμός και ανάπτυξη
@@ -327,6 +338,15 @@
+
+
+ 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.
+ Χρησιμοποιήστε το
+
+
+
+ για να βοηθήσετε την μετάφραση της εφαρμογής στην γλώσσα σας.
+ Toot
diff --git a/translations/harbour-tooter-es.ts b/translations/harbour-tooter-es.ts
index 7071824..af93f43 100644
--- a/translations/harbour-tooter-es.ts
+++ b/translations/harbour-tooter-es.ts
@@ -198,52 +198,67 @@
ProfilePage
-
+ If there's no good translation for "About", use "Details" (in details about profile).
+ Detalles
+ Will show as: "35 Followers"Seguidores
+ Will show as: "23 Following"Siguiendo
+ Will show as: "115 Statuses"Estados
+ Is a button. Keep it as short as possible.Dejar de seguir
+ Is a button. Keep it as short as possible.
+ Is a button. Keep it as short as possible.Seguir
+ Is a button. Keep it as short as possible.Dejar de silenciar
+ Is a button. Keep it as short as possible.Silenciar
+ Is a button. Keep it as short as possible.Desbloquear
+ Is a button. Keep it as short as possible.BloquearAbrir en el navegador
+
+
+
+ SettingsPage
@@ -287,10 +302,6 @@
Traducir
-
-
- Usar <a href='https://www.transifex.com/dysko/tooter/'>Transifex</a> para ayudar con traducciones
- Créditos
@@ -327,6 +338,15 @@
Añadido archivo README
+
+
+ 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
+
+
+
+ para ayudar con traducciones.
+ Toot
diff --git a/translations/harbour-tooter-fr.ts b/translations/harbour-tooter-fr.ts
index 26b00e7..3f560f4 100644
--- a/translations/harbour-tooter-fr.ts
+++ b/translations/harbour-tooter-fr.ts
@@ -198,52 +198,67 @@
ProfilePage
+ If there's no good translation for "About", use "Details" (in details about profile).Détails
+ Will show as: "35 Followers"Abonné(e)s
+ Will show as: "23 Following"Abonnements
+ Will show as: "115 Statuses"Pouets
+ Is a button. Keep it as short as possible.Ne plus suivre
+ Is a button. Keep it as short as possible.Demandé
+ Is a button. Keep it as short as possible.Suivre
+ Is a button. Keep it as short as possible.Démasquer
+ Is a button. Keep it as short as possible.Masquer
+ Is a button. Keep it as short as possible.Débloquer
+ Is a button. Keep it as short as possible.BloquerOuvrir dans le navigateur
+
+
+ Mentionner
+ SettingsPage
@@ -287,10 +302,6 @@
Traduire
-
-
- Utiliser <a href='https://www.transifex.com/dysko/tooter/'>Transifex</a> pour aider à traduire cette application.
- Développement
@@ -327,6 +338,15 @@
Fichier README ajouté
+
+
+ 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
+
+
+
+ pour aider à traduire cette application.
+ Toot
diff --git a/translations/harbour-tooter-it.ts b/translations/harbour-tooter-it.ts
index 47a3b60..8cb29ba 100644
--- a/translations/harbour-tooter-it.ts
+++ b/translations/harbour-tooter-it.ts
@@ -238,62 +238,78 @@
ProfilePage
-
+
+ If there's no good translation for "About", use "Details" (in details about profile).Dettagli
-
+
+ Will show as: "35 Followers"Seguaci
-
+
+ Will show as: "23 Following"Segue
-
+
+ Will show as: "115 Statuses"Toots
+
+ Menzionare
+
+
+
+ Is a button. Keep it as short as possible.Smetti di seguire
-
+
+ Is a button. Keep it as short as possible.Richiesto
-
+
+ Is a button. Keep it as short as possible.Segui
-
+
+ Is a button. Keep it as short as possible.Non silenziare
-
+
+ Is a button. Keep it as short as possible.Silenzia
-
+
+ Is a button. Keep it as short as possible.Sblocca
-
+
+ Is a button. Keep it as short as possible.Blocca
-
+ Aprire nel browser
@@ -351,52 +367,58 @@
Tradurre
-
-
- Utilizzare <a href='https://www.transifex.com/dysko/tooter/'>Transifex</a> per aiutare nella traduzione dell'app.
+
+
+ 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
-
+
+
+ per aiutare nella traduzione dell'app.
+
+
+ Sviluppo
-
+ Design UI/UX e sviluppo
-
+ Identità visiva
-
+ Sviluppo e traduzioni
-
+ Traduzione francese e occitanica
-
+ Traduzione cinese
-
+ Traduzione olandese
-
+ Traduzione spagnola
-
+ Aggiunto file README
diff --git a/translations/harbour-tooter-nl.ts b/translations/harbour-tooter-nl.ts
index 1dc2c52..abf442d 100644
--- a/translations/harbour-tooter-nl.ts
+++ b/translations/harbour-tooter-nl.ts
@@ -24,7 +24,7 @@
ConversationPage
-
+ Linkadres kopiëren
@@ -36,7 +36,7 @@
- Verwijderen
+ Verwijderen
@@ -63,18 +63,18 @@
CoverPage
- Nieuwe Toot
+ Nieuwe TootEmojiSelect
- Emojis
+ Emojis
- Tikken om in te voegen
+ Tikken om in te voegen
@@ -180,7 +180,7 @@
- Nieuwe Toot
+ Nieuwe Toot
@@ -191,113 +191,124 @@
-
+ BotProfilePage
-
+ If there's no good translation for "About", use "Details" (in details about profile).
+ Gegevens
- Volgers
+ Will show as: "35 Followers"
+ Volgers
- Volgend
+ Will show as: "23 Following"
+ Volgend
- Statussen
+ Will show as: "115 Statuses"
+ Statussen
- Ontvolgen
+ Is a button. Keep it as short as possible.
+ Ontvolgen
-
+ Is a button. Keep it as short as possible.
+ Gevraagd
- Volgen
+ Is a button. Keep it as short as possible.
+ Volgen
- Ontdempen
+ Is a button. Keep it as short as possible.
+ Ontdempen
- Dempen
+ Is a button. Keep it as short as possible.
+ Dempen
- Deblokkeren
+ Is a button. Keep it as short as possible.
+ Deblokkeren
- Blokkeren
+ Is a button. Keep it as short as possible.
+ Blokkeren
-
+ Open een Browser
+
+
+
+ VermeldenSettingsPage
- Instellingen
+ Instellingen
-
+ Opties
-
+ Laden afbeeldingen in toots
- Schakel deze optie uit als je je dataverbinding wilt behouden
+ Schakel deze optie uit als je je dataverbinding wilt behouden
-
+ Account
- Verwijderen account
+ Verwijderen account
- Toevoegen account
+ Toevoegen account
-
+ Trek autorisaties van deze app in en verwijder je account
- Autoriseer deze app om je Mastodon namens jou te gebruiken
+ Autoriseer deze app om je Mastodon namens jou te gebruiken
- Vertalen
-
-
-
-
+ Vertalen
- Credits
+ Credits
- UI/UX ontwerp en ontwikkeling
+ UI/UX ontwerp en ontwikkeling
@@ -305,7 +316,7 @@
- Ontwikkeling en vertalingen
+ Ontwikkeling en vertalingen
@@ -327,6 +338,15 @@
+
+
+ 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
+
+
+
+ om deze app te helpen vertalen in jouw taal.
+ Toot
@@ -363,7 +383,7 @@
-
+ Vermelden
diff --git a/translations/harbour-tooter-nl_BE.ts b/translations/harbour-tooter-nl_BE.ts
index 001ba1e..d333bb8 100644
--- a/translations/harbour-tooter-nl_BE.ts
+++ b/translations/harbour-tooter-nl_BE.ts
@@ -36,7 +36,7 @@
- Verwijderen
+ Verwijderen
@@ -63,18 +63,18 @@
CoverPage
- Nieuwen toot
+ Nieuwen tootEmojiSelect
- Emoji’s
+ Emoji’s
- Tikt voor in te voegen
+ Tikt voor in te voegen
@@ -180,7 +180,7 @@
- Nieuwen toot
+ Nieuwen toot
@@ -191,65 +191,80 @@
-
+ BotProfilePage
+ If there's no good translation for "About", use "Details" (in details about profile).
- Volgers
+ Will show as: "35 Followers"
+ Volgers
- Volgend
+ Will show as: "23 Following"
+ Volgend
- Statussen
+ Will show as: "115 Statuses"
+ Statussen
- Ontvolgen
+ Is a button. Keep it as short as possible.
+ Ontvolgen
+ Is a button. Keep it as short as possible.
- Volgen
+ Is a button. Keep it as short as possible.
+ Volgen
- Ontdempen
+ Is a button. Keep it as short as possible.
+ Ontdempen
- Dempen
+ Is a button. Keep it as short as possible.
+ Dempen
- Deblokkeren
+ Is a button. Keep it as short as possible.
+ Deblokkeren
- Blokkeren
+ Is a button. Keep it as short as possible.
+ Blokkeren
+
+
+
+ SettingsPage
- Instellingen
+ Instellingen
@@ -257,47 +272,43 @@
-
+ Afbeeldingen in toots laden
- Schakelt dees optie uit als ge uw verbinding wilt behouden
+ Schakelt dees optie uit als ge uw verbinding wilt behouden
-
+ Account
- Account verwijderen
+ Account verwijderen
- Account toevoegen
+ Account toevoegen
-
+ Trekt autorisaties van dezen app in en verwijdert uwen account
- Autoriseert dezen app voor uwe Mastodon-account namens u te gebruiken
+ Autoriseert dezen app voor uwe Mastodon-account namens u te gebruiken
- Vertalen
-
-
-
-
+ Vertalen
- Credits
+ Credits
- UI/UX-ontwerp en -ontwikkeling
+ UI/UX-ontwerp en -ontwikkeling
@@ -327,6 +338,15 @@
+
+
+ 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
+
+
+
+ voor te helpen met dezen app in uw taal te vertalen.
+ Toot
diff --git a/translations/harbour-tooter-oc.ts b/translations/harbour-tooter-oc.ts
index 3788b91..2748d68 100644
--- a/translations/harbour-tooter-oc.ts
+++ b/translations/harbour-tooter-oc.ts
@@ -36,7 +36,7 @@
- Escafar
+ Escafar
@@ -63,18 +63,18 @@
CoverPage
- Nòu Tut
+ Nòu TutEmojiSelect
- Emojis
+ Emojis
- Tustejar per inserir
+ Tustejar per inserir
@@ -180,7 +180,7 @@
- Nòu Tut
+ Nòu Tut
@@ -191,65 +191,80 @@
-
+ BotProfilePage
+ If there's no good translation for "About", use "Details" (in details about profile).
- Seguidors
+ Will show as: "35 Followers"
+ Seguidors
- Abonaments
+ Will show as: "23 Following"
+ Abonaments
- Estatuts
+ Will show as: "115 Statuses"
+ Estatuts
- Quitar de seguir
+ Is a button. Keep it as short as possible.
+ Quitar de seguir
+ Is a button. Keep it as short as possible.
- Seguir
+ Is a button. Keep it as short as possible.
+ Seguir
- Mostrar
+ Is a button. Keep it as short as possible.
+ Mostrar
- Amagar
+ Is a button. Keep it as short as possible.
+ Amagar
- Desblocar
+ Is a button. Keep it as short as possible.
+ Desblocar
- Blocar
+ Is a button. Keep it as short as possible.
+ Blocar
+
+
+
+ SettingsPage
- Parmètres
+ Parmètres
@@ -257,47 +272,43 @@
-
+ Cargar los imatges dels tuts
- Desactivar aquesta opcion per estalviar vòstra connexion de donadas
+ Desactivar aquesta opcion per estalviar vòstra connexion de donadas
-
+ Compte
- Levar un compte
+ Levar un compte
- Ajustar un compte
+ Ajustar un compte
-
+ Revocar l’aplicacion e levar vòstre compte
- Autorizar aquesta aplicacion a utilizar vòstre compte Mastodon per vos
+ Autorizar aquesta aplicacion a utilizar vòstre compte Mastodon per vos
- Traduire
-
-
-
-
+ Traduire
- Crèdits
+ Crèdits
- UI/UX design e desvlopament
+ UI/UX design e desvlopament
@@ -327,6 +338,15 @@
+
+
+ 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
+
+
+
+ per ajudar a traduire l’aplicacion dins vòstra lenga.
+ Toot
diff --git a/translations/harbour-tooter-pl.ts b/translations/harbour-tooter-pl.ts
index 525a8ea..5a17753 100644
--- a/translations/harbour-tooter-pl.ts
+++ b/translations/harbour-tooter-pl.ts
@@ -5,7 +5,7 @@
API
- dodał(a) do ulubionych
+ dodał(a) do ulubionych
@@ -36,7 +36,7 @@
- Usuń
+ Usuń
@@ -63,18 +63,18 @@
CoverPage
- Nowy wpis
+ Nowy wpisEmojiSelect
- Emoji
+ Emoji
- Dotknij aby wstawić
+ Dotknij aby wstawić
@@ -180,7 +180,7 @@
- Nowy wpis
+ Nowy wpis
@@ -191,65 +191,80 @@
-
+ BotProfilePage
+ If there's no good translation for "About", use "Details" (in details about profile).
- Followers
+ Will show as: "35 Followers"
+
- Śledzisz
+ Will show as: "23 Following"
+ Śledzisz
- Statuses
+ Will show as: "115 Statuses"
+
- Przestań śledzić
+ Is a button. Keep it as short as possible.
+ Przestań śledzić
+ 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.
+
- Wycisz
+ 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.
+
+
+
+
+ SettingsPage
- Ustawienia
+ Ustawienia
@@ -287,10 +302,6 @@
-
-
-
-
@@ -327,6 +338,15 @@
+
+
+ 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.
+
+
+
+
+
+ Toot
diff --git a/translations/harbour-tooter-ru.ts b/translations/harbour-tooter-ru.ts
index 2fb00f3..8e5fc39 100644
--- a/translations/harbour-tooter-ru.ts
+++ b/translations/harbour-tooter-ru.ts
@@ -36,7 +36,7 @@
- Удалить
+ Удалить
@@ -63,18 +63,18 @@
CoverPage
- Новый
+ НовыйEmojiSelect
- Cмайликов
+ Cмайликов
- Нажмите, чтобы вставить
+ Нажмите, чтобы вставить
@@ -180,7 +180,7 @@
- Новый
+ Новый
@@ -198,58 +198,73 @@
ProfilePage
+ If there's no good translation for "About", use "Details" (in details about profile).
- Читают
+ Will show as: "35 Followers"
+ Читают
- Следующий
+ Will show as: "23 Following"
+ Следующий
- Статусы
+ Will show as: "115 Statuses"
+ Статусы
- Отписаться
+ Is a button. Keep it as short as possible.
+ Отписаться
+ Is a button. Keep it as short as possible.
- Следить
+ Is a button. Keep it as short as possible.
+ Следить
- Нет безгласный
+ Is a button. Keep it as short as possible.
+ Нет безгласный
- Безгласный
+ Is a button. Keep it as short as possible.
+ Безгласный
- Открыть
+ Is a button. Keep it as short as possible.
+ Открыть
- Блокировать
+ Is a button. Keep it as short as possible.
+ Блокировать
+
+
+
+ SettingsPage
- Настройки
+ Настройки
@@ -257,47 +272,43 @@
-
+ Загружать изображения
- Отключите эту опцию, если вы хотите сохранить подключение к данным
+ Отключите эту опцию, если вы хотите сохранить подключение к данным
-
+ Aккаунт
- Удалить учетную запись
+ Удалить учетную запись
- Добавить аккаунт
+ Добавить аккаунт
-
+ удалить учетную запись с устройства
- Уполномочить это приложение использовать свою учетную запись Mastodon от вашего имени
+ Уполномочить это приложение использовать свою учетную запись Mastodon от вашего имени
- Переведите
-
-
-
-
+ Переведите
- Зачет
+ Зачет
- Дизайн и разработка UI / UX
+ Дизайн и разработка UI / UX
@@ -327,6 +338,15 @@
+
+
+ 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.
+ Используйте
+
+
+
+ чтобы помочь с переводом приложения на ваш язык.
+ Toot
diff --git a/translations/harbour-tooter-sr.ts b/translations/harbour-tooter-sr.ts
index c9f1e30..d0eb23a 100644
--- a/translations/harbour-tooter-sr.ts
+++ b/translations/harbour-tooter-sr.ts
@@ -36,7 +36,7 @@
- Обриши
+ Обриши
@@ -63,18 +63,18 @@
CoverPage
- Novi toot
+ Novi tootEmojiSelect
- Емотикони
+ Емотикони
- Тапни за убацивање
+ Тапни за убацивање
@@ -180,7 +180,7 @@
- Novi toot
+ Novi toot
@@ -198,58 +198,73 @@
ProfilePage
+ If there's no good translation for "About", use "Details" (in details about profile).
- Пратиоци
+ Will show as: "35 Followers"
+ Пратиоци
- Пратите
+ Will show as: "23 Following"
+ Пратите
- Статуси
+ Will show as: "115 Statuses"
+ Статуси
- Одпрати
+ Is a button. Keep it as short as possible.
+ Одпрати
+ Is a button. Keep it as short as possible.
- Прати
+ Is a button. Keep it as short as possible.
+ Прати
- Укини утишање
+ Is a button. Keep it as short as possible.
+ Укини утишање
- Утишај
+ Is a button. Keep it as short as possible.
+ Утишај
- Одблокирати
+ Is a button. Keep it as short as possible.
+ Одблокирати
- Блокирати
+ Is a button. Keep it as short as possible.
+ Блокирати
+
+
+
+ SettingsPage
- Подешавања
+ Подешавања
@@ -257,47 +272,43 @@
-
+ Прикажи слике у објавама
- Искључите ову опцију уколико желите да уштедите на преносу података
+ Искључите ову опцију уколико желите да уштедите на преносу података
-
+ Hалог
- Уклони налог
+ Уклони налог
- Додај налог
+ Додај налог
-
+ Укините дозволе за кориштење и уклоните налог с телефона
- Дозволите овој апликацији да користи ваш Mastodon налог
+ Дозволите овој апликацији да користи ваш Mastodon налог
- Преведи
-
-
-
-
+ Преведи
- Спомен плоча
+ Спомен плоча
- интерфејс дизајн и развој
+ интерфејс дизајн и развој
@@ -327,6 +338,15 @@
+
+
+ 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.
+ Користите
+
+
+
+ и помозите у преводу апликације на други језик.
+ Toot
diff --git a/translations/harbour-tooter-sv.ts b/translations/harbour-tooter-sv.ts
index dc0146c..ccfc0f8 100644
--- a/translations/harbour-tooter-sv.ts
+++ b/translations/harbour-tooter-sv.ts
@@ -36,7 +36,7 @@
- Radera
+ Radera
@@ -63,18 +63,18 @@
CoverPage
- Ny toot
+ Ny tootEmojiSelect
- Emojis
+ Emojis
- Tryck för att infoga
+ Tryck för att infoga
@@ -180,7 +180,7 @@
- Ny toot
+ Ny toot
@@ -191,65 +191,80 @@
-
+ BotProfilePage
+ If there's no good translation for "About", use "Details" (in details about profile).
- Följare
+ Will show as: "35 Followers"
+ Följare
- Följer
+ Will show as: "23 Following"
+ Följer
- Statusar
+ Will show as: "115 Statuses"
+ Statusar
- Sluta följa
+ Is a button. Keep it as short as possible.
+ Sluta följa
+ Is a button. Keep it as short as possible.
- Följ
+ Is a button. Keep it as short as possible.
+ Följ
- Avtysta
+ Is a button. Keep it as short as possible.
+ Avtysta
- Tysta
+ Is a button. Keep it as short as possible.
+ Tysta
- Avblockera
+ Is a button. Keep it as short as possible.
+ Avblockera
- Blockera
+ Is a button. Keep it as short as possible.
+ Blockera
+
+
+
+ SettingsPage
- Inställningar
+ Inställningar
@@ -257,47 +272,43 @@
-
+ Ladda bilder i toots
- Inaktivera det här alternativet om du vill behålla din dataanslutning
+ Inaktivera det här alternativet om du vill behålla din dataanslutning
-
+ Konto
- Radera konto
+ Radera konto
- Lägg till konto
+ Lägg till konto
-
+ Avauktorisera denna app och radera ditt konto
- Godkänn denna app att använda ditt Mastodon-konto på dina vägnar
+ Godkänn denna app att använda ditt Mastodon-konto på dina vägnar
- Översätt
-
-
-
-
+ Översätt
- Erkännanden
+ Erkännanden
- UI/UX design och utveckling
+ UI/UX design och utveckling
@@ -305,7 +316,7 @@
- Använd Transifex för att hjälpa med app-översättningar till ditt språk
+
@@ -327,6 +338,15 @@
+
+
+ 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
+
+
+
+ för att hjälpa med app-översättningar till ditt språk.
+ Toot
diff --git a/translations/harbour-tooter-zh_CN.ts b/translations/harbour-tooter-zh_CN.ts
index 15e9e78..b2c834b 100644
--- a/translations/harbour-tooter-zh_CN.ts
+++ b/translations/harbour-tooter-zh_CN.ts
@@ -198,52 +198,67 @@
ProfilePage
+ If there's no good translation for "About", use "Details" (in details about profile).
+ Will show as: "35 Followers"关注者
+ Will show as: "23 Following"关注中
+ Will show as: "115 Statuses"状态
+ Is a button. Keep it as short as possible.取消关注
+ Is a button. Keep it as short as possible.
+ Is a button. Keep it as short as possible.关注
+ Is a button. Keep it as short as possible.未静音
+ Is a button. Keep it as short as possible.静音
+ Is a button. Keep it as short as possible.解除封锁
+ Is a button. Keep it as short as possible.封锁在浏览器打开个人简介
+
+
+
+ SettingsPage
@@ -287,10 +302,6 @@
-
-
- 使用 <a href='https://www.transifex.com/dysko/tooter/'>Transifex</a> 以帮助翻译软件为你的语言.
- 信誉
@@ -327,6 +338,15 @@
添加 README 文件
+
+
+ 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.
+
+
+
+
+
+ Toot
diff --git a/translations/harbour-tooter.ts b/translations/harbour-tooter.ts
index 629a6de..81c2b3a 100644
--- a/translations/harbour-tooter.ts
+++ b/translations/harbour-tooter.ts
@@ -198,52 +198,67 @@
ProfilePage
+ If there's no good translation for "About", use "Details" (in details about profile).About
+ Will show as: "35 Followers"Followers
+ Will show as: "23 Following"Following
+ Will show as: "115 Statuses"Statuses
+ Is a button. Keep it as short as possible.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.BlockOpen in Browser
+
+
+ Mention
+ SettingsPage
@@ -287,10 +302,6 @@
Translate
-
-
- Use <a href='https://www.transifex.com/dysko/tooter/'>Transifex</a> to help with app translation to your language.
- Credits
@@ -327,6 +338,15 @@
Added README file
+
+
+ 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.
+ Toot