[%n1|%L1] → %Ln
This commit is contained in:
parent
204966e265
commit
cf1c25f156
14 changed files with 197 additions and 197 deletions
|
@ -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").arg(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).arg(pollData.total_voter_count)
|
||||
width: contentWidth
|
||||
height: contentHeight
|
||||
horizontalAlignment: Text.AlignRight
|
||||
|
|
|
@ -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).arg(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).arg(charactersLeft)
|
||||
property bool hasNextOption: index < pollCreationPage.options.count - 1
|
||||
EnterKey.onClicked: {
|
||||
if(hasNextOption) {
|
||||
|
|
|
@ -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).arg(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).arg(modelData.voter_count) : qsTr("%Ln vote(s)", "number of votes for option", modelData.voter_count).arg(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").arg(modelData.vote_percentage)
|
||||
horizontalAlignment: Text.AlignRight
|
||||
anchors {
|
||||
right: parent.right
|
||||
|
|
|
@ -964,10 +964,10 @@
|
|||
<translation>Geben Sie Ihre Frage ein</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<source>Question (%n1 characters left)</source>
|
||||
<source>Question (%Ln characters left)</source>
|
||||
<translation>
|
||||
<numerusform>Frage (%n1 Zeichen übrig)</numerusform>
|
||||
<numerusform>Frage (%n1 Zeichen übrig)</numerusform>
|
||||
<numerusform>Frage (%Ln Zeichen übrig)</numerusform>
|
||||
<numerusform>Frage (%Ln Zeichen übrig)</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -980,10 +980,10 @@
|
|||
<translation>Geben Sie eine Antwort ein</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<source>Answer (%n1 characters left)</source>
|
||||
<source>Answer (%Ln characters left)</source>
|
||||
<translation>
|
||||
<numerusform>Antwort (%n1 Zeichen übrig)</numerusform>
|
||||
<numerusform>Antwort (%n1 Zeichen übrig)</numerusform>
|
||||
<numerusform>Antwort (%Ln Zeichen übrig)</numerusform>
|
||||
<numerusform>Antwort (%Ln Zeichen übrig)</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -1015,9 +1015,9 @@
|
|||
<context>
|
||||
<name>PollPreview</name>
|
||||
<message>
|
||||
<source>%L1%</source>
|
||||
<source>%Ln%</source>
|
||||
<comment>% of votes for option</comment>
|
||||
<translation>%L1%</translation>
|
||||
<translation>%Ln%</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Final Result:</source>
|
||||
|
@ -1028,11 +1028,11 @@
|
|||
<translation>Mehrfachauswahl ist erlaubt.</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<source>%L1 vote(s) total</source>
|
||||
<source>%Ln vote(s) total</source>
|
||||
<comment>number of total votes</comment>
|
||||
<translation>
|
||||
<numerusform>%L1 Stimme insgesamt</numerusform>
|
||||
<numerusform>%L1 Stimmen insgesamt</numerusform>
|
||||
<numerusform>%Ln Stimme insgesamt</numerusform>
|
||||
<numerusform>%Ln Stimmen insgesamt</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -1055,11 +1055,11 @@
|
|||
<translation>Umfrageergebnis</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<source>%L1 vote(s) total</source>
|
||||
<source>%Ln vote(s) total</source>
|
||||
<comment>number of total votes</comment>
|
||||
<translation>
|
||||
<numerusform>%L1 Stimme insgesamt</numerusform>
|
||||
<numerusform>%L1 Stimmen insgesamt</numerusform>
|
||||
<numerusform>%Ln Stimme insgesamt</numerusform>
|
||||
<numerusform>%Ln Stimmen insgesamt</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -1073,17 +1073,17 @@
|
|||
<translation>Ergebnis</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<source>%L1 vote(s)</source>
|
||||
<source>%Ln vote(s)</source>
|
||||
<comment>number of votes for option</comment>
|
||||
<translation>
|
||||
<numerusform>%L1 Antwort</numerusform>
|
||||
<numerusform>%L1 Antworten</numerusform>
|
||||
<numerusform>%Ln Antwort</numerusform>
|
||||
<numerusform>%Ln Antworten</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>%L1%</source>
|
||||
<source>%Ln%</source>
|
||||
<comment>% of votes for option</comment>
|
||||
<translation>%L1%</translation>
|
||||
<translation>%Ln%</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Chosen by:</source>
|
||||
|
@ -1091,11 +1091,11 @@
|
|||
<translation>Gewählt von:</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<source>%L1 vote(s) including yours</source>
|
||||
<source>%Ln vote(s) including yours</source>
|
||||
<comment>number of votes for option</comment>
|
||||
<translation>
|
||||
<numerusform>%L1 Antwort inklusive Ihrer</numerusform>
|
||||
<numerusform>%L1 Antworten inklusive Ihrer</numerusform>
|
||||
<numerusform>%Ln Antwort inklusive Ihrer</numerusform>
|
||||
<numerusform>%Ln Antworten inklusive Ihrer</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
</context>
|
||||
|
|
|
@ -964,10 +964,10 @@
|
|||
<translation>Enter your question here</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<source>Question (%n1 characters left)</source>
|
||||
<source>Question (%Ln characters left)</source>
|
||||
<translation>
|
||||
<numerusform>Question (%n1 character left)</numerusform>
|
||||
<numerusform>Question (%n1 characters left)</numerusform>
|
||||
<numerusform>Question (%Ln character left)</numerusform>
|
||||
<numerusform>Question (%Ln characters left)</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -980,10 +980,10 @@
|
|||
<translation>Enter an answer here</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<source>Answer (%n1 characters left)</source>
|
||||
<source>Answer (%Ln characters left)</source>
|
||||
<translation>
|
||||
<numerusform>Answer (%n1 character left)</numerusform>
|
||||
<numerusform>Answer (%n1 characters left)</numerusform>
|
||||
<numerusform>Answer (%Ln character left)</numerusform>
|
||||
<numerusform>Answer (%Ln characters left)</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -1015,9 +1015,9 @@
|
|||
<context>
|
||||
<name>PollPreview</name>
|
||||
<message>
|
||||
<source>%L1%</source>
|
||||
<source>%Ln%</source>
|
||||
<comment>% of votes for option</comment>
|
||||
<translation>%L1%</translation>
|
||||
<translation>%Ln%</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Final Result:</source>
|
||||
|
@ -1028,11 +1028,11 @@
|
|||
<translation>Multiple Answers are allowed.</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<source>%L1 vote(s) total</source>
|
||||
<source>%Ln vote(s) total</source>
|
||||
<comment>number of total votes</comment>
|
||||
<translation>
|
||||
<numerusform>%L1 vote total</numerusform>
|
||||
<numerusform>%L1 votes total</numerusform>
|
||||
<numerusform>%Ln vote total</numerusform>
|
||||
<numerusform>%Ln votes total</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -1055,11 +1055,11 @@
|
|||
<translation>Poll Results</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<source>%L1 vote(s) total</source>
|
||||
<source>%Ln vote(s) total</source>
|
||||
<comment>number of total votes</comment>
|
||||
<translation>
|
||||
<numerusform>%L1 vote total</numerusform>
|
||||
<numerusform>%L1 votes total</numerusform>
|
||||
<numerusform>%Ln vote total</numerusform>
|
||||
<numerusform>%Ln votes total</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -1073,17 +1073,17 @@
|
|||
<translation>Results</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<source>%L1 vote(s)</source>
|
||||
<source>%Ln vote(s)</source>
|
||||
<comment>number of votes for option</comment>
|
||||
<translation>
|
||||
<numerusform>%L1 vote</numerusform>
|
||||
<numerusform>%L1 votes</numerusform>
|
||||
<numerusform>%Ln vote</numerusform>
|
||||
<numerusform>%Ln votes</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>%L1%</source>
|
||||
<source>%Ln%</source>
|
||||
<comment>% of votes for option</comment>
|
||||
<translation>%L1%</translation>
|
||||
<translation>%Ln%</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Chosen by:</source>
|
||||
|
@ -1091,11 +1091,11 @@
|
|||
<translation>Chosen by:</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<source>%L1 vote(s) including yours</source>
|
||||
<source>%Ln vote(s) including yours</source>
|
||||
<comment>number of votes for option</comment>
|
||||
<translation>
|
||||
<numerusform>%L1 vote including yours</numerusform>
|
||||
<numerusform>%L1 votes including yours</numerusform>
|
||||
<numerusform>%Ln vote including yours</numerusform>
|
||||
<numerusform>%Ln votes including yours</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
</context>
|
||||
|
|
|
@ -960,9 +960,9 @@
|
|||
<translation>Marcar su pregunta aquí</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<source>Question (%n1 characters left)</source>
|
||||
<source>Question (%Ln characters left)</source>
|
||||
<translation>
|
||||
<numerusform>Pregunta (quedan %n1 caracteres)</numerusform>
|
||||
<numerusform>Pregunta (quedan %Ln caracteres)</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -975,9 +975,9 @@
|
|||
<translation>Marcar una respuesta aquí</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<source>Answer (%n1 characters left)</source>
|
||||
<source>Answer (%Ln characters left)</source>
|
||||
<translation>
|
||||
<numerusform>Respuesta (quedan %n1 caracteres)</numerusform>
|
||||
<numerusform>Respuesta (quedan %Ln caracteres)</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -1009,9 +1009,9 @@
|
|||
<context>
|
||||
<name>PollPreview</name>
|
||||
<message>
|
||||
<source>%L1%</source>
|
||||
<source>%Ln%</source>
|
||||
<comment>% of votes for option</comment>
|
||||
<translation>%L1%</translation>
|
||||
<translation>%Ln%</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Final Result:</source>
|
||||
|
@ -1022,10 +1022,10 @@
|
|||
<translation>Se permiten múltiples respuestas.</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<source>%L1 vote(s) total</source>
|
||||
<source>%Ln vote(s) total</source>
|
||||
<comment>number of total votes</comment>
|
||||
<translation>
|
||||
<numerusform>%L1 votos totales</numerusform>
|
||||
<numerusform>%Ln votos totales</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -1048,10 +1048,10 @@
|
|||
<translation>Resultados de encuesta</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<source>%L1 vote(s) total</source>
|
||||
<source>%Ln vote(s) total</source>
|
||||
<comment>number of total votes</comment>
|
||||
<translation>
|
||||
<numerusform>%L1 total de votos</numerusform>
|
||||
<numerusform>%Ln total de votos</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -1065,16 +1065,16 @@
|
|||
<translation>Resultados</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<source>%L1 vote(s)</source>
|
||||
<source>%Ln vote(s)</source>
|
||||
<comment>number of votes for option</comment>
|
||||
<translation>
|
||||
<numerusform>%L1 votos</numerusform>
|
||||
<numerusform>%Ln votos</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>%L1%</source>
|
||||
<source>%Ln%</source>
|
||||
<comment>% of votes for option</comment>
|
||||
<translation>%L1%</translation>
|
||||
<translation>%Ln%</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Chosen by:</source>
|
||||
|
@ -1082,10 +1082,10 @@
|
|||
<translation>Elegido por:</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<source>%L1 vote(s) including yours</source>
|
||||
<source>%Ln vote(s) including yours</source>
|
||||
<comment>number of votes for option</comment>
|
||||
<translation>
|
||||
<numerusform>%L1 votos incluyendo el suyo</numerusform>
|
||||
<numerusform>%Ln votos incluyendo el suyo</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
</context>
|
||||
|
|
|
@ -965,7 +965,7 @@
|
|||
<translation>Kirjoita kysymyksesi tähän</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<source>Question (%n1 characters left)</source>
|
||||
<source>Question (%Ln characters left)</source>
|
||||
<translation>
|
||||
<numerusform>Kysymys (%n merkki jäljellä)</numerusform>
|
||||
<numerusform>Kysymys (%n merkkiä jäljellä)</numerusform>
|
||||
|
@ -981,7 +981,7 @@
|
|||
<translation>Kirjoita vastaus tähän</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<source>Answer (%n1 characters left)</source>
|
||||
<source>Answer (%Ln characters left)</source>
|
||||
<translation>
|
||||
<numerusform>Vastaus (%n merkki jäljellä)</numerusform>
|
||||
<numerusform>Vastaus (%n merkkiä jäljellä)</numerusform>
|
||||
|
@ -1016,9 +1016,9 @@
|
|||
<context>
|
||||
<name>PollPreview</name>
|
||||
<message>
|
||||
<source>%L1%</source>
|
||||
<source>%Ln%</source>
|
||||
<comment>% of votes for option</comment>
|
||||
<translation>%L1%</translation>
|
||||
<translation>%Ln%</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Final Result:</source>
|
||||
|
@ -1029,11 +1029,11 @@
|
|||
<translation>Useampi vastaus sallittu.</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<source>%L1 vote(s) total</source>
|
||||
<source>%Ln vote(s) total</source>
|
||||
<comment>number of total votes</comment>
|
||||
<translation>
|
||||
<numerusform>yhteensä %L1 ääni</numerusform>
|
||||
<numerusform>yhteensä %L1 ääntä</numerusform>
|
||||
<numerusform>yhteensä %Ln ääni</numerusform>
|
||||
<numerusform>yhteensä %Ln ääntä</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -1056,11 +1056,11 @@
|
|||
<translation>Kyselyn tulokset</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<source>%L1 vote(s) total</source>
|
||||
<source>%Ln vote(s) total</source>
|
||||
<comment>number of total votes</comment>
|
||||
<translation>
|
||||
<numerusform>yhteensä %L1 ääni </numerusform>
|
||||
<numerusform>yhteensä %L1 ääntä</numerusform>
|
||||
<numerusform>yhteensä %Ln ääni </numerusform>
|
||||
<numerusform>yhteensä %Ln ääntä</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -1074,17 +1074,17 @@
|
|||
<translation>Tulokset</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<source>%L1 vote(s)</source>
|
||||
<source>%Ln vote(s)</source>
|
||||
<comment>number of votes for option</comment>
|
||||
<translation>
|
||||
<numerusform>%L1 ääni</numerusform>
|
||||
<numerusform>%L1 ääntä</numerusform>
|
||||
<numerusform>%Ln ääni</numerusform>
|
||||
<numerusform>%Ln ääntä</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>%L1%</source>
|
||||
<source>%Ln%</source>
|
||||
<comment>% of votes for option</comment>
|
||||
<translation>%L1%</translation>
|
||||
<translation>%Ln%</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Chosen by:</source>
|
||||
|
@ -1092,11 +1092,11 @@
|
|||
<translation>Valinnut:</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<source>%L1 vote(s) including yours</source>
|
||||
<source>%Ln vote(s) including yours</source>
|
||||
<comment>number of votes for option</comment>
|
||||
<translation>
|
||||
<numerusform>%L1 ääni (sinun)</numerusform>
|
||||
<numerusform>%L1 ääntä (mukaan lukien sinun)</numerusform>
|
||||
<numerusform>%Ln ääni (sinun)</numerusform>
|
||||
<numerusform>%Ln ääntä (mukaan lukien sinun)</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
</context>
|
||||
|
|
|
@ -960,7 +960,7 @@
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<source>Question (%n1 characters left)</source>
|
||||
<source>Question (%Ln characters left)</source>
|
||||
<translation type="unfinished">
|
||||
<numerusform></numerusform>
|
||||
</translation>
|
||||
|
@ -975,7 +975,7 @@
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<source>Answer (%n1 characters left)</source>
|
||||
<source>Answer (%Ln characters left)</source>
|
||||
<translation type="unfinished">
|
||||
<numerusform></numerusform>
|
||||
</translation>
|
||||
|
@ -1009,7 +1009,7 @@
|
|||
<context>
|
||||
<name>PollPreview</name>
|
||||
<message>
|
||||
<source>%L1%</source>
|
||||
<source>%Ln%</source>
|
||||
<comment>% of votes for option</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -1022,7 +1022,7 @@
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<source>%L1 vote(s) total</source>
|
||||
<source>%Ln vote(s) total</source>
|
||||
<comment>number of total votes</comment>
|
||||
<translation type="unfinished">
|
||||
<numerusform></numerusform>
|
||||
|
@ -1048,7 +1048,7 @@
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<source>%L1 vote(s) total</source>
|
||||
<source>%Ln vote(s) total</source>
|
||||
<comment>number of total votes</comment>
|
||||
<translation type="unfinished">
|
||||
<numerusform></numerusform>
|
||||
|
@ -1065,14 +1065,14 @@
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<source>%L1 vote(s)</source>
|
||||
<source>%Ln vote(s)</source>
|
||||
<comment>number of votes for option</comment>
|
||||
<translation type="unfinished">
|
||||
<numerusform></numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>%L1%</source>
|
||||
<source>%Ln%</source>
|
||||
<comment>% of votes for option</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -1082,7 +1082,7 @@
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<source>%L1 vote(s) including yours</source>
|
||||
<source>%Ln vote(s) including yours</source>
|
||||
<comment>number of votes for option</comment>
|
||||
<translation type="unfinished">
|
||||
<numerusform></numerusform>
|
||||
|
|
|
@ -964,10 +964,10 @@
|
|||
<translation>Scrivi la tua domanda</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<source>Question (%n1 characters left)</source>
|
||||
<source>Question (%Ln characters left)</source>
|
||||
<translation>
|
||||
<numerusform>Domanda (%n1 carattere rimanente)</numerusform>
|
||||
<numerusform>Domanda (%n1 caratteri rimanenti)</numerusform>
|
||||
<numerusform>Domanda (%Ln carattere rimanente)</numerusform>
|
||||
<numerusform>Domanda (%Ln caratteri rimanenti)</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -980,10 +980,10 @@
|
|||
<translation>Scrivi una risposta</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<source>Answer (%n1 characters left)</source>
|
||||
<source>Answer (%Ln characters left)</source>
|
||||
<translation>
|
||||
<numerusform>Risposta (%n1 carattere rimanente)</numerusform>
|
||||
<numerusform>Risposta (%n1 caratteri rimanenti)</numerusform>
|
||||
<numerusform>Risposta (%Ln carattere rimanente)</numerusform>
|
||||
<numerusform>Risposta (%Ln caratteri rimanenti)</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -1015,9 +1015,9 @@
|
|||
<context>
|
||||
<name>PollPreview</name>
|
||||
<message>
|
||||
<source>%L1%</source>
|
||||
<source>%Ln%</source>
|
||||
<comment>% of votes for option</comment>
|
||||
<translation>%L1%</translation>
|
||||
<translation>%Ln%</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Final Result:</source>
|
||||
|
@ -1028,11 +1028,11 @@
|
|||
<translation>Risposte multiple consentite.</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<source>%L1 vote(s) total</source>
|
||||
<source>%Ln vote(s) total</source>
|
||||
<comment>number of total votes</comment>
|
||||
<translation>
|
||||
<numerusform>%L1 voto in totale</numerusform>
|
||||
<numerusform>%L1 voti in totale</numerusform>
|
||||
<numerusform>%Ln voto in totale</numerusform>
|
||||
<numerusform>%Ln voti in totale</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -1055,11 +1055,11 @@
|
|||
<translation>Risultati sondaggio</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<source>%L1 vote(s) total</source>
|
||||
<source>%Ln vote(s) total</source>
|
||||
<comment>number of total votes</comment>
|
||||
<translation>
|
||||
<numerusform>%L1 voto in totale</numerusform>
|
||||
<numerusform>%L1 voti in totale</numerusform>
|
||||
<numerusform>%Ln voto in totale</numerusform>
|
||||
<numerusform>%Ln voti in totale</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -1073,17 +1073,17 @@
|
|||
<translation>Risultati</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<source>%L1 vote(s)</source>
|
||||
<source>%Ln vote(s)</source>
|
||||
<comment>number of votes for option</comment>
|
||||
<translation>
|
||||
<numerusform>%L1 voto</numerusform>
|
||||
<numerusform>%L1 voti</numerusform>
|
||||
<numerusform>%Ln voto</numerusform>
|
||||
<numerusform>%Ln voti</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>%L1%</source>
|
||||
<source>%Ln%</source>
|
||||
<comment>% of votes for option</comment>
|
||||
<translation>%L1%</translation>
|
||||
<translation>%Ln%</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Chosen by:</source>
|
||||
|
@ -1091,11 +1091,11 @@
|
|||
<translation>Scelta da:</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<source>%L1 vote(s) including yours</source>
|
||||
<source>%Ln vote(s) including yours</source>
|
||||
<comment>number of votes for option</comment>
|
||||
<translation>
|
||||
<numerusform>%L1 voto incluso il tuo</numerusform>
|
||||
<numerusform>%L1 voti incluso il tuo</numerusform>
|
||||
<numerusform>%Ln voto incluso il tuo</numerusform>
|
||||
<numerusform>%Ln voti incluso il tuo</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
</context>
|
||||
|
|
|
@ -968,11 +968,11 @@
|
|||
<translation>Wprowadź tutaj swoje pytanie</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<source>Question (%n1 characters left)</source>
|
||||
<source>Question (%Ln characters left)</source>
|
||||
<translation>
|
||||
<numerusform>Pytanie (pozostał %n1 znak)</numerusform>
|
||||
<numerusform>Pytanie (pozostały %n1 znaki)</numerusform>
|
||||
<numerusform>Pytanie (pozostało %n1 znaków)</numerusform>
|
||||
<numerusform>Pytanie (pozostał %Ln znak)</numerusform>
|
||||
<numerusform>Pytanie (pozostały %Ln znaki)</numerusform>
|
||||
<numerusform>Pytanie (pozostało %Ln znaków)</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -985,11 +985,11 @@
|
|||
<translation>Wprowadź tutaj swoją odpowiedź</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<source>Answer (%n1 characters left)</source>
|
||||
<source>Answer (%Ln characters left)</source>
|
||||
<translation>
|
||||
<numerusform>Odpowiedź (pozostał %n1 znak)</numerusform>
|
||||
<numerusform>Odpowiedź (pozostały %n1 znaki)</numerusform>
|
||||
<numerusform>Odpowiedź (pozostało %n1 znaków)</numerusform>
|
||||
<numerusform>Odpowiedź (pozostał %Ln znak)</numerusform>
|
||||
<numerusform>Odpowiedź (pozostały %Ln znaki)</numerusform>
|
||||
<numerusform>Odpowiedź (pozostało %Ln znaków)</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -1021,9 +1021,9 @@
|
|||
<context>
|
||||
<name>PollPreview</name>
|
||||
<message>
|
||||
<source>%L1%</source>
|
||||
<source>%Ln%</source>
|
||||
<comment>% of votes for option</comment>
|
||||
<translation>%L1%</translation>
|
||||
<translation>%Ln%</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Final Result:</source>
|
||||
|
@ -1034,12 +1034,12 @@
|
|||
<translation>Dozwolonych jest wiele odpowiedzi.</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<source>%L1 vote(s) total</source>
|
||||
<source>%Ln vote(s) total</source>
|
||||
<comment>number of total votes</comment>
|
||||
<translation>
|
||||
<numerusform>%L1 odpowiedź</numerusform>
|
||||
<numerusform>%L1 odpowiedzi</numerusform>
|
||||
<numerusform>%L1 odpowiedzi</numerusform>
|
||||
<numerusform>%Ln odpowiedź</numerusform>
|
||||
<numerusform>%Ln odpowiedzi</numerusform>
|
||||
<numerusform>%Ln odpowiedzi</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -1062,12 +1062,12 @@
|
|||
<translation>Wyniki ankiety</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<source>%L1 vote(s) total</source>
|
||||
<source>%Ln vote(s) total</source>
|
||||
<comment>number of total votes</comment>
|
||||
<translation>
|
||||
<numerusform>%L1 odpowiedź</numerusform>
|
||||
<numerusform>%L1 odpowiedzi</numerusform>
|
||||
<numerusform>%L1 odpowiedzi</numerusform>
|
||||
<numerusform>%Ln odpowiedź</numerusform>
|
||||
<numerusform>%Ln odpowiedzi</numerusform>
|
||||
<numerusform>%Ln odpowiedzi</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -1081,18 +1081,18 @@
|
|||
<translation>Wyniki</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<source>%L1 vote(s)</source>
|
||||
<source>%Ln vote(s)</source>
|
||||
<comment>number of votes for option</comment>
|
||||
<translation>
|
||||
<numerusform>%L1 glos</numerusform>
|
||||
<numerusform>%L1 głosy</numerusform>
|
||||
<numerusform>%L1 głosów</numerusform>
|
||||
<numerusform>%Ln glos</numerusform>
|
||||
<numerusform>%Ln głosy</numerusform>
|
||||
<numerusform>%Ln głosów</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>%L1%</source>
|
||||
<source>%Ln%</source>
|
||||
<comment>% of votes for option</comment>
|
||||
<translation>%L1%</translation>
|
||||
<translation>%Ln%</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Chosen by:</source>
|
||||
|
@ -1100,12 +1100,12 @@
|
|||
<translation>Wybrany przez:</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<source>%L1 vote(s) including yours</source>
|
||||
<source>%Ln vote(s) including yours</source>
|
||||
<comment>number of votes for option</comment>
|
||||
<translation>
|
||||
<numerusform>%L1 głos, w tym twój</numerusform>
|
||||
<numerusform>%L1 głosy, w tym twój</numerusform>
|
||||
<numerusform>%L1 głosów, w tym twój</numerusform>
|
||||
<numerusform>%Ln głos, w tym twój</numerusform>
|
||||
<numerusform>%Ln głosy, w tym twój</numerusform>
|
||||
<numerusform>%Ln głosów, w tym twój</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
</context>
|
||||
|
|
|
@ -968,7 +968,7 @@
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<source>Question (%n1 characters left)</source>
|
||||
<source>Question (%Ln characters left)</source>
|
||||
<translation type="unfinished">
|
||||
<numerusform></numerusform>
|
||||
<numerusform></numerusform>
|
||||
|
@ -985,7 +985,7 @@
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<source>Answer (%n1 characters left)</source>
|
||||
<source>Answer (%Ln characters left)</source>
|
||||
<translation type="unfinished">
|
||||
<numerusform></numerusform>
|
||||
<numerusform></numerusform>
|
||||
|
@ -1021,7 +1021,7 @@
|
|||
<context>
|
||||
<name>PollPreview</name>
|
||||
<message>
|
||||
<source>%L1%</source>
|
||||
<source>%Ln%</source>
|
||||
<comment>% of votes for option</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -1034,7 +1034,7 @@
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<source>%L1 vote(s) total</source>
|
||||
<source>%Ln vote(s) total</source>
|
||||
<comment>number of total votes</comment>
|
||||
<translation type="unfinished">
|
||||
<numerusform></numerusform>
|
||||
|
@ -1062,7 +1062,7 @@
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<source>%L1 vote(s) total</source>
|
||||
<source>%Ln vote(s) total</source>
|
||||
<comment>number of total votes</comment>
|
||||
<translation type="unfinished">
|
||||
<numerusform></numerusform>
|
||||
|
@ -1081,7 +1081,7 @@
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<source>%L1 vote(s)</source>
|
||||
<source>%Ln vote(s)</source>
|
||||
<comment>number of votes for option</comment>
|
||||
<translation type="unfinished">
|
||||
<numerusform></numerusform>
|
||||
|
@ -1090,7 +1090,7 @@
|
|||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>%L1%</source>
|
||||
<source>%Ln%</source>
|
||||
<comment>% of votes for option</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -1100,7 +1100,7 @@
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<source>%L1 vote(s) including yours</source>
|
||||
<source>%Ln vote(s) including yours</source>
|
||||
<comment>number of votes for option</comment>
|
||||
<translation type="unfinished">
|
||||
<numerusform></numerusform>
|
||||
|
|
|
@ -964,10 +964,10 @@
|
|||
<translation>Ange din fråga här</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<source>Question (%n1 characters left)</source>
|
||||
<source>Question (%Ln characters left)</source>
|
||||
<translation>
|
||||
<numerusform>Fråga (%n1 tecken kvar)</numerusform>
|
||||
<numerusform>Fråga (%n1 tecken kvar)</numerusform>
|
||||
<numerusform>Fråga (%Ln tecken kvar)</numerusform>
|
||||
<numerusform>Fråga (%Ln tecken kvar)</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -980,10 +980,10 @@
|
|||
<translation>Ange svaret här</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<source>Answer (%n1 characters left)</source>
|
||||
<source>Answer (%Ln characters left)</source>
|
||||
<translation>
|
||||
<numerusform>Svar (%n1 tecken kvar)</numerusform>
|
||||
<numerusform>Svar (%n1 tecken kvar)</numerusform>
|
||||
<numerusform>Svar (%Ln tecken kvar)</numerusform>
|
||||
<numerusform>Svar (%Ln tecken kvar)</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -1023,16 +1023,16 @@
|
|||
<translation>Flera svarsalternativ tillåtna.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>%L1%</source>
|
||||
<source>%Ln%</source>
|
||||
<comment>% of votes for option</comment>
|
||||
<translation>%L1%</translation>
|
||||
<translation>%Ln%</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<source>%L1 vote(s) total</source>
|
||||
<source>%Ln vote(s) total</source>
|
||||
<comment>number of total votes</comment>
|
||||
<translation>
|
||||
<numerusform>%L1 röst sammanlagt</numerusform>
|
||||
<numerusform>%L1 röster sammanlagt</numerusform>
|
||||
<numerusform>%Ln röst sammanlagt</numerusform>
|
||||
<numerusform>%Ln röster sammanlagt</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -1055,11 +1055,11 @@
|
|||
<translation>Omröstningsresultat</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<source>%L1 vote(s) total</source>
|
||||
<source>%Ln vote(s) total</source>
|
||||
<comment>number of total votes</comment>
|
||||
<translation>
|
||||
<numerusform>%L1 röst sammanlagt</numerusform>
|
||||
<numerusform>%L1 röster sammanlagt</numerusform>
|
||||
<numerusform>%Ln röst sammanlagt</numerusform>
|
||||
<numerusform>%Ln röster sammanlagt</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -1073,25 +1073,25 @@
|
|||
<translation>Resultat</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<source>%L1 vote(s) including yours</source>
|
||||
<source>%Ln vote(s) including yours</source>
|
||||
<comment>number of votes for option</comment>
|
||||
<translation>
|
||||
<numerusform>%L1 röst inklusive din</numerusform>
|
||||
<numerusform>%L1 röster inklusive din</numerusform>
|
||||
<numerusform>%Ln röst inklusive din</numerusform>
|
||||
<numerusform>%Ln röster inklusive din</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<source>%L1 vote(s)</source>
|
||||
<source>%Ln vote(s)</source>
|
||||
<comment>number of votes for option</comment>
|
||||
<translation>
|
||||
<numerusform>%L1 röst</numerusform>
|
||||
<numerusform>%L1 röster</numerusform>
|
||||
<numerusform>%Ln röst</numerusform>
|
||||
<numerusform>%Ln röster</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>%L1%</source>
|
||||
<source>%Ln%</source>
|
||||
<comment>% of votes for option</comment>
|
||||
<translation>%L1%</translation>
|
||||
<translation>%Ln%</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Chosen by:</source>
|
||||
|
|
|
@ -960,9 +960,9 @@
|
|||
<translation>在此输入你的问题</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<source>Question (%n1 characters left)</source>
|
||||
<source>Question (%Ln characters left)</source>
|
||||
<translation>
|
||||
<numerusform>问题(剩余 %n1 个字符)</numerusform>
|
||||
<numerusform>问题(剩余 %Ln 个字符)</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -975,9 +975,9 @@
|
|||
<translation>在此输入回答</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<source>Answer (%n1 characters left)</source>
|
||||
<source>Answer (%Ln characters left)</source>
|
||||
<translation>
|
||||
<numerusform>回答(剩余 %n1 个字符)</numerusform>
|
||||
<numerusform>回答(剩余 %Ln 个字符)</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -1009,9 +1009,9 @@
|
|||
<context>
|
||||
<name>PollPreview</name>
|
||||
<message>
|
||||
<source>%L1%</source>
|
||||
<source>%Ln%</source>
|
||||
<comment>% of votes for option</comment>
|
||||
<translation>%L1%</translation>
|
||||
<translation>%Ln%</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Final Result:</source>
|
||||
|
@ -1022,10 +1022,10 @@
|
|||
<translation>允许多个回答。</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<source>%L1 vote(s) total</source>
|
||||
<source>%Ln vote(s) total</source>
|
||||
<comment>number of total votes</comment>
|
||||
<translation>
|
||||
<numerusform>总计 %L1 次回答</numerusform>
|
||||
<numerusform>总计 %Ln 次回答</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -1048,10 +1048,10 @@
|
|||
<translation>投票结果</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<source>%L1 vote(s) total</source>
|
||||
<source>%Ln vote(s) total</source>
|
||||
<comment>number of total votes</comment>
|
||||
<translation>
|
||||
<numerusform>总计 %L1 次投票</numerusform>
|
||||
<numerusform>总计 %Ln 次投票</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -1065,16 +1065,16 @@
|
|||
<translation>结果</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<source>%L1 vote(s)</source>
|
||||
<source>%Ln vote(s)</source>
|
||||
<comment>number of votes for option</comment>
|
||||
<translation>
|
||||
<numerusform>%L1 次投票</numerusform>
|
||||
<numerusform>%Ln 次投票</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>%L1%</source>
|
||||
<source>%Ln%</source>
|
||||
<comment>% of votes for option</comment>
|
||||
<translation>%L1%</translation>
|
||||
<translation>%Ln%</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Chosen by:</source>
|
||||
|
@ -1082,10 +1082,10 @@
|
|||
<translation>选择此项的人:</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<source>%L1 vote(s) including yours</source>
|
||||
<source>%Ln vote(s) including yours</source>
|
||||
<comment>number of votes for option</comment>
|
||||
<translation>
|
||||
<numerusform>%L1 次投票,包括你</numerusform>
|
||||
<numerusform>%Ln 次投票,包括你</numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
</context>
|
||||
|
|
|
@ -960,7 +960,7 @@
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<source>Question (%n1 characters left)</source>
|
||||
<source>Question (%Ln characters left)</source>
|
||||
<translation type="unfinished">
|
||||
<numerusform></numerusform>
|
||||
</translation>
|
||||
|
@ -975,7 +975,7 @@
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<source>Answer (%n1 characters left)</source>
|
||||
<source>Answer (%Ln characters left)</source>
|
||||
<translation type="unfinished">
|
||||
<numerusform></numerusform>
|
||||
</translation>
|
||||
|
@ -1009,7 +1009,7 @@
|
|||
<context>
|
||||
<name>PollPreview</name>
|
||||
<message>
|
||||
<source>%L1%</source>
|
||||
<source>%Ln%</source>
|
||||
<comment>% of votes for option</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -1022,7 +1022,7 @@
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<source>%L1 vote(s) total</source>
|
||||
<source>%Ln vote(s) total</source>
|
||||
<comment>number of total votes</comment>
|
||||
<translation type="unfinished">
|
||||
<numerusform></numerusform>
|
||||
|
@ -1048,7 +1048,7 @@
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<source>%L1 vote(s) total</source>
|
||||
<source>%Ln vote(s) total</source>
|
||||
<comment>number of total votes</comment>
|
||||
<translation type="unfinished">
|
||||
<numerusform></numerusform>
|
||||
|
@ -1065,14 +1065,14 @@
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<source>%L1 vote(s)</source>
|
||||
<source>%Ln vote(s)</source>
|
||||
<comment>number of votes for option</comment>
|
||||
<translation type="unfinished">
|
||||
<numerusform></numerusform>
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>%L1%</source>
|
||||
<source>%Ln%</source>
|
||||
<comment>% of votes for option</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -1082,7 +1082,7 @@
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<source>%L1 vote(s) including yours</source>
|
||||
<source>%Ln vote(s) including yours</source>
|
||||
<comment>number of votes for option</comment>
|
||||
<translation type="unfinished">
|
||||
<numerusform></numerusform>
|
||||
|
|
Loading…
Reference in a new issue