diff --git a/R/LSbinaryclassification.R b/R/LSbinaryclassification.R
index 707cca38..48b4dd1d 100644
--- a/R/LSbinaryclassification.R
+++ b/R/LSbinaryclassification.R
@@ -501,10 +501,10 @@ coef.bcPosteriorParams <- function(results) {
post <- .bcGetPosterior(options, dataset)
data <- data.frame(
parameter = gettext(c("Prevalence", "Sensitivity", "Specificity")),
- prior = gettextf("beta(%s,%s)",
+ prior = gettextf("beta(%1$s,%2$s)",
options[c("priorPrevalenceAlpha", "priorSensitivityAlpha", "priorSpecificityAlpha")],
options[c("priorPrevalenceBeta", "priorSensitivityBeta", "priorSpecificityBeta")]),
- posterior = gettextf("beta(%s,%s)",
+ posterior = gettextf("beta(%1$s,%2$s)",
post[c("priorPrevalenceAlpha", "priorSensitivityAlpha", "priorSpecificityAlpha")],
post[c("priorPrevalenceBeta", "priorSensitivityBeta", "priorSpecificityBeta")])
)
diff --git a/R/LSbinomialcommon.R b/R/LSbinomialcommon.R
index 6a155069..bb3647e8 100644
--- a/R/LSbinomialcommon.R
+++ b/R/LSbinomialcommon.R
@@ -209,7 +209,7 @@
}
output <- list(
- distribution = gettextf("beta (%s, %s)", textAlpha, textBeta),
+ distribution = gettextf("beta (%1$s, %2$s)", textAlpha, textBeta),
mean = (prior[["betaPriorAlpha"]] + data$nSuccesses) / (prior[["betaPriorAlpha"]] + data$nSuccesses + prior[["betaPriorBeta"]] + data$nFailures),
median = qbeta(.5, prior[["betaPriorAlpha"]] + data$nSuccesses, prior[["betaPriorBeta"]] + data$nFailures),
mode = .modeBetaLS(prior[["betaPriorAlpha"]] + data$nSuccesses, prior[["betaPriorBeta"]] + data$nFailures),
@@ -282,7 +282,7 @@
if (prior[["type"]] == "spike") {
output <- list(
- distribution = gettextf("binomial (%i, %s)", options[["posteriorPredictionNumberOfFutureTrials"]], prior[["spikePointInp"]]),
+ distribution = gettextf("binomial (%1$i, %2$s)", options[["posteriorPredictionNumberOfFutureTrials"]], prior[["spikePointInp"]]),
mean = prior[["spikePoint"]] * options[["posteriorPredictionNumberOfFutureTrials"]] / d,
median = qbinom(.5, options[["posteriorPredictionNumberOfFutureTrials"]], prior[["spikePoint"]]) / d,
mode = .modeBinomialLS(options[["posteriorPredictionNumberOfFutureTrials"]], prior[["spikePoint"]], prop = prop),
@@ -308,7 +308,7 @@
}
output <- list(
- distribution = gettextf("beta-binomial (%i, %s, %s)", options[["posteriorPredictionNumberOfFutureTrials"]], textAlpha, textBeta),
+ distribution = gettextf("beta-binomial (%1$i, %2$s, %3$s)", options[["posteriorPredictionNumberOfFutureTrials"]], textAlpha, textBeta),
mean = (prior[["betaPriorAlpha"]] + data$nSuccesses) * options[["posteriorPredictionNumberOfFutureTrials"]] / (prior[["betaPriorAlpha"]] + data$nSuccesses + prior[["betaPriorBeta"]] + data$nFailures) / d,
median = .qbetabinomLS(.5, options[["posteriorPredictionNumberOfFutureTrials"]], prior[["betaPriorAlpha"]] + data$nSuccesses, prior[["betaPriorBeta"]] + data$nFailures) / d,
mode = .modeBetaBinomLS(options[["posteriorPredictionNumberOfFutureTrials"]], prior[["betaPriorAlpha"]] + data$nSuccesses, prior[["betaPriorBeta"]] + data$nFailures, prop = prop),
diff --git a/R/LSbinomialestimation.R b/R/LSbinomialestimation.R
index 2f8db1cf..4f6ee854 100644
--- a/R/LSbinomialestimation.R
+++ b/R/LSbinomialestimation.R
@@ -173,7 +173,7 @@ LSbinomialestimation <- function(jaspResults, dataset, options, state = NULL)
# add footnote clarifying what dataset was used
estimatesTable$addFootnote(gettextf(
- "These results are based on %i %s and %i %s.",
+ "These results are based on %1$i %2$s and %3$i %4$s.",
data[["nSuccesses"]], ifelse (data[["nSuccesses"]] == 1, gettext("success"), gettext("successes")),
data[["nFailures"]], ifelse (data[["nFailures"]] == 1, gettext("failure"), gettext("failures"))
))
@@ -1138,7 +1138,7 @@ LSbinomialestimation <- function(jaspResults, dataset, options, state = NULL)
# add footnote clarifying what dataset was used
predictionsTable$addFootnote(gettextf(
- "The prediction for %s %s is based on %s %s and %s %s.",
+ "The prediction for %1$s %2$s is based on %3$s %4$s and %5$s %6$s.",
options[["posteriorPredictionNumberOfFutureTrials"]], ifelse (options[["posteriorPredictionNumberOfFutureTrials"]] == 1, gettext("observation"), gettext("observations")),
data[["nSuccesses"]], ifelse (data[["nSuccesses"]] == 1, gettext("success"), gettext("successes")),
data[["nFailures"]], ifelse (data[["nFailures"]] == 1, gettext("failure"), gettext("failures"))
diff --git a/R/LSbinomialtesting.R b/R/LSbinomialtesting.R
index 1164f53f..ef0cf633 100644
--- a/R/LSbinomialtesting.R
+++ b/R/LSbinomialtesting.R
@@ -196,7 +196,7 @@ LSbinomialtesting <- function(jaspResults, dataset, options, state = NULL) {
# add footnote clarifying what dataset was used
testsTable$addFootnote(gettextf(
- "These results are based on %i %s and %i %s.",
+ "These results are based on %1$i %2$s and %3$i %4$s.",
data[["nSuccesses"]], ifelse (data[["nSuccesses"]] == 1, gettext("success"), gettext("successes")),
data[["nFailures"]], ifelse (data[["nFailures"]] == 1, gettext("failure"), gettext("failures"))
))
@@ -1463,7 +1463,7 @@ LSbinomialtesting <- function(jaspResults, dataset, options, state = NULL) {
# add footnote clarifying what dataset was used
predictionsTable$addFootnote(gettextf(
- "The prediction for %s %s is based on %s %s and %s %s.",
+ "The prediction for %1$s %2$s is based on %3$s %4$s and %5$s %6$s.",
options[["posteriorPredictionNumberOfFutureTrials"]], ifelse (options[["posteriorPredictionNumberOfFutureTrials"]] == 1, gettext("observation"), gettext("observations")),
data[["nSuccesses"]], ifelse (data[["nSuccesses"]] == 1, gettext("success"), gettext("successes")),
data[["nFailures"]], ifelse (data[["nFailures"]] == 1, gettext("failure"), gettext("failures"))
diff --git a/R/LScommon.R b/R/LScommon.R
index bab93c1a..0df4b11f 100644
--- a/R/LScommon.R
+++ b/R/LScommon.R
@@ -46,9 +46,8 @@ gettextf <- function(fmt, ..., domain = NULL) {
}
}
if (models[[p]][["name"]] == "") {
- models[[p]][["name"]] <- gettextf(
- "%s %i",
- ifelse (any(names(models[[p]]) %in% c("priorWeight")), "Hypothesis", "Model"),
+ models[[p]][["name"]] <- paste(
+ ifelse (any(names(models[[p]]) %in% c("priorWeight")), gettext("Hypothesis"), gettext("Model")),
p
)
}
@@ -1690,7 +1689,7 @@ hdi.density <- function(object, credMass=0.95, allowSplit=FALSE, ...) {
if (text == "main") {
introText <- gettextf(
- "Welcome to the %s analysis from the Learn Bayes module. This analysis illustrates Bayesian %s using %s examples.",
+ "Welcome to the %1$s analysis from the Learn Bayes module. This analysis illustrates Bayesian %2$s using %3$s examples.",
switch(
analysis,
"binEst" = gettext("Binomial Estimation"),
@@ -1711,10 +1710,10 @@ hdi.density <- function(object, credMass=0.95, allowSplit=FALSE, ...) {
overviewText <- gettextf(
"The analysis is split into 5 sections:
- Data - for specifying the data input for the computations. You can either use a variable from a dataset loaded into JASP, specify an aggregated overview of the data, or enter the observations one by one (and update them during the analysis).
- - %s
- - %s
- - %s
- - %s
+ %1$s
+ %2$s
+ %3$s
+ %4$s
",
ifelse (estimation,
gettextf("Model - for specifying models that will be used for estimation. You can specify the model name, the prior distribution for the parameter %s, and parameters that define the distribution.", parameterInfo),
diff --git a/R/LSgaussiancommon.R b/R/LSgaussiancommon.R
index e8723cbd..fc6df638 100644
--- a/R/LSgaussiancommon.R
+++ b/R/LSgaussiancommon.R
@@ -151,7 +151,7 @@
if (is.null(data)) {
output <- list(
- distribution = gettextf("normal (%s, %s)", prior[["parMuInp"]], prior[["parSigmaInp"]]),
+ distribution = gettextf("normal (%1$s, %2$s)", prior[["parMuInp"]], prior[["parSigmaInp"]]),
mean = prior[["parMu"]],
median = prior[["parMu"]],
mode = prior[["parMu"]],
diff --git a/R/LSgaussianestimation.R b/R/LSgaussianestimation.R
index 9e254bdc..495d2d3b 100644
--- a/R/LSgaussianestimation.R
+++ b/R/LSgaussianestimation.R
@@ -1190,11 +1190,11 @@ LSgaussianestimation <- function(jaspResults, dataset, options, state = NULL)
# add footnote clarifying what dataset was used
predictionsTable$addFootnote(gettextf(
- "The prediction for %s future %s is based on %s.",
+ "The prediction for %1$s future %2$s is based on %3$s.",
options[["posteriorPredictionNumberOfFutureTrials"]],
ifelse (options[["posteriorPredictionNumberOfFutureTrials"]] == 1, gettext("observation"),gettext("observations")),
if (is.null(data)) gettext("prior") else gettextf(
- "%s past %s",
+ "%1$s past %2$s",
data$N,
ifelse (data$N == 1, gettext("observation"), gettext("observations"))
)
diff --git a/po/R-de.po b/po/R-de.po
index 6b48b944..28d16507 100644
--- a/po/R-de.po
+++ b/po/R-de.po
@@ -314,8 +314,8 @@ msgstr "Sensitivität"
msgid "Specificity"
msgstr "Spezifizität"
-msgid "beta(%s,%s)"
-msgstr "Beta(%s,%s)"
+msgid "beta(%1$s,%2$s)"
+msgstr "beta(%1$s,%2$s)"
msgid "Plots"
msgstr "Diagramme"
@@ -567,14 +567,14 @@ msgstr "Misserfolge"
msgid "spike at %s"
msgstr "Impuls bei %s"
-msgid "beta (%s, %s)"
-msgstr "Beta (%s, %s)"
+msgid "beta (%1$s, %2$s)"
+msgstr "beta (%1$s, %2$s)"
-msgid "binomial (%i, %s)"
-msgstr "Binomial (%i, %s)"
+msgid "binomial (%1$i, %2$s)"
+msgstr "binomial (%1$i, %2$s)"
-msgid "beta-binomial (%i, %s, %s)"
-msgstr "Beta-Binomial (%i, %s, %s)"
+msgid "beta-binomial (%1$i, %2$s, %3$s)"
+msgstr "beta-binomial (%1$i, %2$s, %3$s)"
msgid "Estimation Summary"
msgstr "Schätzungs-Zusammenfassung"
@@ -597,8 +597,8 @@ msgstr "Posterior %s"
msgid "Please specify successes and failures."
msgstr "Bitte gib Erfolge und Misserfolge an."
-msgid "These results are based on %i %s and %i %s."
-msgstr "Diese Ergebnisse basieren auf %i %s und %i %s."
+msgid "These results are based on %1$i %2$s and %3$i %4$s."
+msgstr "Diese Ergebnisse basieren auf %1$i %2$s und %3$i %4$s."
msgid "Observation"
msgstr "Beobachtung"
@@ -633,8 +633,8 @@ msgstr "Vorhersage %s"
msgid "Prediction std. deviation"
msgstr "Vorhersage Std.-Abweichung"
-msgid "The prediction for %s %s is based on %s %s and %s %s."
-msgstr "Die Vorhersage für %s %s basiert auf %s %s und %s %s."
+msgid "The prediction for %1$s %2$s is based on %3$s %4$s and %5$s %6$s."
+msgstr "Die Vorhersage für %1$s %2$s basiert auf %3$s %4$s und %5$s %6$s."
msgid "Predicted sample proportions"
msgstr "Vorhergesagte Stichprobenanteile"
@@ -800,10 +800,10 @@ msgid ""
"You can either use a variable from a dataset loaded into JASP, specify an "
"aggregated overview of the data, or enter the observations one by one (and "
"update them during the analysis). \n"
-" %s \n"
-" %s \n"
-" %s \n"
-" %s "
+" %1$s \n"
+" %2$s \n"
+" %3$s \n"
+" %4$s "
msgstr ""
"Die Analyse ist in 5 Abschnitte aufgeteilt:\n"
" - Daten - hier werden die Daten für die Berechnungen "
@@ -811,10 +811,10 @@ msgstr ""
"Datensatz verwenden, eine Zusammenfassung der Daten auswählen oder die "
"Beobachtungen einzeln eintragen (und während der Analyse aktualisieren). "
"li>\n"
-"
- %s
\n"
-" - %s
\n"
-" - %s
\n"
-" - %s
"
+" %1$s \n"
+" %2$s \n"
+" %3$s \n"
+" %4$s "
msgid "The 'Data' section allows you to specify data input for the analysis."
msgstr "Im 'Daten'-Abschnitt können Sie die Daten für die Analyse eingeben."
@@ -1663,8 +1663,8 @@ msgstr "Es sind nur numerische Werte in der Eingabe erlaubt."
msgid "SD"
msgstr "SD"
-msgid "normal (%s, %s)"
-msgstr "Normal (%s, %s)"
+msgid "normal (%1$s, %2$s)"
+msgstr "Normal (%1$s, %2$s)"
msgid "normal (%.2f, %.2f)"
msgstr "Normal (%.2f, %.2f)"
@@ -1696,8 +1696,8 @@ msgstr "Mittelwert Vorhersage"
msgid "Please, specify the standard deviation of the data."
msgstr "Bitte gib die Standardabweichung der Daten an."
-msgid "The prediction for %s future %s is based on %s."
-msgstr "Die Vorhersage für %s zukünftiges %s basiert auf %s."
+msgid "The prediction for %1$s future %2$s is based on %3$s."
+msgstr "Die Vorhersage für %1$s zukünftiges %2$s basiert auf %3$s."
msgid "Sample means"
msgstr "Stichprobenmittelwerte"
diff --git a/po/R-es.po b/po/R-es.po
index 6a789985..5b888cc8 100644
--- a/po/R-es.po
+++ b/po/R-es.po
@@ -318,8 +318,8 @@ msgstr "Sensibilidad"
msgid "Specificity"
msgstr "Especificidad"
-msgid "beta(%s,%s)"
-msgstr "Beta(%s,%s)"
+msgid "beta(%1$s,%2$s)"
+msgstr "beta(%1$s,%2$s)"
msgid "Plots"
msgstr "Gráficos"
@@ -573,14 +573,14 @@ msgstr "Fracasos"
msgid "spike at %s"
msgstr "pico en %s"
-msgid "beta (%s, %s)"
-msgstr "Beta (%s, %s)"
+msgid "beta (%1$s, %2$s)"
+msgstr "beta (%1$s, %2$s)"
-msgid "binomial (%i, %s)"
-msgstr "Binomial (%i, %s)"
+msgid "binomial (%1$i, %2$s)"
+msgstr "binomial (%1$i, %2$s)"
-msgid "beta-binomial (%i, %s, %s)"
-msgstr "Beta-Binomial (%i, %s, %s)"
+msgid "beta-binomial (%1$i, %2$s, %3$s)"
+msgstr "beta-binomial (%1$i, %2$s, %3$s)"
msgid "Estimation Summary"
msgstr "Resumen de la Estimación"
@@ -603,8 +603,8 @@ msgstr "%s posterior"
msgid "Please specify successes and failures."
msgstr "Por favor, indica los aciertos y los fracasos."
-msgid "These results are based on %i %s and %i %s."
-msgstr "Estos resultados se basan en %i %s y %i %s."
+msgid "These results are based on %1$i %2$s and %3$i %4$s."
+msgstr "Estos resultados se basan en %1$i %2$s y %3$i %4$s."
msgid "Observation"
msgstr "Observación"
@@ -638,8 +638,8 @@ msgstr "Predicción %s"
msgid "Prediction std. deviation"
msgstr "Desviación típica de la predicción"
-msgid "The prediction for %s %s is based on %s %s and %s %s."
-msgstr "La predicción para %s %s se basa en %s %s y %s %s."
+msgid "The prediction for %1$s %2$s is based on %3$s %4$s and %5$s %6$s."
+msgstr "La predicción para %1$s %2$s se basa en %3$s %4$s y %5$s %6$s."
msgid "Predicted sample proportions"
msgstr "Proporciones predichas de la muestra"
@@ -807,20 +807,20 @@ msgid ""
"You can either use a variable from a dataset loaded into JASP, specify an "
"aggregated overview of the data, or enter the observations one by one (and "
"update them during the analysis). \n"
-" %s \n"
-" %s \n"
-" %s \n"
-" %s "
+" %1$s \n"
+" %2$s \n"
+" %3$s \n"
+" %4$s "
msgstr ""
"El análisis se divide en 5 secciones:\n"
" - Datos - para indicar la introducción de datos para los "
"cálculos. Se puede utilizar una variable de un conjunto de datos cargados en "
"JASP, o indicar una revisión agregada de los datos, o bien introducir las "
"observaciones una a una (y actualizarlas durante el análisis).
\n"
-" - %s
\n"
-" - %s
\n"
-" - %s
\n"
-" - %s
"
+" %1$s \n"
+" %2$s \n"
+" %3$s \n"
+" %4$s "
msgid "The 'Data' section allows you to specify data input for the analysis."
msgstr ""
@@ -1663,8 +1663,8 @@ msgstr "Solo se admiten valores numéricos en la entrada."
msgid "SD"
msgstr "DT"
-msgid "normal (%s, %s)"
-msgstr "Normal (%s, %s)"
+msgid "normal (%1$s, %2$s)"
+msgstr "Normal (%1$s, %2$s)"
msgid "normal (%.2f, %.2f)"
msgstr "Normal (%.2f, %.2f)"
@@ -1696,8 +1696,8 @@ msgstr "Media de la Predicción"
msgid "Please, specify the standard deviation of the data."
msgstr "Por favor, indica la desviación típica de los datos."
-msgid "The prediction for %s future %s is based on %s."
-msgstr "La predicción para %s futuro %s se basa en %s."
+msgid "The prediction for %1$s future %2$s is based on %3$s."
+msgstr "La predicción para %1$s futuro %2$s se basa en %3$s."
msgid "Sample means"
msgstr "Medias muestrales"
diff --git a/po/R-gl.po b/po/R-gl.po
index 3dbdbd8f..f8180146 100644
--- a/po/R-gl.po
+++ b/po/R-gl.po
@@ -323,8 +323,8 @@ msgstr "Sensibilidade"
msgid "Specificity"
msgstr "Especificidade"
-msgid "beta(%s,%s)"
-msgstr "Beta(%s,%s)"
+msgid "beta(%1$s,%2$s)"
+msgstr "beta(%1$s,%2$s)"
msgid "Plots"
msgstr "Gráficas"
@@ -574,14 +574,14 @@ msgstr "Fracasos"
msgid "spike at %s"
msgstr "pico en %s"
-msgid "beta (%s, %s)"
-msgstr "Beta (%s, %s)"
+msgid "beta (%1$s, %2$s)"
+msgstr "beta (%1$s, %2$s)"
-msgid "binomial (%i, %s)"
-msgstr "Binomial (%i, %s)"
+msgid "binomial (%1$i, %2$s)"
+msgstr "binomial (%1$i, %2$s)"
-msgid "beta-binomial (%i, %s, %s)"
-msgstr "Beta-Binomial (%i, %s, %s)"
+msgid "beta-binomial (%1$i, %2$s, %3$s)"
+msgstr "beta-binomial (%1$i, %2$s, %3$s)"
msgid "Estimation Summary"
msgstr "Resumo da Estimación"
@@ -604,8 +604,8 @@ msgstr "%s posterior"
msgid "Please specify successes and failures."
msgstr "Por favor, indica os acertos e os fracasos."
-msgid "These results are based on %i %s and %i %s."
-msgstr "Estes resultados baséanse en %i %s e %i %s."
+msgid "These results are based on %1$i %2$s and %3$i %4$s."
+msgstr "Estes resultados baséanse en %1$i %2$s e %3$i %4$s."
msgid "Observation"
msgstr "Observación"
@@ -639,8 +639,8 @@ msgstr "Predición %s"
msgid "Prediction std. deviation"
msgstr "Desvío padrón da predición"
-msgid "The prediction for %s %s is based on %s %s and %s %s."
-msgstr "A predición para %s %s baséase en %s %s e %s %s."
+msgid "The prediction for %1$s %2$s is based on %3$s %4$s and %5$s %6$s."
+msgstr "A predición para %1$s %2$s baséase en %3$s %4$s e %5$s %6$s."
msgid "Predicted sample proportions"
msgstr "Proporcións preditas da mostra"
@@ -803,20 +803,20 @@ msgid ""
"You can either use a variable from a dataset loaded into JASP, specify an "
"aggregated overview of the data, or enter the observations one by one (and "
"update them during the analysis). \n"
-" %s \n"
-" %s \n"
-" %s \n"
-" %s "
+" %1$s \n"
+" %2$s \n"
+" %3$s \n"
+" %4$s "
msgstr ""
"A análise divídese en 5 seccións:\n"
" - Datos - para indicar a achega de datos para os cálculos. "
"Podes ben utilizar unha variable dun conxunto de datos cargados en JASP, ben "
"indicar unha revisión agregada dos datos, ou ben introducir as observacións "
"unha por unha (e actualizalas durante a análise).
\n"
-" - %s
\n"
-" - %s
\n"
-" - %s
\n"
-" - %s
"
+" %1$s \n"
+" %2$s \n"
+" %3$s \n"
+" %4$s "
msgid "The 'Data' section allows you to specify data input for the analysis."
msgstr "A sección 'Datos' te permite indicar a achega de datos para a análise."
@@ -1637,8 +1637,8 @@ msgstr "Só se admiten valores numéricos na achega."
msgid "SD"
msgstr "DP"
-msgid "normal (%s, %s)"
-msgstr "Normal (%s, %s)"
+msgid "normal (%1$s, %2$s)"
+msgstr "Normal (%1$s, %2$s)"
msgid "normal (%.2f, %.2f)"
msgstr "Normal (%.2f, %.2f)"
diff --git a/po/R-ja.po b/po/R-ja.po
index 13181499..fcf3bba1 100644
--- a/po/R-ja.po
+++ b/po/R-ja.po
@@ -303,8 +303,8 @@ msgstr "感度"
msgid "Specificity"
msgstr "特異度"
-msgid "beta(%s,%s)"
-msgstr "beta(%s,%s)"
+msgid "beta(%1$s,%2$s)"
+msgstr "beta(%1$s,%2$s)"
msgid "Plots"
msgstr "プロット"
@@ -536,14 +536,14 @@ msgstr "失敗数"
msgid "spike at %s"
msgstr "%s でスパイク"
-msgid "beta (%s, %s)"
-msgstr "beta (%s, %s)"
+msgid "beta (%1$s, %2$s)"
+msgstr "beta (%1$s, %2$s)"
-msgid "binomial (%i, %s)"
-msgstr "binomial (%i, %s)"
+msgid "binomial (%1$i, %2$s)"
+msgstr "binomial (%1$i, %2$s)"
-msgid "beta-binomial (%i, %s, %s)"
-msgstr "beta-binomial (%i, %s, %s)"
+msgid "beta-binomial (%1$i, %2$s, %3$s)"
+msgstr "beta-binomial (%1$i, %2$s, %3$s)"
msgid "Estimation Summary"
msgstr "推定値要約"
@@ -566,8 +566,8 @@ msgstr "事後%s"
msgid "Please specify successes and failures."
msgstr "成功と失敗を指定してください。"
-msgid "These results are based on %i %s and %i %s."
-msgstr "この結果は、%i %sと%i %sに基づいています."
+msgid "These results are based on %1$i %2$s and %3$i %4$s."
+msgstr "この結果は、%1$i %2$sと%3$i %4$sに基づいています."
msgid "Observation"
msgstr "観測値"
@@ -600,7 +600,7 @@ msgstr "予測 %s"
msgid "Prediction std. deviation"
msgstr "予測標準偏差"
-msgid "The prediction for %s %s is based on %s %s and %s %s."
+msgid "The prediction for %1$s %2$s is based on %3$s %4$s and %5$s %6$s."
msgstr "%s %sの予測は、%s %sと%s %sに基づいています."
msgid "Predicted sample proportions"
@@ -761,19 +761,19 @@ msgid ""
"You can either use a variable from a dataset loaded into JASP, specify an "
"aggregated overview of the data, or enter the observations one by one (and "
"update them during the analysis). \n"
-" %s \n"
-" %s \n"
-" %s \n"
-" %s "
+" %1$s \n"
+" %2$s \n"
+" %3$s \n"
+" %4$s "
msgstr ""
"分析は5つのセクションに分かれています。\n"
" - データ - 計算のためのデータ入力を指定します。JASPに読み込まれ"
"ているデータセットの変数を使用するか、データの集約された概要を指定するか、観"
"測値を1つずつ入力する(分析中に更新する)ことができます。
\n"
-" - %s
.\n"
-" - %s
.\n"
-" - %s
\n"
-" - %s
"
+" %1$s .\n"
+" %2$s .\n"
+" %3$s \n"
+" %4$s "
msgid "The 'Data' section allows you to specify data input for the analysis."
msgstr "'データ'セクションでは、分析のデータ入力を指定できます。"
@@ -1297,7 +1297,7 @@ msgstr ""
msgid "SD"
msgstr "標準偏差"
-msgid "normal (%s, %s)"
+msgid "normal (%1$s, %2$s)"
msgstr ""
msgid "normal (%.2f, %.2f)"
@@ -1330,7 +1330,7 @@ msgstr ""
msgid "Please, specify the standard deviation of the data."
msgstr ""
-msgid "The prediction for %s future %s is based on %s."
+msgid "The prediction for %1$s future %2$s is based on %3$s."
msgstr ""
msgid "Sample means"
diff --git a/po/R-jaspLearnBayes.pot b/po/R-jaspLearnBayes.pot
index 13b12bc0..e22f280d 100644
--- a/po/R-jaspLearnBayes.pot
+++ b/po/R-jaspLearnBayes.pot
@@ -160,7 +160,7 @@ msgstr ""
msgid "Specificity"
msgstr ""
-msgid "beta(%s,%s)"
+msgid "beta(%1$s,%2$s)"
msgstr ""
msgid "Plots"
@@ -376,13 +376,13 @@ msgstr ""
msgid "spike at %s"
msgstr ""
-msgid "beta (%s, %s)"
+msgid "beta (%1$s, %2$s)"
msgstr ""
-msgid "binomial (%i, %s)"
+msgid "binomial (%1$i, %2$s)"
msgstr ""
-msgid "beta-binomial (%i, %s, %s)"
+msgid "beta-binomial (%1$i, %2$s, %3$s)"
msgstr ""
msgid "Estimation Summary"
@@ -406,7 +406,7 @@ msgstr ""
msgid "Please specify successes and failures."
msgstr ""
-msgid "These results are based on %i %s and %i %s."
+msgid "These results are based on %1$i %2$s and %3$i %4$s."
msgstr ""
msgid "Observation"
@@ -439,7 +439,7 @@ msgstr ""
msgid "Prediction std. deviation"
msgstr ""
-msgid "The prediction for %s %s is based on %s %s and %s %s."
+msgid "The prediction for %1$s %2$s is based on %3$s %4$s and %5$s %6$s."
msgstr ""
msgid "Predicted sample proportions"
@@ -565,7 +565,7 @@ msgstr ""
msgid "%s Sequential Analysis"
msgstr ""
-msgid "Welcome to the %s analysis from the Learn Bayes module. This analysis illustrates Bayesian %s using %s examples."
+msgid "Welcome to the %1$s analysis from the Learn Bayes module. This analysis illustrates Bayesian %2$s using %3$s examples."
msgstr ""
msgid "%s (the population proportion of successes)"
@@ -574,7 +574,7 @@ msgstr ""
msgid "%s (the population mean, variance is assumed to be known)"
msgstr ""
-msgid "The analysis is split into 5 sections:\n - Data - for specifying the data input for the computations. You can either use a variable from a dataset loaded into JASP, specify an aggregated overview of the data, or enter the observations one by one (and update them during the analysis).
\n - %s
\n - %s
\n - %s
\n - %s
"
+msgid "The analysis is split into 5 sections:\n - Data - for specifying the data input for the computations. You can either use a variable from a dataset loaded into JASP, specify an aggregated overview of the data, or enter the observations one by one (and update them during the analysis).
\n - %1$s
\n - %2$s
\n - %3$s
\n - %4$s
"
msgstr ""
msgid "The 'Data' section allows you to specify data input for the analysis."
@@ -790,7 +790,7 @@ msgstr ""
msgid "SD"
msgstr ""
-msgid "normal (%s, %s)"
+msgid "normal (%1$s, %2$s)"
msgstr ""
msgid "normal (%.2f, %.2f)"
diff --git a/po/R-nl.po b/po/R-nl.po
index b0b6380e..423f872f 100644
--- a/po/R-nl.po
+++ b/po/R-nl.po
@@ -313,7 +313,7 @@ msgstr "Sensitiviteit"
msgid "Specificity"
msgstr "Specificiteit"
-msgid "beta(%s,%s)"
+msgid "beta(%1$s,%2$s)"
msgstr "beta(%s, %s)"
msgid "Plots"
@@ -568,13 +568,13 @@ msgstr "Mislukkingen"
msgid "spike at %s"
msgstr "Puntmassa bij %s"
-msgid "beta (%s, %s)"
-msgstr "beta (%s, %s)"
+msgid "beta (%1$s, %2$s)"
+msgstr "beta (%1$s, %2$s)"
-msgid "binomial (%i, %s)"
+msgid "binomial (%1$i, %2$s)"
msgstr "binomiaal (%i, %s)"
-msgid "beta-binomial (%i, %s, %s)"
+msgid "beta-binomial (%1$i, %2$s, %3$s)"
msgstr "beta-binomiaal (%i, %s, %s)"
msgid "Estimation Summary"
@@ -598,8 +598,8 @@ msgstr "Posterior %s"
msgid "Please specify successes and failures."
msgstr "Specificeer a.u.b. het aantal successen en mislukkingen."
-msgid "These results are based on %i %s and %i %s."
-msgstr "Deze resultaten zijn gebaseerd op %i %s en %i %s."
+msgid "These results are based on %1$i %2$s and %3$i %4$s."
+msgstr "Deze resultaten zijn gebaseerd op %1$i %2$s en %3$i %4$s."
msgid "Observation"
msgstr "Observatie"
@@ -634,8 +634,8 @@ msgstr "Voorspelling %s"
msgid "Prediction std. deviation"
msgstr "Voorspelling std. afwijking"
-msgid "The prediction for %s %s is based on %s %s and %s %s."
-msgstr "De voorspelling voor %s %s is gebaseerd op %s %s en %s %s."
+msgid "The prediction for %1$s %2$s is based on %3$s %4$s and %5$s %6$s."
+msgstr "De voorspelling voor %1$s %2$s is gebaseerd op %3$s %4$s en %5$s %6$s."
msgid "Predicted sample proportions"
msgstr "Voorspelde steekproefproporties"
@@ -799,10 +799,10 @@ msgid ""
"You can either use a variable from a dataset loaded into JASP, specify an "
"aggregated overview of the data, or enter the observations one by one (and "
"update them during the analysis). \n"
-" %s \n"
-" %s \n"
-" %s \n"
-" %s "
+" %1$s \n"
+" %2$s \n"
+" %3$s \n"
+" %4$s "
msgstr ""
"De analyse is opgesplitst in 5 secties:\n"
" - Gegevens - voor het specificeren van de data-invoer voor de "
@@ -810,10 +810,10 @@ msgstr ""
"in JASP is geladen, een geaggregeerd overzicht van de gegevens specificeren, "
"of de waarnemingen een voor een invoeren (en deze bijwerken tijdens de "
"analyse).
\n"
-" - %s
\n"
-" - %s
\n"
-" - %s
\n"
-" - %s
"
+" %1$s \n"
+" %2$s \n"
+" %3$s \n"
+" %4$s "
msgid "The 'Data' section allows you to specify data input for the analysis."
msgstr ""
@@ -1653,8 +1653,8 @@ msgstr "Alleen numerieke waarden zijn toegestaan in de invoer."
msgid "SD"
msgstr "SD"
-msgid "normal (%s, %s)"
-msgstr "normaal (%s, %s)"
+msgid "normal (%1$s, %2$s)"
+msgstr "normaal (%1$s, %2$s)"
msgid "normal (%.2f, %.2f)"
msgstr "normaal (%.2f, %.2f)"
@@ -1686,8 +1686,8 @@ msgstr "Voorspelling Gemiddelde"
msgid "Please, specify the standard deviation of the data."
msgstr "Geef a.u.b. de standaardafwijking van de gegevens op."
-msgid "The prediction for %s future %s is based on %s."
-msgstr "De voorspelling voor %s toekomst %s is gebaseerd op %s."
+msgid "The prediction for %1$s future %2$s is based on %3$s."
+msgstr "De voorspelling voor %1$s toekomst %2$s is gebaseerd op %3$s."
msgid "Sample means"
msgstr "Steekproefgemiddelden"
diff --git a/po/R-pl.po b/po/R-pl.po
index 26cdeee0..3d5eeef1 100644
--- a/po/R-pl.po
+++ b/po/R-pl.po
@@ -240,7 +240,7 @@ msgstr ""
msgid "Specificity"
msgstr ""
-msgid "beta(%s,%s)"
+msgid "beta(%1$s,%2$s)"
msgstr ""
msgid "Plots"
@@ -473,13 +473,13 @@ msgstr "Porażki"
msgid "spike at %s"
msgstr ""
-msgid "beta (%s, %s)"
-msgstr "beta (%s, %s)"
+msgid "beta (%1$s, %2$s)"
+msgstr "beta (%1$s, %2$s)"
-msgid "binomial (%i, %s)"
+msgid "binomial (%1$i, %2$s)"
msgstr "dwumianowy (%i, %s)"
-msgid "beta-binomial (%i, %s, %s)"
+msgid "beta-binomial (%1$i, %2$s, %3$s)"
msgstr "beta-dwumianowy (%i, %s, %s)"
msgid "Estimation Summary"
@@ -503,7 +503,7 @@ msgstr "Posterior %s"
msgid "Please specify successes and failures."
msgstr "Należy zdefiniować sukcesy i porażki."
-msgid "These results are based on %i %s and %i %s."
+msgid "These results are based on %1$i %2$s and %3$i %4$s."
msgstr ""
msgid "Observation"
@@ -537,7 +537,7 @@ msgstr ""
msgid "Prediction std. deviation"
msgstr ""
-msgid "The prediction for %s %s is based on %s %s and %s %s."
+msgid "The prediction for %1$s %2$s is based on %3$s %4$s and %5$s %6$s."
msgstr ""
msgid "Predicted sample proportions"
@@ -689,10 +689,10 @@ msgid ""
"You can either use a variable from a dataset loaded into JASP, specify an "
"aggregated overview of the data, or enter the observations one by one (and "
"update them during the analysis). \n"
-" %s \n"
-" %s \n"
-" %s \n"
-" %s "
+" %1$s \n"
+" %2$s \n"
+" %3$s \n"
+" %4$s "
msgstr ""
msgid "The 'Data' section allows you to specify data input for the analysis."
@@ -1206,7 +1206,7 @@ msgstr ""
msgid "SD"
msgstr "Odch. stand."
-msgid "normal (%s, %s)"
+msgid "normal (%1$s, %2$s)"
msgstr ""
msgid "normal (%.2f, %.2f)"
@@ -1239,7 +1239,7 @@ msgstr ""
msgid "Please, specify the standard deviation of the data."
msgstr ""
-msgid "The prediction for %s future %s is based on %s."
+msgid "The prediction for %1$s future %2$s is based on %3$s."
msgstr ""
msgid "Sample means"
diff --git a/po/R-pt.po b/po/R-pt.po
index af560431..0af9a8a4 100644
--- a/po/R-pt.po
+++ b/po/R-pt.po
@@ -256,7 +256,7 @@ msgstr "Densidade"
msgid "Specificity"
msgstr ""
-msgid "beta(%s,%s)"
+msgid "beta(%1$s,%2$s)"
msgstr ""
msgid "Plots"
@@ -492,13 +492,13 @@ msgstr ""
msgid "spike at %s"
msgstr ""
-msgid "beta (%s, %s)"
+msgid "beta (%1$s, %2$s)"
msgstr ""
-msgid "binomial (%i, %s)"
+msgid "binomial (%1$i, %2$s)"
msgstr ""
-msgid "beta-binomial (%i, %s, %s)"
+msgid "beta-binomial (%1$i, %2$s, %3$s)"
msgstr ""
#, fuzzy
@@ -527,7 +527,7 @@ msgstr "Amostras posteriores"
msgid "Please specify successes and failures."
msgstr ""
-msgid "These results are based on %i %s and %i %s."
+msgid "These results are based on %1$i %2$s and %3$i %4$s."
msgstr ""
msgid "Observation"
@@ -563,7 +563,7 @@ msgstr "Correção"
msgid "Prediction std. deviation"
msgstr ""
-msgid "The prediction for %s %s is based on %s %s and %s %s."
+msgid "The prediction for %1$s %2$s is based on %3$s %4$s and %5$s %6$s."
msgstr ""
msgid "Predicted sample proportions"
@@ -716,10 +716,10 @@ msgid ""
"You can either use a variable from a dataset loaded into JASP, specify an "
"aggregated overview of the data, or enter the observations one by one (and "
"update them during the analysis). \n"
-" %s \n"
-" %s \n"
-" %s \n"
-" %s "
+" %1$s \n"
+" %2$s \n"
+" %3$s \n"
+" %4$s "
msgstr ""
msgid "The 'Data' section allows you to specify data input for the analysis."
@@ -1234,7 +1234,7 @@ msgstr ""
msgid "SD"
msgstr "DP"
-msgid "normal (%s, %s)"
+msgid "normal (%1$s, %2$s)"
msgstr ""
msgid "normal (%.2f, %.2f)"
diff --git a/po/R-ru.po b/po/R-ru.po
index c77e47f2..860db598 100644
--- a/po/R-ru.po
+++ b/po/R-ru.po
@@ -236,7 +236,7 @@ msgstr ""
msgid "Specificity"
msgstr ""
-msgid "beta(%s,%s)"
+msgid "beta(%1$s,%2$s)"
msgstr ""
msgid "Plots"
@@ -469,13 +469,13 @@ msgstr ""
msgid "spike at %s"
msgstr ""
-msgid "beta (%s, %s)"
+msgid "beta (%1$s, %2$s)"
msgstr ""
-msgid "binomial (%i, %s)"
+msgid "binomial (%1$i, %2$s)"
msgstr ""
-msgid "beta-binomial (%i, %s, %s)"
+msgid "beta-binomial (%1$i, %2$s, %3$s)"
msgstr ""
msgid "Estimation Summary"
@@ -499,7 +499,7 @@ msgstr ""
msgid "Please specify successes and failures."
msgstr ""
-msgid "These results are based on %i %s and %i %s."
+msgid "These results are based on %1$i %2$s and %3$i %4$s."
msgstr ""
msgid "Observation"
@@ -533,7 +533,7 @@ msgstr ""
msgid "Prediction std. deviation"
msgstr ""
-msgid "The prediction for %s %s is based on %s %s and %s %s."
+msgid "The prediction for %1$s %2$s is based on %3$s %4$s and %5$s %6$s."
msgstr ""
msgid "Predicted sample proportions"
@@ -685,10 +685,10 @@ msgid ""
"You can either use a variable from a dataset loaded into JASP, specify an "
"aggregated overview of the data, or enter the observations one by one (and "
"update them during the analysis). \n"
-" %s \n"
-" %s \n"
-" %s \n"
-" %s "
+" %1$s \n"
+" %2$s \n"
+" %3$s \n"
+" %4$s "
msgstr ""
msgid "The 'Data' section allows you to specify data input for the analysis."
@@ -1202,7 +1202,7 @@ msgstr ""
msgid "SD"
msgstr ""
-msgid "normal (%s, %s)"
+msgid "normal (%1$s, %2$s)"
msgstr ""
msgid "normal (%.2f, %.2f)"
@@ -1235,7 +1235,7 @@ msgstr ""
msgid "Please, specify the standard deviation of the data."
msgstr ""
-msgid "The prediction for %s future %s is based on %s."
+msgid "The prediction for %1$s future %2$s is based on %3$s."
msgstr ""
msgid "Sample means"