diff --git a/qml/components/PollPreview.qml b/qml/components/PollPreview.qml index 74a330d..79d5689 100644 --- a/qml/components/PollPreview.qml +++ b/qml/components/PollPreview.qml @@ -178,7 +178,7 @@ Item { Label { id: optionVoterPercentage font.pixelSize: Theme.fontSizeTiny - text: qsTr("%L1\%", "% of votes for option").arg(modelData.vote_percentage) + text: qsTr("%Ln\%", "% of votes for option", modelData.vote_percentage) horizontalAlignment: Text.AlignRight anchors { right: parent.right @@ -226,7 +226,7 @@ Item { id: totalVoterCount font.pixelSize: Theme.fontSizeTiny anchors.verticalCenter: parent.verticalCenter - text: qsTr("%L1 vote(s) total", "number of total votes", pollData.total_voter_count).arg(pollData.total_voter_count) + text: qsTr("%Ln vote(s) total", "number of total votes", pollData.total_voter_count) width: contentWidth height: contentHeight horizontalAlignment: Text.AlignRight diff --git a/qml/components/chatInformationPage/ChatInformationPageContent.qml b/qml/components/chatInformationPage/ChatInformationPageContent.qml index 4b78df8..a7778ab 100644 --- a/qml/components/chatInformationPage/ChatInformationPageContent.qml +++ b/qml/components/chatInformationPage/ChatInformationPageContent.qml @@ -98,13 +98,17 @@ SilicaFlickable { } } function updateGroupStatusText() { - if (chatOnlineMemberCount > 0) { - headerItem.description = qsTr("%1 members, %2 online").arg(Functions.getShortenedCount(chatInformationPage.groupInformation.member_count)).arg(Functions.getShortenedCount(chatInformationPage.chatOnlineMemberCount)); + if (chatInformationPage.chatOnlineMemberCount > 0) { + headerItem.description = qsTr("%1, %2", "combination of '[x members], [y online]', which are separate translations") + .arg(qsTr("%1 members", "", chatInformationPage.groupInformation.member_count) + .arg(Functions.getShortenedCount(chatInformationPage.groupInformation.member_count))) + .arg(qsTr("%1 online", "", chatInformationPage.chatOnlineMemberCount) + .arg(Functions.getShortenedCount(chatInformationPage.chatOnlineMemberCount))); } else { if (isChannel) { - headerItem.description = qsTr("%1 subscribers").arg(Functions.getShortenedCount(chatInformationPage.groupInformation.member_count)); + headerItem.description = qsTr("%1 subscribers", "", chatInformationPage.groupInformation.member_count ).arg(Functions.getShortenedCount(chatInformationPage.groupInformation.member_count)); } else { - headerItem.description = qsTr("%1 members").arg(Functions.getShortenedCount(chatInformationPage.groupInformation.member_count)); + headerItem.description = qsTr("%1 members", "", chatInformationPage.groupInformation.member_count).arg(Functions.getShortenedCount(chatInformationPage.groupInformation.member_count)); } } } diff --git a/qml/pages/ChatPage.qml b/qml/pages/ChatPage.qml index 42999ef..3fe7636 100644 --- a/qml/pages/ChatPage.qml +++ b/qml/pages/ChatPage.qml @@ -67,7 +67,7 @@ Page { } PropertyChanges { target: chatStatusText - text: qsTr("%n messages selected", "number of messages selected", chatPage.selectedMessages.length).arg(chatPage.selectedMessages.length) + text: qsTr("%Ln messages selected", "number of messages selected", chatPage.selectedMessages.length) } PropertyChanges { target: selectedMessagesActions @@ -102,6 +102,9 @@ Page { } function updateChatPartnerStatusText() { + if(chatPage.state === "selectMessages") { + return + } var statusText = Functions.getChatPartnerStatusText(chatPartnerInformation.status['@type'], chatPartnerInformation.status.was_online); if(statusText) { chatStatusText.text = statusText; @@ -113,12 +116,16 @@ Page { return } if (chatOnlineMemberCount > 0) { - chatStatusText.text = qsTr("%1 members, %2 online").arg(Functions.getShortenedCount(chatGroupInformation.member_count)).arg(Functions.getShortenedCount(chatOnlineMemberCount)); + chatStatusText.text = qsTr("%1, %2", "combination of '[x members], [y online]', which are separate translations") + .arg(qsTr("%1 members", "", chatGroupInformation.member_count) + .arg(Functions.getShortenedCount(chatGroupInformation.member_count))) + .arg(qsTr("%1 online", "", chatOnlineMemberCount) + .arg(Functions.getShortenedCount(chatOnlineMemberCount))); } else { if (isChannel) { - chatStatusText.text = qsTr("%1 subscribers").arg(Functions.getShortenedCount(chatGroupInformation.member_count)); + chatStatusText.text = qsTr("%1 subscribers", "", chatGroupInformation.member_count).arg(Functions.getShortenedCount(chatGroupInformation.member_count)); } else { - chatStatusText.text = qsTr("%1 members").arg(Functions.getShortenedCount(chatGroupInformation.member_count)); + chatStatusText.text = qsTr("%1 members", "", chatGroupInformation.member_count).arg(Functions.getShortenedCount(chatGroupInformation.member_count)); } } joinLeaveChatMenuItem.text = chatPage.userIsMember ? qsTr("Leave Chat") : qsTr("Join Chat"); @@ -1301,7 +1308,7 @@ Page { } onClicked: { Clipboard.text = Functions.getMessagesArrayText(chatPage.selectedMessages); - appNotification.show(qsTr("%n messages have been copied", "", selectedMessages.length).arg(selectedMessages.length)); + appNotification.show(qsTr("%Ln messages have been copied", "", selectedMessages.length)); chatPage.selectedMessages = []; } } @@ -1325,7 +1332,7 @@ Page { var chatId = chatInformation.id pageStack.push(Qt.resolvedUrl("../pages/ChatSelectionPage.qml"), { myUserId: chatPage.myUserId, - headerDescription: qsTr("Forward %n messages", "dialog header", ids.length).arg(ids.length), + headerDescription: qsTr("Forward %Ln messages", "dialog header", ids.length), payload: {fromChatId: chatId, messageIds:ids, neededPermissions: neededPermissions}, state: "forwardMessages" }) @@ -1349,7 +1356,7 @@ Page { var ids = Functions.getMessagesArrayIds(selectedMessages); var chatId = chatInformation.id var wrapper = tdLibWrapper; - Remorse.popupAction(chatPage, qsTr("%n Messages deleted", "", ids.length).arg(ids.length), function() { + Remorse.popupAction(chatPage, qsTr("%Ln Messages deleted", "", ids.length), function() { wrapper.deleteMessages(chatId, ids); }); chatPage.selectedMessages = []; diff --git a/qml/pages/PollCreationPage.qml b/qml/pages/PollCreationPage.qml index ec4467e..029ef34 100644 --- a/qml/pages/PollCreationPage.qml +++ b/qml/pages/PollCreationPage.qml @@ -193,7 +193,7 @@ Dialog { placeholderText: qsTr("Enter your question here") property int charactersLeft: 255 - text.length color: charactersLeft < 0 ? Theme.errorColor : Theme.highlightColor - label: qsTr("Question (%n1 characters left)", "", charactersLeft).arg(charactersLeft) + label: qsTr("Question (%Ln characters left)", "", charactersLeft) wrapMode: TextEdit.Wrap onFocusChanged: { validate(); @@ -253,7 +253,7 @@ Dialog { placeholderText: qsTr("Enter an answer here") property int charactersLeft: 100 - text.length color: charactersLeft < 0 ? Theme.errorColor : Theme.highlightColor - label: qsTr("Answer (%n1 characters left)", "", charactersLeft).arg(charactersLeft) + label: qsTr("Answer (%Ln characters left)", "", charactersLeft) property bool hasNextOption: index < pollCreationPage.options.count - 1 EnterKey.onClicked: { if(hasNextOption) { diff --git a/qml/pages/PollResultsPage.qml b/qml/pages/PollResultsPage.qml index e3bd0e0..c77231b 100644 --- a/qml/pages/PollResultsPage.qml +++ b/qml/pages/PollResultsPage.qml @@ -56,7 +56,7 @@ Page { PageHeader { id: pageHeader title: pollResultsPage.isQuiz ? qsTr("Quiz Results") : qsTr("Poll Results") - description: qsTr("%L1 vote(s) total", "number of total votes", pollData.total_voter_count).arg(pollData.total_voter_count) + description: qsTr("%Ln vote(s) total", "number of total votes", pollData.total_voter_count) leftMargin: headerPictureThumbnail.width + Theme.paddingLarge + Theme.horizontalPageMargin ProfileThumbnail { id: headerPictureThumbnail @@ -205,7 +205,7 @@ Page { Label { id: optionVoterCount font.pixelSize: Theme.fontSizeTiny - text: modelData.is_chosen ? qsTr("%L1 vote(s) including yours", "number of votes for option", modelData.voter_count).arg(modelData.voter_count) : qsTr("%L1 vote(s)", "number of votes for option", modelData.voter_count).arg(modelData.voter_count) + text: modelData.is_chosen ? qsTr("%Ln vote(s) including yours", "number of votes for option", modelData.voter_count) : qsTr("%Ln vote(s)", "number of votes for option", modelData.voter_count) anchors { left: parent.left right: parent.horizontalCenter @@ -216,7 +216,7 @@ Page { Label { id: optionVoterPercentage font.pixelSize: Theme.fontSizeTiny - text: qsTr("%L1\%", "% of votes for option").arg(modelData.vote_percentage) + text: qsTr("%Ln\%", "% of votes for option", modelData.vote_percentage) horizontalAlignment: Text.AlignRight anchors { right: parent.right diff --git a/src/notificationmanager.cpp b/src/notificationmanager.cpp index d80c939..e499636 100644 --- a/src/notificationmanager.cpp +++ b/src/notificationmanager.cpp @@ -371,7 +371,7 @@ void NotificationManager::publishNotification(const NotificationGroup *notificat } else { // Either we have more than one notification or we have no content to display LOG("Group" << notificationGroup->notificationGroupId << "has" << notificationGroup->totalCount << "notifications"); - notificationBody = tr("%1 unread messages").arg(notificationGroup->totalCount); + notificationBody = tr("%Ln unread messages", "", notificationGroup->totalCount); } nemoNotification->setBody(notificationBody); diff --git a/translations/harbour-fernschreiber-de.ts b/translations/harbour-fernschreiber-de.ts index df94a10..6aae9f2 100644 --- a/translations/harbour-fernschreiber-de.ts +++ b/translations/harbour-fernschreiber-de.ts @@ -97,73 +97,87 @@ ChatInformationPageContent - - %1 members, %2 online - %1 Mitglieder, %2 online - - + %1 subscribers - %1 Abonnenten + + %1 Abonnent + %1 Abonnenten + - + %1 members - %1 Mitglieder + + %1 Mitglied + %1 Mitglieder + Leave Chat - Chat verlassen + Chat verlassen Join Chat - Chat beitreten + Chat beitreten Leaving chat - Verlasse Chat + Verlasse Chat Unmute Chat - Stummschaltung des Chats aufheben + Stummschaltung des Chats aufheben Mute Chat - Chat stummschalten + Chat stummschalten Unknown - Unbekannt + Unbekannt Chat Title group title header - Chattitel + Chattitel Enter 1-128 characters - Geben Sie 1-128 Zeichen ein + Geben Sie 1-128 Zeichen ein There is no information text available, yet. - Es gibt noch keinen Informationstext. + Es gibt noch keinen Informationstext. Info group or user infotext header - Info + Info Phone Number user phone number header - Telefonnummer + Telefonnummer Invite Link header - Einladungslink + Einladungslink The Invite Link has been copied to the clipboard. - Der Einladungslink wurde in die Zwischenablage kopiert. + Der Einladungslink wurde in die Zwischenablage kopiert. + + + %1, %2 + combination of '[x members], [y online]', which are separate translations + %1, %2 + + + %1 online + + %1 online + %1 online + @@ -203,17 +217,17 @@ Groups Button: groups in common (short) - Gruppen + Gruppen Members Button: Group Members - Mitglieder + Mitglieder Settings Button: Chat Settings - Einstellungen + Einstellungen @@ -257,17 +271,19 @@ Your message Ihre Nachricht - - %1 members, %2 online - %1 Mitglieder, %2 online - - + %1 members - %1 Mitglieder + + %1 Mitglied + %1 Mitglieder + - + %1 subscribers - %1 Abonnenten + + %1 Abonnent + %1 Abonnenten + Loading messages... @@ -318,33 +334,45 @@ Nachrichtenauswahl - %n Messages deleted + %Ln Messages deleted - %n Nachrichten gelöscht + %Ln Nachrichten gelöscht - %n messages have been copied + %Ln messages have been copied - %n Nachrichten wurden kopiert + %Ln Nachrichten wurden kopiert - %n messages selected - number of messages selected - - %n Nachricht ausgewählt - %n Nachrichten ausgewählt - - - - Forward %n messages + Forward %Ln messages dialog header - %n Nachricht weiterleiten - %n Nachrichten weiterleiten + %Ln Nachricht weiterleiten + %Ln Nachrichten weiterleiten + + + + %Ln messages selected + number of messages selected + + %Ln Nachricht ausgewählt + %Ln Nachrichten ausgewählt + + + + %1, %2 + combination of '[x members], [y online]', which are separate translations + %1, %2 + + + %1 online + + %1 online + %1 online @@ -864,9 +892,12 @@ NotificationManager - - %1 unread messages - %1 ungelesene Nachrichten + + %Ln unread messages + + %Ln ungelesene Nachricht + %Ln ungelesene Nachrichten + @@ -964,10 +995,10 @@ Geben Sie Ihre Frage ein - Question (%n1 characters left) + Question (%Ln characters left) - Frage (%n1 Zeichen übrig) - Frage (%n1 Zeichen übrig) + Frage (%Ln Zeichen übrig) + Frage (%Ln Zeichen übrig) @@ -980,10 +1011,10 @@ Geben Sie eine Antwort ein - Answer (%n1 characters left) + Answer (%Ln characters left) - Antwort (%n1 Zeichen übrig) - Antwort (%n1 Zeichen übrig) + Antwort (%Ln Zeichen übrig) + Antwort (%Ln Zeichen übrig) @@ -1014,10 +1045,13 @@ PollPreview - - %L1% + + %Ln% % of votes for option - %L1% + + %Ln% + %Ln% + Final Result: @@ -1028,11 +1062,11 @@ Mehrfachauswahl ist erlaubt. - %L1 vote(s) total + %Ln vote(s) total number of total votes - %L1 Stimme insgesamt - %L1 Stimmen insgesamt + %Ln Stimme insgesamt + %Ln Stimmen insgesamt @@ -1055,11 +1089,11 @@ Umfrageergebnis - %L1 vote(s) total + %Ln vote(s) total number of total votes - %L1 Stimme insgesamt - %L1 Stimmen insgesamt + %Ln Stimme insgesamt + %Ln Stimmen insgesamt @@ -1073,17 +1107,20 @@ Ergebnis - %L1 vote(s) + %Ln vote(s) number of votes for option - %L1 Antwort - %L1 Antworten + %Ln Antwort + %Ln Antworten - - %L1% + + %Ln% % of votes for option - %L1% + + %Ln% + %Ln% + Chosen by: @@ -1091,11 +1128,11 @@ Gewählt von: - %L1 vote(s) including yours + %Ln vote(s) including yours number of votes for option - %L1 Antwort inklusive Ihrer - %L1 Antworten inklusive Ihrer + %Ln Antwort inklusive Ihrer + %Ln Antworten inklusive Ihrer diff --git a/translations/harbour-fernschreiber-en.ts b/translations/harbour-fernschreiber-en.ts index c8b04f9..c5d0035 100644 --- a/translations/harbour-fernschreiber-en.ts +++ b/translations/harbour-fernschreiber-en.ts @@ -97,73 +97,87 @@ ChatInformationPageContent - - %1 members, %2 online - %1 members, %2 online - - + %1 subscribers - %1 subscribers + + %1 subscriber + %1 subscribers + - + %1 members - %1 members + + %1 member + %1 members + Leave Chat - Leave Chat + Leave Chat Join Chat - Join Chat + Join Chat Leaving chat - Leaving chat + Leaving chat Unmute Chat - Unmute Chat + Unmute Chat Mute Chat - Mute Chat + Mute Chat Unknown - Unknown + Unknown Chat Title group title header - Chat Title + Chat Title Enter 1-128 characters - Enter 1-128 characters + Enter 1-128 characters There is no information text available, yet. - There is no information text available, yet. + There is no information text available, yet. Info group or user infotext header - Info + Info Phone Number user phone number header - Phone Number + Phone Number Invite Link header - Invite Link + Invite Link The Invite Link has been copied to the clipboard. - The Invite Link has been copied to the clipboard. + The Invite Link has been copied to the clipboard. + + + %1, %2 + combination of '[x members], [y online]', which are separate translations + %1, %2 + + + %1 online + + %1 online + %1 online + @@ -203,17 +217,17 @@ Groups Button: groups in common (short) - Groups + Groups Members Button: Group Members - Members + Members Settings Button: Chat Settings - Settings + Settings @@ -257,17 +271,19 @@ Your message Your message - - %1 members, %2 online - %1 members, %2 online - - + %1 members - %1 members + + %1 member + %1 members + - + %1 subscribers - %1 subscribers + + %1 subscriber + %1 subscribers + Loading messages... @@ -318,33 +334,45 @@ Select Messages - %n Messages deleted + %Ln Messages deleted - %n Message deleted - %n Messages deleted + %Ln Message deleted + %Ln Messages deleted - %n messages have been copied + %Ln messages have been copied - %n message has been copied - %n messages have been copied + %Ln message has been copied + %Ln messages have been copied - %n messages selected - number of messages selected - - %n message selected - %n messages selected - - - - Forward %n messages + Forward %Ln messages dialog header - Forward %n message - Forward %n messages + Forward %Ln message + Forward %Ln messages + + + + %Ln messages selected + number of messages selected + + %Ln message selected + %Ln messages selected + + + + %1, %2 + combination of '[x members], [y online]', which are separate translations + + + + %1 online + + %1 online + %1 online @@ -864,9 +892,12 @@ NotificationManager - - %1 unread messages - %1 unread messages + + %Ln unread messages + + %Ln unread message + %Ln unread messages + @@ -964,10 +995,10 @@ Enter your question here - Question (%n1 characters left) + Question (%Ln characters left) - Question (%n1 character left) - Question (%n1 characters left) + Question (%Ln character left) + Question (%Ln characters left) @@ -980,10 +1011,10 @@ Enter an answer here - Answer (%n1 characters left) + Answer (%Ln characters left) - Answer (%n1 character left) - Answer (%n1 characters left) + Answer (%Ln character left) + Answer (%Ln characters left) @@ -1014,10 +1045,13 @@ PollPreview - - %L1% + + %Ln% % of votes for option - %L1% + + %Ln% + %Ln% + Final Result: @@ -1028,11 +1062,11 @@ Multiple Answers are allowed. - %L1 vote(s) total + %Ln vote(s) total number of total votes - %L1 vote total - %L1 votes total + %Ln vote total + %Ln votes total @@ -1055,11 +1089,11 @@ Poll Results - %L1 vote(s) total + %Ln vote(s) total number of total votes - %L1 vote total - %L1 votes total + %Ln vote total + %Ln votes total @@ -1073,17 +1107,20 @@ Results - %L1 vote(s) + %Ln vote(s) number of votes for option - %L1 vote - %L1 votes + %Ln vote + %Ln votes - - %L1% + + %Ln% % of votes for option - %L1% + + %Ln% + %Ln% + Chosen by: @@ -1091,11 +1128,11 @@ Chosen by: - %L1 vote(s) including yours + %Ln vote(s) including yours number of votes for option - %L1 vote including yours - %L1 votes including yours + %Ln vote including yours + %Ln votes including yours diff --git a/translations/harbour-fernschreiber-es.ts b/translations/harbour-fernschreiber-es.ts index bf46684..1111384 100644 --- a/translations/harbour-fernschreiber-es.ts +++ b/translations/harbour-fernschreiber-es.ts @@ -97,17 +97,17 @@ ChatInformationPageContent - - %1 members, %2 online - %1 miembros, %2 en línea - - + %1 subscribers - %1 suscriptores + + %1 suscriptores + - + %1 members - %1 miembros + + %1 miembros + Leave Chat @@ -165,6 +165,17 @@ The Invite Link has been copied to the clipboard. El enlace de invitación se ha copiado en el portapapeles. + + %1, %2 + combination of '[x members], [y online]', which are separate translations + + + + %1 online + + + + ChatInformationTabItemMembersGroups @@ -257,17 +268,17 @@ Your message Abc - - %1 members, %2 online - %1 miembros, %2 en línea - - + %1 members - %1 miembros + + %1 miembros + - + %1 subscribers - %1 suscriptores + + %1 suscriptores + Loading messages... @@ -318,29 +329,40 @@ Seleccionar mensajes - %n Messages deleted + %Ln Messages deleted - %n Mensajes borrados + %Ln Mensajes borrados - %n messages have been copied + %Ln messages have been copied - %n se han copiado los mensajes + %Ln se han copiado los mensajes - %n messages selected - number of messages selected - - %n mensajes seleccionados - - - - Forward %n messages + Forward %Ln messages dialog header - Reenviar %n mensajes + Reenviar %Ln mensajes + + + + %Ln messages selected + number of messages selected + + + + + + %1, %2 + combination of '[x members], [y online]', which are separate translations + + + + %1 online + + @@ -860,9 +882,11 @@ NotificationManager - - %1 unread messages - %1 mensajes no leídos + + %Ln unread messages + + + @@ -960,9 +984,9 @@ Marcar su pregunta aquí - Question (%n1 characters left) + Question (%Ln characters left) - Pregunta (quedan %n1 caracteres) + Pregunta (quedan %Ln caracteres) @@ -975,9 +999,9 @@ Marcar una respuesta aquí - Answer (%n1 characters left) + Answer (%Ln characters left) - Respuesta (quedan %n1 caracteres) + Respuesta (quedan %Ln caracteres) @@ -1008,10 +1032,12 @@ PollPreview - - %L1% + + %Ln% % of votes for option - %L1% + + %Ln% + Final Result: @@ -1022,10 +1048,10 @@ Se permiten múltiples respuestas. - %L1 vote(s) total + %Ln vote(s) total number of total votes - %L1 votos totales + %Ln votos totales @@ -1048,10 +1074,10 @@ Resultados de encuesta - %L1 vote(s) total + %Ln vote(s) total number of total votes - %L1 total de votos + %Ln total de votos @@ -1065,16 +1091,18 @@ Resultados - %L1 vote(s) + %Ln vote(s) number of votes for option - %L1 votos + %Ln votos - - %L1% + + %Ln% % of votes for option - %L1% + + %Ln% + Chosen by: @@ -1082,10 +1110,10 @@ Elegido por: - %L1 vote(s) including yours + %Ln vote(s) including yours number of votes for option - %L1 votos incluyendo el suyo + %Ln votos incluyendo el suyo diff --git a/translations/harbour-fernschreiber-fi.ts b/translations/harbour-fernschreiber-fi.ts index 4aea0ae..7fb55f6 100644 --- a/translations/harbour-fernschreiber-fi.ts +++ b/translations/harbour-fernschreiber-fi.ts @@ -97,17 +97,19 @@ ChatInformationPageContent - - %1 members, %2 online - %1 jäsentä, %2 paikalla - - + %1 subscribers - %1 tilaajaa + + %1 tilaajaa + + - + %1 members - %1 jäsentä + + %1 jäsentä + + Leave Chat @@ -165,6 +167,18 @@ The Invite Link has been copied to the clipboard. Kutsulinkki on kopioitu leikepöydälle. + + %1, %2 + combination of '[x members], [y online]', which are separate translations + + + + %1 online + + + + + ChatInformationTabItemMembersGroups @@ -257,17 +271,19 @@ Your message Viestisi - - %1 members, %2 online - %1 jäsentä, %2 paikalla - - + %1 members - %1 jäsentä + + %1 jäsentä + + - + %1 subscribers - %1 tilaajaa + + %1 tilaajaa + + Loading messages... @@ -318,30 +334,42 @@ - %n Messages deleted + %Ln Messages deleted - %n messages have been copied + %Ln messages have been copied - %n messages selected + Forward %Ln messages + dialog header + + + + + + + %Ln messages selected number of messages selected + + %1, %2 + combination of '[x members], [y online]', which are separate translations + + - Forward %n messages - dialog header + %1 online @@ -865,9 +893,12 @@ NotificationManager - - %1 unread messages - %1 lukematonta viestiä + + %Ln unread messages + + + + @@ -965,10 +996,10 @@ Kirjoita kysymyksesi tähän - Question (%n1 characters left) + Question (%Ln characters left) - Kysymys (%n merkki jäljellä) - Kysymys (%n merkkiä jäljellä) + Kysymys (%Ln merkki jäljellä) + Kysymys (%Ln merkkiä jäljellä) @@ -981,10 +1012,10 @@ Kirjoita vastaus tähän - Answer (%n1 characters left) + Answer (%Ln characters left) - Vastaus (%n merkki jäljellä) - Vastaus (%n merkkiä jäljellä) + Vastaus (%Ln merkki jäljellä) + Vastaus (%Ln merkkiä jäljellä) @@ -1015,10 +1046,13 @@ PollPreview - - %L1% + + %Ln% % of votes for option - %L1% + + %Ln% + + Final Result: @@ -1029,11 +1063,11 @@ Useampi vastaus sallittu. - %L1 vote(s) total + %Ln vote(s) total number of total votes - yhteensä %L1 ääni - yhteensä %L1 ääntä + yhteensä %Ln ääni + yhteensä %Ln ääntä @@ -1056,11 +1090,11 @@ Kyselyn tulokset - %L1 vote(s) total + %Ln vote(s) total number of total votes - yhteensä %L1 ääni - yhteensä %L1 ääntä + yhteensä %Ln ääni + yhteensä %Ln ääntä @@ -1074,17 +1108,20 @@ Tulokset - %L1 vote(s) + %Ln vote(s) number of votes for option - %L1 ääni - %L1 ääntä + %Ln ääni + %Ln ääntä - - %L1% + + %Ln% % of votes for option - %L1% + + %Ln% + + Chosen by: @@ -1092,11 +1129,11 @@ Valinnut: - %L1 vote(s) including yours + %Ln vote(s) including yours number of votes for option - %L1 ääni (sinun) - %L1 ääntä (mukaan lukien sinun) + %Ln ääni (sinun) + %Ln ääntä (mukaan lukien sinun) diff --git a/translations/harbour-fernschreiber-hu.ts b/translations/harbour-fernschreiber-hu.ts index 82da38a..fce5b95 100644 --- a/translations/harbour-fernschreiber-hu.ts +++ b/translations/harbour-fernschreiber-hu.ts @@ -97,17 +97,17 @@ ChatInformationPageContent - - %1 members, %2 online - %1 tag, %2 online - - + %1 subscribers - %1 feliratkozott + + %1 feliratkozott + - + %1 members - %1 tag + + %1 tag + Leave Chat @@ -165,6 +165,17 @@ The Invite Link has been copied to the clipboard. + + %1, %2 + combination of '[x members], [y online]', which are separate translations + + + + %1 online + + + + ChatInformationTabItemMembersGroups @@ -257,17 +268,17 @@ Your message Üzeneted - - %1 members, %2 online - %1 tag, %2 online - - + %1 members - %1 tag + + %1 tag + - + %1 subscribers - %1 feliratkozott + + %1 feliratkozott + Loading messages... @@ -318,27 +329,38 @@ - %n Messages deleted + %Ln Messages deleted - %n messages have been copied + %Ln messages have been copied - %n messages selected + Forward %Ln messages + dialog header + + + + + + %Ln messages selected number of messages selected + + %1, %2 + combination of '[x members], [y online]', which are separate translations + + - Forward %n messages - dialog header + %1 online @@ -860,9 +882,11 @@ NotificationManager - - %1 unread messages - %1 olvasatlan üzenet + + %Ln unread messages + + + @@ -960,7 +984,7 @@ - Question (%n1 characters left) + Question (%Ln characters left) @@ -975,7 +999,7 @@ - Answer (%n1 characters left) + Answer (%Ln characters left) @@ -1008,10 +1032,12 @@ PollPreview - - %L1% + + %Ln% % of votes for option - + + + Final Result: @@ -1022,7 +1048,7 @@ - %L1 vote(s) total + %Ln vote(s) total number of total votes @@ -1048,7 +1074,7 @@ - %L1 vote(s) total + %Ln vote(s) total number of total votes @@ -1065,16 +1091,18 @@ - %L1 vote(s) + %Ln vote(s) number of votes for option - - %L1% + + %Ln% % of votes for option - + + + Chosen by: @@ -1082,7 +1110,7 @@ - %L1 vote(s) including yours + %Ln vote(s) including yours number of votes for option diff --git a/translations/harbour-fernschreiber-it.ts b/translations/harbour-fernschreiber-it.ts index 5b72241..c04d265 100644 --- a/translations/harbour-fernschreiber-it.ts +++ b/translations/harbour-fernschreiber-it.ts @@ -97,17 +97,19 @@ ChatInformationPageContent - - %1 members, %2 online - %1 membri, %2 online - - + %1 subscribers - %1 abbonati + + %1 abbonati + + - + %1 members - %1 membri + + %1 membri + + Leave Chat @@ -165,6 +167,18 @@ The Invite Link has been copied to the clipboard. Il link d'invito è stato copiato nella clipboard. + + %1, %2 + combination of '[x members], [y online]', which are separate translations + + + + %1 online + + + + + ChatInformationTabItemMembersGroups @@ -257,17 +271,19 @@ Your message Tuo messaggio - - %1 members, %2 online - %1 membri, %2 online - - + %1 members - %1 membri + + %1 membri + + - + %1 subscribers - %1 abbonati + + %1 abbonati + + Unmute Chat @@ -318,30 +334,42 @@ - %n Messages deleted + %Ln Messages deleted - %n messages have been copied + %Ln messages have been copied - %n messages selected + Forward %Ln messages + dialog header + + + + + + + %Ln messages selected number of messages selected + + %1, %2 + combination of '[x members], [y online]', which are separate translations + + - Forward %n messages - dialog header + %1 online @@ -864,9 +892,12 @@ NotificationManager - - %1 unread messages - %1 messaggi non letti + + %Ln unread messages + + + + @@ -964,10 +995,10 @@ Scrivi la tua domanda - Question (%n1 characters left) + Question (%Ln characters left) - Domanda (%n1 carattere rimanente) - Domanda (%n1 caratteri rimanenti) + Domanda (%Ln carattere rimanente) + Domanda (%Ln caratteri rimanenti) @@ -980,10 +1011,10 @@ Scrivi una risposta - Answer (%n1 characters left) + Answer (%Ln characters left) - Risposta (%n1 carattere rimanente) - Risposta (%n1 caratteri rimanenti) + Risposta (%Ln carattere rimanente) + Risposta (%Ln caratteri rimanenti) @@ -1014,10 +1045,13 @@ PollPreview - - %L1% + + %Ln% % of votes for option - %L1% + + %Ln% + + Final Result: @@ -1028,11 +1062,11 @@ Risposte multiple consentite. - %L1 vote(s) total + %Ln vote(s) total number of total votes - %L1 voto in totale - %L1 voti in totale + %Ln voto in totale + %Ln voti in totale @@ -1055,11 +1089,11 @@ Risultati sondaggio - %L1 vote(s) total + %Ln vote(s) total number of total votes - %L1 voto in totale - %L1 voti in totale + %Ln voto in totale + %Ln voti in totale @@ -1073,17 +1107,20 @@ Risultati - %L1 vote(s) + %Ln vote(s) number of votes for option - %L1 voto - %L1 voti + %Ln voto + %Ln voti - - %L1% + + %Ln% % of votes for option - %L1% + + %Ln% + + Chosen by: @@ -1091,11 +1128,11 @@ Scelta da: - %L1 vote(s) including yours + %Ln vote(s) including yours number of votes for option - %L1 voto incluso il tuo - %L1 voti incluso il tuo + %Ln voto incluso il tuo + %Ln voti incluso il tuo diff --git a/translations/harbour-fernschreiber-pl.ts b/translations/harbour-fernschreiber-pl.ts index 49e94a0..be15f75 100644 --- a/translations/harbour-fernschreiber-pl.ts +++ b/translations/harbour-fernschreiber-pl.ts @@ -113,17 +113,21 @@ The Invite Link has been copied to the clipboard. Link do zaproszenia został skopiowany do schowka. - - %1 members, %2 online - $1 członków, %2 online - - + %1 subscribers - %1 subskrybentów + + %1 subskrybentów + + + - + %1 members - %1 czlonków + + %1 czlonków + + + Leaving chat @@ -165,6 +169,19 @@ Join Chat Dołącz do czatu + + %1, %2 + combination of '[x members], [y online]', which are separate translations + + + + %1 online + + + + + + ChatInformationTabItemMembersGroups @@ -257,17 +274,21 @@ Your message Twoja wiadomość - - %1 members, %2 online - $1 członków, %2 online - - + %1 members - %1 czlonków + + %1 czlonków + + + - + %1 subscribers - %1 subskrybentów + + %1 subskrybentów + + + Loading messages... @@ -318,37 +339,50 @@ Wybierz wiadomości - %n Messages deleted + %Ln Messages deleted - %n wiadomość została usunięta - %n wiadomości zostały usunięte - %n wiadomości zostało usunięte + %Ln wiadomość została usunięta + %Ln wiadomości zostały usunięte + %Ln wiadomości zostało usunięte - %n messages have been copied + %Ln messages have been copied - %n wiadomość została skopiowana - %n wiadomości zostały skopiowane - %n wiadomość zostało skopiowane + %Ln wiadomość została skopiowana + %Ln wiadomości zostały skopiowane + %Ln wiadomość zostało skopiowane - %n messages selected - number of messages selected - - %n wiadomość została wybrana - %n wiadomości zostały wybrane - %n wiadomości zostało wybrane - - - - Forward %n messages + Forward %Ln messages dialog header - Przekaż %n wiadomość - Przekaż %n wiadomości - Przekaż %n wiadomości + Przekaż %Ln wiadomość + Przekaż %Ln wiadomości + Przekaż %Ln wiadomości + + + + %Ln messages selected + number of messages selected + + + + + + + + %1, %2 + combination of '[x members], [y online]', which are separate translations + + + + %1 online + + + + @@ -868,9 +902,13 @@ NotificationManager - - %1 unread messages - %1 nieprzeczytanych wiadomości + + %Ln unread messages + + + + + @@ -968,11 +1006,11 @@ Wprowadź tutaj swoje pytanie - Question (%n1 characters left) + Question (%Ln characters left) - Pytanie (pozostał %n1 znak) - Pytanie (pozostały %n1 znaki) - Pytanie (pozostało %n1 znaków) + Pytanie (pozostał %Ln znak) + Pytanie (pozostały %Ln znaki) + Pytanie (pozostało %Ln znaków) @@ -985,11 +1023,11 @@ Wprowadź tutaj swoją odpowiedź - Answer (%n1 characters left) + Answer (%Ln characters left) - Odpowiedź (pozostał %n1 znak) - Odpowiedź (pozostały %n1 znaki) - Odpowiedź (pozostało %n1 znaków) + Odpowiedź (pozostał %Ln znak) + Odpowiedź (pozostały %Ln znaki) + Odpowiedź (pozostało %Ln znaków) @@ -1020,10 +1058,14 @@ PollPreview - - %L1% + + %Ln% % of votes for option - %L1% + + %Ln% + + + Final Result: @@ -1034,12 +1076,12 @@ Dozwolonych jest wiele odpowiedzi. - %L1 vote(s) total + %Ln vote(s) total number of total votes - %L1 odpowiedź - %L1 odpowiedzi - %L1 odpowiedzi + %Ln odpowiedź + %Ln odpowiedzi + %Ln odpowiedzi @@ -1062,12 +1104,12 @@ Wyniki ankiety - %L1 vote(s) total + %Ln vote(s) total number of total votes - %L1 odpowiedź - %L1 odpowiedzi - %L1 odpowiedzi + %Ln odpowiedź + %Ln odpowiedzi + %Ln odpowiedzi @@ -1081,18 +1123,22 @@ Wyniki - %L1 vote(s) + %Ln vote(s) number of votes for option - %L1 glos - %L1 głosy - %L1 głosów + %Ln glos + %Ln głosy + %Ln głosów - - %L1% + + %Ln% % of votes for option - %L1% + + %Ln% + + + Chosen by: @@ -1100,12 +1146,12 @@ Wybrany przez: - %L1 vote(s) including yours + %Ln vote(s) including yours number of votes for option - %L1 głos, w tym twój - %L1 głosy, w tym twój - %L1 głosów, w tym twój + %Ln głos, w tym twój + %Ln głosy, w tym twój + %Ln głosów, w tym twój diff --git a/translations/harbour-fernschreiber-ru.ts b/translations/harbour-fernschreiber-ru.ts index 427270e..289d794 100644 --- a/translations/harbour-fernschreiber-ru.ts +++ b/translations/harbour-fernschreiber-ru.ts @@ -97,17 +97,21 @@ ChatInformationPageContent - - %1 members, %2 online - %1 участников, %2 онлайн - - + %1 subscribers - %1 подписчиков + + %1 подписчиков + + + - + %1 members - %1 участников + + %1 участников + + + Leave Chat @@ -165,6 +169,19 @@ The Invite Link has been copied to the clipboard. Ссылка для приглашения скопирована в буффер обмена + + %1, %2 + combination of '[x members], [y online]', which are separate translations + + + + %1 online + + + + + + ChatInformationTabItemMembersGroups @@ -257,17 +274,21 @@ Your message Ваше сообщение - - %1 members, %2 online - %1 участников, %2 онлайн - - + %1 members - %1 участников + + %1 участников + + + - + %1 subscribers - %1 подписчиков + + %1 подписчиков + + + Loading messages... @@ -318,7 +339,7 @@ - %n Messages deleted + %Ln Messages deleted @@ -326,7 +347,7 @@ - %n messages have been copied + %Ln messages have been copied @@ -334,7 +355,16 @@ - %n messages selected + Forward %Ln messages + dialog header + + + + + + + + %Ln messages selected number of messages selected @@ -342,9 +372,13 @@ + + %1, %2 + combination of '[x members], [y online]', which are separate translations + + - Forward %n messages - dialog header + %1 online @@ -868,9 +902,13 @@ NotificationManager - - %1 unread messages - %1 непрочитанных сообщений + + %Ln unread messages + + + + + @@ -968,7 +1006,7 @@ - Question (%n1 characters left) + Question (%Ln characters left) @@ -985,7 +1023,7 @@ - Answer (%n1 characters left) + Answer (%Ln characters left) @@ -1020,10 +1058,14 @@ PollPreview - - %L1% + + %Ln% % of votes for option - + + + + + Final Result: @@ -1034,7 +1076,7 @@ - %L1 vote(s) total + %Ln vote(s) total number of total votes @@ -1062,7 +1104,7 @@ - %L1 vote(s) total + %Ln vote(s) total number of total votes @@ -1081,7 +1123,7 @@ - %L1 vote(s) + %Ln vote(s) number of votes for option @@ -1089,10 +1131,14 @@ - - %L1% + + %Ln% % of votes for option - + + + + + Chosen by: @@ -1100,7 +1146,7 @@ - %L1 vote(s) including yours + %Ln vote(s) including yours number of votes for option diff --git a/translations/harbour-fernschreiber-sv.ts b/translations/harbour-fernschreiber-sv.ts index 2d1c91b..bc08b16 100644 --- a/translations/harbour-fernschreiber-sv.ts +++ b/translations/harbour-fernschreiber-sv.ts @@ -97,17 +97,19 @@ ChatInformationPageContent - - %1 members, %2 online - %1 medlem(mar), %2 inloggad(e) - - + %1 subscribers - %1 prenumerant(er) + + %1 prenumerant(er) + + - + %1 members - %1 medlem(mar) + + %1 medlem(mar) + + Leave Chat @@ -165,6 +167,18 @@ The Invite Link has been copied to the clipboard. Inbjudningslänken har kopierats till urklipp. + + %1, %2 + combination of '[x members], [y online]', which are separate translations + + + + %1 online + + + + + ChatInformationTabItemMembersGroups @@ -257,17 +271,19 @@ Your message Ditt meddelande - - %1 members, %2 online - %1 medlem(mar), %2 inloggad(e) - - + %1 members - %1 medlem(mar) + + %1 medlem(mar) + + - + %1 subscribers - %1 prenumerant(er) + + %1 prenumerant(er) + + Loading messages... @@ -318,33 +334,45 @@ Välj meddelanden - %n Messages deleted + %Ln Messages deleted - %n meddelande borttaget - %n meddelanden borttagna + %Ln meddelande borttaget + %Ln meddelanden borttagna - %n messages have been copied + %Ln messages have been copied - %n meddelande har kopierats - %n meddelanden har kopierats + %Ln meddelande har kopierats + %Ln meddelanden har kopierats - %n messages selected - number of messages selected - - %n meddelande valt - %n meddelanden valda - - - - Forward %n messages + Forward %Ln messages dialog header - Vidarebefordra %n meddelande - Vidarebefordra %n meddelanden + Vidarebefordra %Ln meddelande + Vidarebefordra %Ln meddelanden + + + + %Ln messages selected + number of messages selected + + + + + + + %1, %2 + combination of '[x members], [y online]', which are separate translations + + + + %1 online + + + @@ -864,9 +892,12 @@ NotificationManager - - %1 unread messages - %1 oläst(a) meddelande(n) + + %Ln unread messages + + + + @@ -964,10 +995,10 @@ Ange din fråga här - Question (%n1 characters left) + Question (%Ln characters left) - Fråga (%n1 tecken kvar) - Fråga (%n1 tecken kvar) + Fråga (%Ln tecken kvar) + Fråga (%Ln tecken kvar) @@ -980,10 +1011,10 @@ Ange svaret här - Answer (%n1 characters left) + Answer (%Ln characters left) - Svar (%n1 tecken kvar) - Svar (%n1 tecken kvar) + Svar (%Ln tecken kvar) + Svar (%Ln tecken kvar) @@ -1022,17 +1053,20 @@ Multiple Answers are allowed. Flera svarsalternativ tillåtna. - - %L1% + + %Ln% % of votes for option - %L1% + + %Ln% + + - %L1 vote(s) total + %Ln vote(s) total number of total votes - %L1 röst sammanlagt - %L1 röster sammanlagt + %Ln röst sammanlagt + %Ln röster sammanlagt @@ -1055,11 +1089,11 @@ Omröstningsresultat - %L1 vote(s) total + %Ln vote(s) total number of total votes - %L1 röst sammanlagt - %L1 röster sammanlagt + %Ln röst sammanlagt + %Ln röster sammanlagt @@ -1073,25 +1107,28 @@ Resultat - %L1 vote(s) including yours + %Ln vote(s) including yours number of votes for option - %L1 röst inklusive din - %L1 röster inklusive din + %Ln röst inklusive din + %Ln röster inklusive din - %L1 vote(s) + %Ln vote(s) number of votes for option - %L1 röst - %L1 röster + %Ln röst + %Ln röster - - %L1% + + %Ln% % of votes for option - %L1% + + %Ln% + + Chosen by: diff --git a/translations/harbour-fernschreiber-zh_CN.ts b/translations/harbour-fernschreiber-zh_CN.ts index 39899b4..73244f4 100644 --- a/translations/harbour-fernschreiber-zh_CN.ts +++ b/translations/harbour-fernschreiber-zh_CN.ts @@ -97,17 +97,17 @@ ChatInformationPageContent - - %1 members, %2 online - %1 位成员, %2 位在线 - - + %1 subscribers - %1 位订阅者 + + %1 位订阅者 + - + %1 members - %1 位成员 + + %1 位成员 + Leave Chat @@ -165,6 +165,17 @@ The Invite Link has been copied to the clipboard. 邀请链接已复制到剪切板 + + %1, %2 + combination of '[x members], [y online]', which are separate translations + + + + %1 online + + + + ChatInformationTabItemMembersGroups @@ -257,17 +268,17 @@ Your message 你的消息 - - %1 members, %2 online - %1 位成员, %2 位在线 - - + %1 members - %1 位成员 + + %1 位成员 + - + %1 subscribers - %1 位订阅者 + + %1 位订阅者 + Loading messages... @@ -318,29 +329,40 @@ 选择消息 - %n Messages deleted + %Ln Messages deleted - 已删除 %n 则消息 + 已删除 %Ln 则消息 - %n messages have been copied + %Ln messages have been copied - 已复制 %n 则消息 + 已复制 %Ln 则消息 - %n messages selected - number of messages selected - - 已选择 %n 则消息 - - - - Forward %n messages + Forward %Ln messages dialog header - 转发 %n 则消息 + 转发 %Ln 则消息 + + + + %Ln messages selected + number of messages selected + + + + + + %1, %2 + combination of '[x members], [y online]', which are separate translations + + + + %1 online + + @@ -860,9 +882,11 @@ NotificationManager - - %1 unread messages - %1 则未读消息 + + %Ln unread messages + + + @@ -960,9 +984,9 @@ 在此输入你的问题 - Question (%n1 characters left) + Question (%Ln characters left) - 问题(剩余 %n1 个字符) + 问题(剩余 %Ln 个字符) @@ -975,9 +999,9 @@ 在此输入回答 - Answer (%n1 characters left) + Answer (%Ln characters left) - 回答(剩余 %n1 个字符) + 回答(剩余 %Ln 个字符) @@ -1008,10 +1032,12 @@ PollPreview - - %L1% + + %Ln% % of votes for option - %L1% + + %Ln% + Final Result: @@ -1022,10 +1048,10 @@ 允许多个回答。 - %L1 vote(s) total + %Ln vote(s) total number of total votes - 总计 %L1 次回答 + 总计 %Ln 次回答 @@ -1048,10 +1074,10 @@ 投票结果 - %L1 vote(s) total + %Ln vote(s) total number of total votes - 总计 %L1 次投票 + 总计 %Ln 次投票 @@ -1065,16 +1091,18 @@ 结果 - %L1 vote(s) + %Ln vote(s) number of votes for option - %L1 次投票 + %Ln 次投票 - - %L1% + + %Ln% % of votes for option - %L1% + + %Ln% + Chosen by: @@ -1082,10 +1110,10 @@ 选择此项的人: - %L1 vote(s) including yours + %Ln vote(s) including yours number of votes for option - %L1 次投票,包括你 + %Ln 次投票,包括你 diff --git a/translations/harbour-fernschreiber.ts b/translations/harbour-fernschreiber.ts index 8414ccd..073eadb 100644 --- a/translations/harbour-fernschreiber.ts +++ b/translations/harbour-fernschreiber.ts @@ -1,169 +1,183 @@ - + AboutPage About Fernschreiber - + About Fernschreiber A Telegram client for Sailfish OS - + A Telegram client for Sailfish OS Send E-Mail - + Send E-Mail Licensed under GNU GPLv3 - + Licensed under GNU GPLv3 Sources on GitHub - + Sources on GitHub Terms of Service - + Terms of Service Privacy Policy - + Privacy Policy Credits - + Credits This project uses the Telegram Database Library (TDLib). Thanks for making it available under the conditions of the Boost Software License 1.0! - + This project uses the Telegram Database Library (TDLib). Thanks for making it available under the conditions of the Boost Software License 1.0! Open Telegram Database Library on GitHub - + Open Telegram Database Library on GitHub About Telegram - + About Telegram This product uses the Telegram API but is not endorsed or certified by Telegram. - + This product uses the Telegram API but is not endorsed or certified by Telegram. TDLib version %1 - + TDLib version %1 Logged in as %1 - + Logged in as %1 Phone number: +%1 - + Phone number: +%1 This project uses twemoji. Copyright 2018 Twitter, Inc. and other contributors. Thanks for making it available under the conditions of the MIT License (coding) and CC-BY 4.0 (graphics)! - + This project uses twemoji. Copyright 2018 Twitter, Inc. and other contributors. Thanks for making it available under the conditions of the MIT License (coding) and CC-BY 4.0 (graphics)! Open twemoji on GitHub - + Open twemoji on GitHub By Sebastian J. Wolf and <a href="https://github.com/Wunderfitz/harbour-fernschreiber#contributions">other contributors</a> - + By Sebastian J. Wolf and <a href="https://github.com/Wunderfitz/harbour-fernschreiber#contributions">other contributors</a> This project uses rlottie. Copyright 2020 Samsung Electronics Co., Ltd. and other contributors. Thanks for making it available under the conditions of the MIT License! - + This project uses rlottie. Copyright 2020 Samsung Electronics Co., Ltd. and other contributors. Thanks for making it available under the conditions of the MIT License! Open rlottie on GitHub - + Open rlottie on GitHub BackgroundProgressIndicator %1 % - + %1 % %1 - + %1 ChatInformationPageContent - - %1 members, %2 online - - - + %1 subscribers - + + %1 subscriber + %1 subscribers + - + %1 members - + + %1 member + %1 members + Leave Chat - + Leave Chat Join Chat - + Join Chat Leaving chat - + Leaving chat Unmute Chat - + Unmute Chat Mute Chat - + Mute Chat Unknown - + Unknown Chat Title group title header - + Chat Title Enter 1-128 characters - + Enter 1-128 characters There is no information text available, yet. - + There is no information text available, yet. Info group or user infotext header - + Info Phone Number user phone number header - + Phone Number Invite Link header - + Invite Link The Invite Link has been copied to the clipboard. - + The Invite Link has been copied to the clipboard. + + + %1, %2 + combination of '[x members], [y online]', which are separate translations + %1, %2 + + + %1 online + + %1 online + %1 online + @@ -171,31 +185,31 @@ Loading common chats… chats you have in common with a user - + Loading common chats… Unknown - + Unknown Loading group members… - + Loading group members… You - + You You don't have any groups in common with this user. - + You don't have any groups in common with this user. This group is empty. - + This group is empty. Channel members are anonymous. - + Channel members are anonymous. @@ -203,144 +217,162 @@ Groups Button: groups in common (short) - + Groups Members Button: Group Members - + Members Settings Button: Chat Settings - + Settings ChatListViewItem Unknown - + Unknown You - + You Unmute Chat - + Unmute Chat Mute Chat - + Mute Chat User Info - + User Info Group Info - + Group Info Mark all messages as read - + Mark all messages as read ChatPage Unknown - + Unknown Your message - + Your message - - %1 members, %2 online - - - + %1 members - + + %1 member + %1 members + - + %1 subscribers - + + %1 subscriber + %1 subscribers + Loading messages... - + Loading messages... Unmute Chat - + Unmute Chat Mute Chat - + Mute Chat Edit Message - + Edit Message edited - + edited Uploading... - + Uploading... This chat is empty. - + This chat is empty. Leave Chat - + Leave Chat Join Chat - + Join Chat Leaving chat - + Leaving chat You joined the chat %1 - + You joined the chat %1 Select Messages - + Select Messages - %n Messages deleted - - + %Ln Messages deleted + + %Ln Message deleted + %Ln Messages deleted - %n messages have been copied - - + %Ln messages have been copied + + %Ln message has been copied + %Ln messages have been copied - %n messages selected - number of messages selected - - - - - - Forward %n messages + Forward %Ln messages dialog header - - + + Forward %Ln message + Forward %Ln messages + + + + %Ln messages selected + number of messages selected + + %Ln message selected + %Ln messages selected + + + + %1, %2 + combination of '[x members], [y online]', which are separate translations + + + + %1 online + + %1 online + %1 online @@ -348,65 +380,65 @@ ChatSelectionPage Select Chat - + Select Chat You don't have any chats yet. - + You don't have any chats yet. CoverPage unread message - + unread message unread messages - + unread messages in - + in Waiting for network... - + Waiting for network... Connecting to network... - + Connecting to network... Connecting to proxy... - + Connecting to proxy... Connected - + Connected Updating content... - + Updating content... chat - + chat chats - + chats DocumentPreview Download Document - + Download Document Open Document - + Open Document @@ -414,67 +446,67 @@ Group Member Permissions what can normal group members do - + Group Member Permissions Send Messages member permission - + Send Messages Send Media Messages member permission - + Send Media Messages Send Other Messages member permission - + Send Other Messages Add Web Page Previews member permission - + Add Web Page Previews Change Chat Info member permission - + Change Chat Info Invite Users member permission - + Invite Users Pin Messages member permission - + Pin Messages New Members what can new group members do - + New Members New members can see older messages member permission - + New members can see older messages EditSuperGroupSlowModeColumn Slow Mode - + Slow Mode Off - + Off Set how long every chat member has to wait between Messages - + Set how long every chat member has to wait between Messages @@ -482,358 +514,358 @@ sent a picture myself - + sent a picture sent a picture - + sent a picture sent a video myself - + sent a video sent a video - + sent a video sent an animation myself - + sent an animation sent an animation - + sent an animation sent a voice note - + sent a voice note sent a document myself - + sent a document sent a document - + sent a document sent a location myself - + sent a location sent a location - + sent a location have registered with Telegram myself - + have registered with Telegram has registered with Telegram - + has registered with Telegram joined this chat myself - + joined this chat joined this chat - + joined this chat were added to this chat myself - + were added to this chat was added to this chat - + was added to this chat left this chat myself - + left this chat left this chat - + left this chat Sticker: %1 - + Sticker: %1 sent a voice note myself - + sent a voice note sent a venue myself - + sent a venue sent a venue - + sent a venue changed the chat title myself - + changed the chat title changed the chat title - + changed the chat title sent a poll myself - + sent a poll sent a poll - + sent a poll sent a quiz myself - + sent a quiz sent a quiz - + sent a quiz created this group myself - + created this group created this group - + created this group changed the chat photo myself - + changed the chat photo changed the chat photo - + changed the chat photo deleted the chat photo myself - + deleted the chat photo deleted the chat photo - + deleted the chat photo changed the secret chat TTL setting myself - + changed the secret chat TTL setting changed the secret chat TTL setting - + changed the secret chat TTL setting upgraded this group to a supergroup myself - + upgraded this group to a supergroup changed the pinned message myself - + changed the pinned message changed the pinned message - + changed the pinned message created a screenshot in this chat myself - + created a screenshot in this chat created a screenshot in this chat - + created a screenshot in this chat sent an unsupported message myself - + sent an unsupported message sent an unsupported message - + sent an unsupported message sent an unsupported message: %1 - + sent an unsupported message: %1 upgraded this group to a supergroup - + upgraded this group to a supergroup sent a self-destructing photo that is expired myself - + sent a self-destructing photo that is expired sent a self-destructing video that is expired myself - + sent a self-destructing video that is expired sent a self-destructing video that is expired - + sent a self-destructing video that is expired sent an unsupported message: %1 myself - + sent an unsupported message: %1 sent a self-destructing photo that is expired - + sent a self-destructing photo that is expired ImagePage Download Picture - + Download Picture Download of %1 successful. - + Download of %1 successful. Download failed. - + Download failed. InReplyToRow You - + You InitializationPage OK - + OK Welcome to Fernschreiber! - + Welcome to Fernschreiber! Please enter your phone number to continue. - + Please enter your phone number to continue. Continue - + Continue Please enter the code that you received: - + Please enter the code that you received: Loading... - + Loading... Unable to authenticate you with the entered code. - + Unable to authenticate you with the entered code. Enter code again - + Enter code again Restart authentication - + Restart authentication Please enter your password: - + Please enter your password: User Registration - + User Registration Enter your First Name - + Enter your First Name Enter your Last Name - + Enter your Last Name Register User - + Register User Use the international format, e.g. %1 - + Use the international format, e.g. %1 LocationPreview Install Pure Maps to inspect this location. - + Install Pure Maps to inspect this location. MessageListViewItem Reply to Message - + Reply to Message Edit Message - + Edit Message Copy Message to Clipboard - + Copy Message to Clipboard Message deleted - + Message deleted Delete Message - + Delete Message You - + You Forwarded Message - + Forwarded Message Select Message - + Select Message Pin Message @@ -844,7 +876,7 @@ MessageListViewItemSimple You - + You @@ -860,52 +892,55 @@ NotificationManager - - %1 unread messages - + + %Ln unread messages + + %Ln unread message + %Ln unread messages + OverviewPage About Fernschreiber - + About Fernschreiber Fernschreiber - + Fernschreiber Waiting for network... - + Waiting for network... Connecting to network... - + Connecting to network... Connecting to proxy... - + Connecting to proxy... Updating content... - + Updating content... Unknown - + Unknown Loading chat list... - + Loading chat list... Settings - + Settings You don't have any chats yet. - + You don't have any chats yet. @@ -927,165 +962,177 @@ PollCreationPage All answers have to contain 1-100 characters. - + All answers have to contain 1-100 characters. To send a quiz, you have to specify the right answer. - + To send a quiz, you have to specify the right answer. You have to enter a question. - + You have to enter a question. The question has to be shorter than 256 characters. - + The question has to be shorter than 256 characters. A poll requires 2-10 answers. - + A poll requires 2-10 answers. Create a Poll Dialog Header - + Create a Poll in %1 After dialog header… Create a Poll in [group name] - + in %1 Enter your question here - + Enter your question here - Question (%n1 characters left) - - + Question (%Ln characters left) + + Question (%Ln character left) + Question (%Ln characters left) Answers Section header - + Answers Enter an answer here - + Enter an answer here - Answer (%n1 characters left) - - + Answer (%Ln characters left) + + Answer (%Ln character left) + Answer (%Ln characters left) Add an answer - + Add an answer Poll Options Section header - + Poll Options Anonymous answers - + Anonymous answers Multiple answers allowed - + Multiple answers allowed Quiz Mode - + Quiz Mode Quizzes have one correct answer. Participants can't revoke their responses. - + Quizzes have one correct answer. Participants can't revoke their responses. PollPreview - - %L1% + + %Ln% % of votes for option - + + %Ln% + %Ln% + Final Result: - + Final Result: Multiple Answers are allowed. - + Multiple Answers are allowed. - %L1 vote(s) total + %Ln vote(s) total number of total votes - - + + %Ln vote total + %Ln votes total Close Poll - + Close Poll Reset Answer - + Reset Answer PollResultsPage Quiz Results - + Quiz Results Poll Results - + Poll Results - %L1 vote(s) total + %Ln vote(s) total number of total votes - - + + %Ln vote total + %Ln votes total Question section header - + Question Results section header - + Results - %L1 vote(s) + %Ln vote(s) number of votes for option - - + + %Ln vote + %Ln votes - - %L1% + + %Ln% % of votes for option - + + %Ln% + %Ln% + Chosen by: This answer has been chosen by the following users - + Chosen by: - %L1 vote(s) including yours + %Ln vote(s) including yours number of votes for option - - + + %Ln vote including yours + %Ln votes including yours @@ -1093,465 +1140,465 @@ SettingsPage Settings - + Settings Behavior - + Behavior Send message by enter - + Send message by enter Send your message by pressing the enter key - + Send your message by pressing the enter key Appearance - + Appearance Show stickers as images - + Show stickers as images Show background for stickers and align them centrally like images - + Show background for stickers and align them centrally like images Notification feedback - + Notification feedback All events - + All events Only new events - + Only new events None - + None Use non-graphical feedback (sound, vibration) for notifications - + Use non-graphical feedback (sound, vibration) for notifications Open-with menu integration - + Open-with menu integration Integrate Fernschreiber into open-with menu of Sailfish OS - + Integrate Fernschreiber into open-with menu of Sailfish OS Animate stickers - + Animate stickers StickerPicker Recently used - + Recently used Loading stickers... - + Loading stickers... VideoPage Download Video - + Download Video Download of %1 successful. - + Download of %1 successful. Download failed. - + Download failed. WebPagePreview Preview not supported for this link... - + Preview not supported for this link... functions Video: %1 - + Video: %1 has registered with Telegram - + has registered with Telegram Picture: %1 - + Picture: %1 Sticker: %1 - + Sticker: %1 Audio: %1 - + Audio: %1 Voice Note: %1 - + Voice Note: %1 Animation: %1 - + Animation: %1 Document: %1 - + Document: %1 sent a picture - + sent a picture sent a video - + sent a video sent an animation - + sent an animation sent an audio - + sent an audio sent a voice note - + sent a voice note sent a document - + sent a document sent a location - + sent a location joined this chat - + joined this chat was added to this chat - + was added to this chat left this chat - + left this chat %1M - + %1M %1K - + %1K sent a venue - + sent a venue sent a picture myself - + sent a picture sent a video myself - + sent a video sent an animation myself - + sent an animation sent an audio myself - + sent an audio sent a voice note myself - + sent a voice note sent a document myself - + sent a document sent a location myself - + sent a location sent a venue myself - + sent a venue have registered with Telegram - + have registered with Telegram joined this chat myself - + joined this chat were added to this chat myself - + were added to this chat left this chat myself - + left this chat was never online - + was never online offline, last online: last month - + offline, last online: last month offline, last online: last week - + offline, last online: last week offline, last online: %1 - + offline, last online: %1 online - + online offline, was recently online - + offline, was recently online Admin channel user role - + Admin Banned channel user role - + Banned Creator channel user role - + Creator Restricted channel user role - + Restricted changed the chat title to %1 myself - + changed the chat title to %1 changed the chat title to %1 - + changed the chat title to %1 sent a poll myself - + sent a poll sent a poll - + sent a poll sent an anonymous quiz myself - + sent an anonymous quiz sent an anonymous quiz - + sent an anonymous quiz sent a quiz myself - + sent a quiz sent a quiz - + sent a quiz sent an anonymous poll myself - + sent an anonymous poll sent an anonymous poll - + sent an anonymous poll Anonymous Quiz - + Anonymous Quiz Quiz - + Quiz Anonymous Poll - + Anonymous Poll Poll - + Poll created this group myself - + created this group created this group - + created this group changed the chat photo myself - + changed the chat photo changed the chat photo - + changed the chat photo deleted the chat photo myself - + deleted the chat photo deleted the chat photo - + deleted the chat photo changed the secret chat TTL setting myself; TTL = Time To Live - + changed the secret chat TTL setting changed the secret chat TTL setting TTL = Time To Live - + changed the secret chat TTL setting upgraded this group to a supergroup myself - + upgraded this group to a supergroup changed the pinned message myself - + changed the pinned message changed the pinned message - + changed the pinned message created a screenshot in this chat myself - + created a screenshot in this chat created a screenshot in this chat - + created a screenshot in this chat sent an unsupported message myself - + sent an unsupported message sent an unsupported message - + sent an unsupported message sent an unsupported message: %1 myself; %1 is message type - + sent an unsupported message: %1 sent an unsupported message: %1 %1 is message type - + sent an unsupported message: %1 upgraded this group to a supergroup - + upgraded this group to a supergroup sent a self-destructing photo that is expired myself - + sent a self-destructing photo that is expired sent a self-destructing photo that is expired - + sent a self-destructing photo that is expired sent a self-destructing video that is expired myself - + sent a self-destructing video that is expired sent a self-destructing video that is expired - + sent a self-destructing video that is expired Unable to find user %1 - + Unable to find user %1 sent a video note myself - + sent a video note sent a video note - + sent a video note You are already a member of this chat. - + You are already a member of this chat.