mirror of
https://github.com/eclipse-sailing-analytics/sailing-analytics.git
synced 2026-09-27 16:06:39 +00:00
Merge branch 'master' into bug4641
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
#!/bin/bash
|
||||
|
||||
# You need an installation of the Neon SR2 release of "Eclipse IDE for Eclipse Committers" matching you OS and JDK (32 vs 64 Bit):
|
||||
# You need an installation of the Oxygen SR2 release of "Eclipse IDE for Eclipse Committers" matching you OS and JDK (32 vs 64 Bit):
|
||||
# http://www.eclipse.org/downloads/packages/eclipse-ide-eclipse-committers/oxygen2
|
||||
|
||||
if [[ $1 == "" ]]; then
|
||||
|
||||
@@ -0,0 +1,58 @@
|
||||
#!/bin/bash
|
||||
|
||||
# You need an installation of the Photon release of "Eclipse IDE for Eclipse Committers" matching you OS and JDK (32 vs 64 Bit):
|
||||
# http://www.eclipse.org/downloads/packages/eclipse-ide-eclipse-committers/photonr
|
||||
|
||||
if [[ $1 == "" ]]; then
|
||||
echo "You need to specify the Eclipse installation directory"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
installPath="$1"
|
||||
|
||||
installPlugins() {
|
||||
"$installPath/eclipse" -application org.eclipse.equinox.p2.director -noSplash -roaming -repository $1 -installIU $2
|
||||
echo ""
|
||||
}
|
||||
|
||||
updatePlugins() {
|
||||
"$installPath/eclipse" -application org.eclipse.equinox.p2.director -noSplash -roaming -repository $1 -uninstallIU $2 -installIU $2
|
||||
echo ""
|
||||
}
|
||||
|
||||
# Not necessary if using Eclipse for JEE developers
|
||||
echo "Installing webtools (WTP/WST/JPT) and m2e that are required by the GWT plugin..."
|
||||
installPlugins http://download.eclipse.org/releases/photon/ org.eclipse.wst.web_ui.feature.feature.group,org.eclipse.jst.web_ui.feature.feature.group,org.eclipse.wst.xml_ui.feature.feature.group,org.eclipse.jpt.common.feature.feature.group,org.eclipse.jpt.jpa.feature.feature.group,org.eclipse.m2e.feature.feature.group,org.eclipse.m2e.wtp.feature.feature.group
|
||||
|
||||
echo "Installing GWT plugin..."
|
||||
installPlugins http://storage.googleapis.com/gwt-eclipse-plugin/v3/release com.gwtplugins.eclipse.suite.v3.feature.feature.group
|
||||
|
||||
echo "Installing Android Tools..."
|
||||
installPlugins https://dl-ssl.google.com/android/eclipse com.android.ide.eclipse.adt.feature.feature.group
|
||||
|
||||
echo "Installing GWT SDM debug bridge..."
|
||||
installPlugins http://p2.sapsailing.com/p2/sdbg com.github.sdbg.feature.feature.group
|
||||
|
||||
echo "Installing EasyShell..."
|
||||
installPlugins http://anb0s.github.io/EasyShell de.anbos.eclipse.easyshell.feature.feature.group
|
||||
|
||||
echo "Installing BIRT charts (requirement for MAT)..."
|
||||
installPlugins http://download.eclipse.org/birt/update-site/4.6 org.eclipse.birt.chart.feature.group
|
||||
|
||||
echo "Installing Memory Analyzer..."
|
||||
installPlugins http://download.eclipse.org/releases/photon org.eclipse.mat.feature.feature.group,org.eclipse.mat.chart.feature.feature.group
|
||||
|
||||
echo "Installing latest version of Code Recommenders..."
|
||||
updatePlugins http://download.eclipse.org/recommenders/updates/stable/ org.eclipse.recommenders.rcp.feature.feature.group,org.eclipse.recommenders.mylyn.rcp.feature.feature.group,org.eclipse.recommenders.snipmatch.rcp.feature.feature.group,org.eclipse.recommenders.news.rcp.feature.feature.group
|
||||
|
||||
echo "Installing latest version of EGit..."
|
||||
updatePlugins http://download.eclipse.org/egit/updates org.eclipse.jgit.feature.group,org.eclipse.jgit.http.apache.feature.group,org.eclipse.egit.feature.group,org.eclipse.egit.mylyn.feature.group,org.eclipse.egit.gitflow.feature.feature.group
|
||||
|
||||
# Currently not needed because Eclipse Photon already provides current versions
|
||||
# echo "Installing latest version of Mylyn ..."
|
||||
# updatePlugins http://download.eclipse.org/mylyn/releases/latest org.eclipse.mylyn_feature.feature.group,org.eclipse.mylyn.bugzilla_feature.feature.group,org.eclipse.mylyn.builds.feature.group,org.eclipse.mylyn.commons.feature.group,org.eclipse.mylyn.commons.identity.feature.group,org.eclipse.mylyn.commons.notifications.feature.group,org.eclipse.mylyn.commons.repositories.feature.group,org.eclipse.mylyn.commons.repositories.http.feature.group,org.eclipse.mylyn.context_feature.feature.group,org.eclipse.mylyn.discovery.feature.group,org.eclipse.mylyn.gerrit.feature.feature.group,org.eclipse.mylyn.git.feature.group,org.eclipse.mylyn.hudson.feature.group,org.eclipse.mylyn.java_feature.feature.group,org.eclipse.mylyn.monitor.feature.group,org.eclipse.mylyn.reviews.feature.feature.group,org.eclipse.mylyn.team_feature.feature.group,org.eclipse.mylyn.versions.feature.group,org.eclipse.mylyn.wikitext_feature.feature.group
|
||||
|
||||
echo "Installing SAP JVM Tools (profiler) ..."
|
||||
installPlugins https://tools.hana.ondemand.com/oxygen com.sap.jvm.profiling.feature.group
|
||||
|
||||
echo "Installation completed!"
|
||||
@@ -12,7 +12,7 @@ export JAVA_HOME=/opt/sapjvm_8
|
||||
export JAVA_1_7_HOME=/opt/jdk1.7.0_75
|
||||
export ANDROID_HOME=/opt/android-sdk-linux
|
||||
|
||||
export PATH=$PATH:$JAVA_HOME/bin:/opt/amazon/ec2-api-tools-1.6.8.0/bin:/opt/amazon/bin
|
||||
export PATH=$PATH:$JAVA_HOME/bin:/opt/amazon/ec2-api-tools-1.6.8.0/bin:/opt/amazon/bin:/opt/apache-maven-3.2.1/bin
|
||||
|
||||
export DISPLAY=:2.0
|
||||
|
||||
|
||||
Executable
+40
@@ -0,0 +1,40 @@
|
||||
// Aggregates settings by their frequency across all DBs.
|
||||
// Usage: mongo --host <hostname> --port <port> settings-agg.js
|
||||
allDatabases = db.adminCommand({ "listDatabases": 1 }).databases
|
||||
|
||||
collection = 'PREFERENCES'
|
||||
|
||||
acc = {}
|
||||
|
||||
allDatabases.forEach(function(d) {
|
||||
//database = connect('localhost:27017/' + d.name)
|
||||
database = db.getSiblingDB(d.name)
|
||||
collections = database.getCollectionNames()
|
||||
if (collections.indexOf(collection) >= 0) {
|
||||
usage = database.getCollection(collection).aggregate([{$unwind: "$KEYS_AND_VALUES"}, {$group: {_id:"$KEYS_AND_VALUES.VALUE", total:{$sum:1}}}])
|
||||
|
||||
usage.forEach(function(u) {
|
||||
if (u._id[0] == '{') {
|
||||
if (u._id in acc) {
|
||||
acc[u._id] += u.total
|
||||
} else {
|
||||
acc[u._id] = u.total
|
||||
}
|
||||
}
|
||||
})
|
||||
}
|
||||
})
|
||||
|
||||
result = []
|
||||
for (var key in acc) {
|
||||
if (acc.hasOwnProperty(key)) {
|
||||
result.push({"setting": key, "count": acc[key]})
|
||||
}
|
||||
}
|
||||
|
||||
result.sort(function(a, b) { return b.count - a.count })
|
||||
|
||||
for (var i in result) {
|
||||
print("Setting: " + result[i].setting + "\nCount: " + result[i].count + "\n")
|
||||
}
|
||||
|
||||
@@ -1 +1 @@
|
||||
1.0.22
|
||||
1.0.23
|
||||
|
||||
@@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>method</key>
|
||||
<string>app-store</string>
|
||||
<key>provisioningProfiles</key>
|
||||
<dict>
|
||||
<key>com.sap.sailing.ios.SAPTracker.release</key> <!--bundle identifier of project read note below (Make sure to include the .release appended at the end)!-->
|
||||
<string>SAP Sail InSight</string>
|
||||
</dict>
|
||||
</dict>
|
||||
</plist>
|
||||
+1
@@ -117,6 +117,7 @@ public enum BoatClassMasterdata {
|
||||
TOM_28_MAX ("Tom 28 MAX", true, 8.48, 2.48, BoatHullType.MONOHULL, true, "Tom 28"),
|
||||
TRIAS ("Trias", true, 9.20, 2.12, BoatHullType.MONOHULL, true),
|
||||
TP52 ("TP52", true, 15.85, 4.35, BoatHullType.MONOHULL, true, "TP 52", "Transpac 52", "Transpac52"),
|
||||
VARIANTA ("Varianta", true, 6.40, 2.10, BoatHullType.MONOHULL, true),
|
||||
VAURIEN ("Vaurien", true, 4.08, 1.47, BoatHullType.MONOHULL, true),
|
||||
VENT_D_OUEST ("Vent d'Ouest", true, 5.85, 1.75, BoatHullType.MONOHULL, true, "VENTDOUEST", "VENTD'OUEST"),
|
||||
VIPER_640 ("Viper 640", true, 6.43, 2.49, BoatHullType.MONOHULL, true),
|
||||
|
||||
+2
-1
@@ -18,7 +18,8 @@ public enum AvailableWindFinderSpotCollections {
|
||||
SZCZECIN("szczecin"),
|
||||
SANKT_PETERSBURG("sankt_petersburg"),
|
||||
SANKT_MORITZ("sankt_moritz"),
|
||||
PORTO_CERVO("porto_cervo");
|
||||
PORTO_CERVO("porto_cervo"),
|
||||
MUEGGELSEE("mueggelsee");
|
||||
|
||||
private final String name;
|
||||
|
||||
|
||||
+1
@@ -128,6 +128,7 @@ public class BoatClassImageResolver {
|
||||
boatClassIconsMap.put(BoatClassMasterdata.TOM_28_MAX.getDisplayName(), imageResources.Tom28MaxIcon());
|
||||
boatClassIconsMap.put(BoatClassMasterdata.TP52.getDisplayName(), imageResources.TP52Icon());
|
||||
boatClassIconsMap.put(BoatClassMasterdata.TRIAS.getDisplayName(), imageResources.TriasIcon());
|
||||
boatClassIconsMap.put(BoatClassMasterdata.VARIANTA.getDisplayName(), imageResources.VariantaIcon());
|
||||
boatClassIconsMap.put(BoatClassMasterdata.VAURIEN.getDisplayName(), imageResources.VaurienIcon());
|
||||
boatClassIconsMap.put(BoatClassMasterdata.VENT_D_OUEST.getDisplayName(), imageResources.VentdOuestIcon());
|
||||
boatClassIconsMap.put(BoatClassMasterdata.VIPER_640.getDisplayName(), imageResources.Viper640Icon());
|
||||
|
||||
+4
@@ -443,4 +443,8 @@ public interface BoatClassImageResources extends ClientBundle {
|
||||
@Source("com/sap/sailing/gwt/ui/client/images/boatclass/VAURIEN.png")
|
||||
@ImageOptions(preventInlining = true)
|
||||
ImageResource VaurienIcon();
|
||||
|
||||
@Source("com/sap/sailing/gwt/ui/client/images/boatclass/VARIANTA.png")
|
||||
@ImageOptions(preventInlining = true)
|
||||
ImageResource VariantaIcon();
|
||||
}
|
||||
|
||||
-1
@@ -15,7 +15,6 @@ public abstract class AbstractLeaderboardDialog<LD extends LeaderboardDescriptor
|
||||
protected LD leaderboardDescriptor;
|
||||
|
||||
protected DiscardThresholdBoxes discardThresholdBoxes;
|
||||
protected static final int MAX_NUMBER_OF_DISCARDED_RESULTS = 4;
|
||||
|
||||
public AbstractLeaderboardDialog(String title, LD leaderboardDescriptor, StringMessages stringMessages,
|
||||
Validator<LD> validator, DialogCallback<LD> callback) {
|
||||
|
||||
+13
-12
@@ -3,8 +3,7 @@ package com.sap.sailing.gwt.ui.adminconsole;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
import com.google.gwt.user.client.ui.HasVerticalAlignment;
|
||||
import com.google.gwt.user.client.ui.HorizontalPanel;
|
||||
import com.google.gwt.user.client.ui.Grid;
|
||||
import com.google.gwt.user.client.ui.Label;
|
||||
import com.google.gwt.user.client.ui.LongBox;
|
||||
import com.google.gwt.user.client.ui.VerticalPanel;
|
||||
@@ -23,10 +22,11 @@ import com.sap.sse.gwt.client.dialog.DataEntryDialog;
|
||||
*
|
||||
*/
|
||||
public class DiscardThresholdBoxes {
|
||||
private static final int MAX_NUMBER_OF_DISCARDED_RESULTS = 4;
|
||||
private static final int MAX_NUMBER_OF_DISCARDED_RESULTS = 15;
|
||||
|
||||
private static final int NUMBER_OF_BOXES_PER_LINE = 5;
|
||||
|
||||
private final LongBox[] discardThresholdBoxes;
|
||||
private final DataEntryDialog<?> parent;
|
||||
|
||||
/**
|
||||
* The widget used to represent the UI
|
||||
@@ -38,7 +38,6 @@ public class DiscardThresholdBoxes {
|
||||
}
|
||||
|
||||
public DiscardThresholdBoxes(DataEntryDialog<?> parent, int[] initialDiscardThresholds, StringMessages stringMessages) {
|
||||
this.parent = parent;
|
||||
discardThresholdBoxes = new LongBox[MAX_NUMBER_OF_DISCARDED_RESULTS];
|
||||
for (int i = 0; i < discardThresholdBoxes.length; i++) {
|
||||
if (initialDiscardThresholds != null && i < initialDiscardThresholds.length) {
|
||||
@@ -82,16 +81,18 @@ public class DiscardThresholdBoxes {
|
||||
|
||||
private Widget createDiscardThresholdBoxesPanel(StringMessages stringMessages) {
|
||||
assert discardThresholdBoxes != null && discardThresholdBoxes.length == MAX_NUMBER_OF_DISCARDED_RESULTS;
|
||||
VerticalPanel vp = new VerticalPanel();
|
||||
final VerticalPanel vp = new VerticalPanel();
|
||||
vp.add(new Label(stringMessages.discardRacesFromHowManyStartedRacesOn()));
|
||||
HorizontalPanel hp = new HorizontalPanel();
|
||||
vp.add(hp);
|
||||
hp.setSpacing(3);
|
||||
final Grid grid = new Grid(0, 2*NUMBER_OF_BOXES_PER_LINE);
|
||||
grid.setCellSpacing(3);
|
||||
vp.add(grid);
|
||||
for (int i = 0; i < discardThresholdBoxes.length; i++) {
|
||||
hp.add(new Label("" + (i + 1) + "."));
|
||||
hp.add(discardThresholdBoxes[i]);
|
||||
if (i%NUMBER_OF_BOXES_PER_LINE == 0) {
|
||||
grid.resizeRows(i/NUMBER_OF_BOXES_PER_LINE + 1);
|
||||
}
|
||||
grid.setWidget(i/NUMBER_OF_BOXES_PER_LINE, 2*(i%NUMBER_OF_BOXES_PER_LINE), new Label("" + (i + 1) + "."));
|
||||
grid.setWidget(i/NUMBER_OF_BOXES_PER_LINE, 2*(i%NUMBER_OF_BOXES_PER_LINE)+1, discardThresholdBoxes[i]);
|
||||
}
|
||||
parent.alignAllPanelWidgetsVertically(hp, HasVerticalAlignment.ALIGN_MIDDLE);
|
||||
return vp;
|
||||
}
|
||||
|
||||
|
||||
+12
-113
@@ -9,12 +9,10 @@ trackedBefore=Historial de eventos rastreados
|
||||
general=General
|
||||
listRaces=Listar carreras
|
||||
listRegattas=Listar regatas
|
||||
numberPairResultsPresenter=Diagrama de dispersión
|
||||
wind=Viento
|
||||
maneuverType=Maniobra
|
||||
windPanelLabel=Este es el panel de vientos, y hasta el momento está totalmente vacío.
|
||||
refresh=Refrescar
|
||||
remove=Eliminar
|
||||
removeNumber=Eliminar ({0})
|
||||
windSource=Fuente de vientos
|
||||
dampeningInterval=Intervalo de amortiguación
|
||||
@@ -53,7 +51,6 @@ trackedRaceConnectedToSelectedRaceName=Carrera rastreada conectada al nombre de
|
||||
linkToColumn=Enlace a columna
|
||||
unlink=Quitar enlace
|
||||
leaderboardName=Nombre de tabla de clasificación
|
||||
cancel=Cancelar
|
||||
pleaseEnterAName=Indique un nombre
|
||||
pleaseEnterABoatClass=Indique una clase de embarcación
|
||||
discardRacesFromHowManyStartedRacesOn=Descartar un inicio de carrera más con cuántas carreras iniciadas
|
||||
@@ -65,7 +62,6 @@ startingFromNumberOfRaces=Empezando por cuántas carreras
|
||||
renameLeaderboard=Cambiar nombre de tabla de clasificación
|
||||
addColumnToLeaderboard=Añadir columna a tabla de clasificación
|
||||
pleaseEnterNameForNewRaceColumn=Indique un nombre para la nueva columna de carrera
|
||||
ok=OK
|
||||
medalRace=Medal Race
|
||||
renameRace=Cambiar nombre de carrera
|
||||
openSelectedLeaderboard=Abrir tabla de clasificación seleccionada
|
||||
@@ -89,7 +85,6 @@ sapSailingAnalytics=Sailing Analytics
|
||||
leaderboard=Tabla de clasificación
|
||||
leaderboards=Tablas de clasificación
|
||||
leaderboardSettings=Opciones de tabla de clasificación
|
||||
settings=Opciones
|
||||
selectAtLeastOneLegDetail=Seleccione al menos un detalle de tramo
|
||||
currentSpeedOverGroundInKnots=SOG (speed over ground)
|
||||
currentSpeedOverGroundInKnotsTooltip=Velocidad actual sobre el fondo.
|
||||
@@ -172,7 +167,6 @@ tacks=Bordadas
|
||||
jibes=Trasluchadas
|
||||
penaltyCircles=Círculos de penalización
|
||||
medalRaceIsNull=Valor de regata final no permitido
|
||||
configuration=Configuración
|
||||
maneuverTypes=Maniobras
|
||||
chooseChart=Seleccionar gráfico
|
||||
distanceTraveled=Distancia viajada
|
||||
@@ -190,13 +184,11 @@ secondsPerNauticalMileUnit=s/NM
|
||||
metersUnit=m
|
||||
millimetersUnit=mm
|
||||
degreesUnit=°
|
||||
close=Cerrar
|
||||
compareCompetitors=Comparar competidores
|
||||
description=Descripción
|
||||
sailNumber=Número de vela
|
||||
country=País
|
||||
no3LetterCodes=No es posible encontrar los códigos IOC de 3 letras.
|
||||
add=Añadir
|
||||
delete=Borrar
|
||||
showCharts=Mostrar gráficos
|
||||
raceWithThisNameAlreadyExists=Ya existe una carrera con este nombre.
|
||||
@@ -268,7 +260,6 @@ printHint=Imprime la versión aplicada
|
||||
blockedApplyButton=Los competidores registrados difieren de los competidores de la lista de emparejamientos
|
||||
multiplierInfo=Multiplica los flights y los crea uno junto a otro de modo que sea posible una competición con menos modificaciones de embarcación.
|
||||
noPairingListAvailable=La función de impresión solo está disponible si ya se han aplicado las listas de emparejamientos a los registros de carrera de las clasificaciones seleccionadas.
|
||||
settingsForComponent=Opciones para {0}
|
||||
noEventsFound=No se han encontrado eventos
|
||||
noEventSelected=Ningún evento seleccionado
|
||||
noLeaderboardsFound=No se han encontrado tablas de clasificación
|
||||
@@ -306,8 +297,6 @@ leaderboardGroup=Grupo de tablas de clasificación
|
||||
pleaseEnterNonEmptyDescription=Indique una descripción no vacía
|
||||
groupWithThisNameAlreadyExists=Ya existe un grupo de tablas de clasificación con este nombre.
|
||||
detailsOfLeaderboardGroup=Detalles del grupo de tablas de clasificación
|
||||
edit=Editar
|
||||
save=Grabar
|
||||
abort=Detener
|
||||
noLeaderboardGroupWithNameFound=No se ha encontrado ningún grupo de tablas de clasificación con el nombre {0}
|
||||
overview=Resumen
|
||||
@@ -342,7 +331,6 @@ degreesShort=grados
|
||||
untracked=No rastreado
|
||||
delayForLiveMode=Retraso para modo en directo
|
||||
notAvailable=No disponible
|
||||
details=Detalles
|
||||
noGroupSelected=Ningún grupo seleccionado
|
||||
combinedWindSourceTypeName=Combinado
|
||||
legMiddleWindSourceTypeName=Mitad de tramo
|
||||
@@ -424,7 +412,6 @@ simulateAsLiveRace=Simular como carrera en directo
|
||||
simulateWithOffset=Offset antes de inicio en minutos:
|
||||
boatClassDoesNotMatchSelectedRegatta=Las carreras seleccionadas contienen clases de embarcación distintas de la clase ''''{0}'''' de la regata seleccionada. No se cargará ninguna carrera.
|
||||
regattaExistForSelectedBoatClass=Hay al menos una regata para las clases de embarcación seleccionadas. ¿Realmente desea crear regata(s) por defecto para esta(s) carrera(s)?
|
||||
reload=Recargar
|
||||
addRegatta=Añadir regata...
|
||||
importRegattas=Importar regatas...
|
||||
exchangeName=Intercambiar nombre
|
||||
@@ -646,7 +633,6 @@ totalNetPointsColumnTooltip=El total de puntos netos de un competidor de la rega
|
||||
windData=Datos de vientos
|
||||
gpsData=Datos de GPS
|
||||
status=Status
|
||||
noDataFound=No se han encontrado datos
|
||||
displayName=Visualizar nombre
|
||||
histogram=Histograma
|
||||
numberOfDataPoints=Número de puntos de datos
|
||||
@@ -894,12 +880,9 @@ legType=Tipo de tramo
|
||||
sailID=Número de vela
|
||||
seriesLeaderboard=Tabla de clasificación de serie
|
||||
regattaLeaderboards=Clasificaciones de regata
|
||||
clearSelection=Borrar selección
|
||||
running=En ejecución
|
||||
runAsSubstantive=Ejecutar
|
||||
done=Hecho
|
||||
lastFinished=Último que ha terminado
|
||||
run=Ejecutar
|
||||
times=tiempos
|
||||
dataAmount=Cantidad de datos
|
||||
averageCleanedServerTime=∅ Tiempo de servidor limpio
|
||||
@@ -923,12 +906,8 @@ selectSheet=Seleccionar hoja
|
||||
cleanedServerTime=Tiempo de servidor limpio
|
||||
overallTime=Tiempo total
|
||||
cleanedOverallTime=Tiempo global limpio
|
||||
dataMiningResult=Resultado de minería de datos
|
||||
groupBy=Agrupar por
|
||||
statisticToCalculate=Calcular estadística
|
||||
queryResultsChartSubtitle=Se ha trabajado en {0} entradas de datos en {1} segundos
|
||||
noQuerySelected=Ninguna consulta seleccionada
|
||||
runAutomatically=Ejecutar automáticamente
|
||||
windImport_Upload=Cargar
|
||||
windImport_Title=Importar viento desde expedición
|
||||
windImport_BoatId=ID de embarcación:
|
||||
@@ -958,14 +937,9 @@ raceTimeTooltip=Tiempo total recorrido en esta carrera, se empieza a medir cuand
|
||||
raceTimeDownwindTooltip=Tiempo total de empopada recorrido en esta carrera
|
||||
raceTimeReachingTooltip=Tiempo total de alcance recorrido en esta carrera
|
||||
raceTimeUpwindTooltip=Tiempo total de ceñida recorrido en esta carrera
|
||||
noStatisticSelectedError=No se ha seleccionado ninguna estadística para calcular
|
||||
noCustomGrouperScriptTextError=El script de grupo está vacío
|
||||
noDimensionToGroupBySelectedError=No se ha seleccionado ninguna dimensión para agrupar
|
||||
noGrouperSelectedError=No se ha seleccionado ningún tipo de agrupador
|
||||
noDataRetrieverChainDefinitonSelectedError=No se ha seleccionado ningún recuperador de datos
|
||||
queryNotValidBecause=No se puede hacer ninguna consulta porque
|
||||
dataMining=Minería de datos
|
||||
errorRunningDataMiningQuery=Se ha producido un error al ejecutar la consulta
|
||||
hideToolbar=Ocultar barra de herramientas
|
||||
showSeriesLeaderboards=Mostrar tablas de clasificación de las series
|
||||
showOverallLeaderboard=Mostrar tabla de clasificación general
|
||||
@@ -988,7 +962,6 @@ id=ID
|
||||
allowReload=Permitir recarga
|
||||
compress=Comprimir
|
||||
compressTooltip=Utilizar solamente si la instancia del servidor de exportación funciona al menos con la confirmación 0fbf6071dea125bec4a56dee55d61c99def4a62e.
|
||||
queryRunner=Ejecutor de la consulta
|
||||
rerunQueryAfterRefresh=Volver a ejecutar la consulta después de actualizar
|
||||
refreshIntervalMustntBeEmpty=El intervalo de actualización no debe estar en blanco
|
||||
selectionTables=Tablas de selección
|
||||
@@ -1073,12 +1046,7 @@ TWATooltip=Ángulo entre la dirección de los competidores y el viento
|
||||
TWA=Ángulo real del viento
|
||||
showBoatClassChartsLabel=También puede visualizar el diagrama global para las clases de embarcación disponibles.
|
||||
showDiagram=Mostrar diagrama
|
||||
runAutomaticallyTooltip=Ejecute la consulta automáticamente después de modificar, por ejemplo, la estadística o la agrupación.
|
||||
rerunQueryAfterRefreshTooltip=Vuelve a ejecutar la consulta después de que se hayan refrescado las tablas.
|
||||
queryDefinitionProvider=Proveedor de definición de consultas
|
||||
statisticProvider=Proveedor de estadísticas
|
||||
calculateThe=Calcular
|
||||
groupingProvider=Proveedor de agrupación
|
||||
releaseNotes=Historial de noticias y lanzamientos
|
||||
hasSplitFleetContiguousScoring=Dividir flotas puntuadas de forma contigua
|
||||
addRaceLogTracker=Añadir rastreador de registro de carrera
|
||||
@@ -1236,7 +1204,6 @@ showAll=Mostrar todo
|
||||
raceVisibilityColumn=Visibilidad
|
||||
enterCarryValueFor=Introducir puntos acumulados para el competidor {0}
|
||||
advanced=Avanzado
|
||||
basedOn=Basado en
|
||||
retrieveWith=Recuperar con
|
||||
mappingDetails=Detalles de asignación
|
||||
deviceMappingQrCodeExplanation=Si utiliza la aplicación de rastreo, también puede añadir la asignación de dispositivos seleccionando un competidor/marca, definiendo las fechas de inicio y fin y escaneando este código QR
|
||||
@@ -1247,10 +1214,6 @@ enterImageURL=Indicar URL de imagen...
|
||||
enterVideoURL=Indicar URL de vídeo...
|
||||
enterSponsorImageURL=Indicar URL de imagen de patrocinador...
|
||||
enterRaceName=Indicar nombre de carrera...
|
||||
serverError=Se ha producido un error al intentar contactar con el servidor. Compruebe la conexión de red e inténtelo de nuevo.
|
||||
remoteProcedureCall=Llamada de procedimiento remoto
|
||||
serverReplies=Servidor responde
|
||||
errorCommunicatingWithServer=Error al comunicar con el servidor
|
||||
userManagement=Gestión de usuarios
|
||||
regattaStructureImport=Importación de la estructura de regata
|
||||
filteredBy=Filtrado por
|
||||
@@ -1278,7 +1241,6 @@ noFleetsDefined=Ninguna flota definida
|
||||
successfullyCreatedRegattas=Regatas creadas con éxito
|
||||
errorTryingToRegisterRacesForTracking=Error al intentar registrar carreras {0} para rastreo: {1}. Compruebe sintaxis URI en directo/grabada.
|
||||
errorDeterminingPolarAvailability=Error al determinar la disponibilidad de datos polares / VPP para la carrera {0}: {1}
|
||||
error=Error
|
||||
fileStorage=Almacenamiento de archivos
|
||||
active=Activo
|
||||
scoringSchemeHighPointEssOverallDescription=Calificación en puntos. El ganador de una prueba obtiene 10 puntos; el segundo, 9 puntos, etc. Si hay un empate en la serie de Extreme Sailing, el empate se resuelve a favor del competidor que ha ganado más pruebas. Si aún persiste el empate, se utiliza el resultado de la última prueba.
|
||||
@@ -1319,7 +1281,6 @@ showCompetitorFullNameColumn=Nombre completo del competidor
|
||||
showCompetitorNationalityColumn=Siempre mostrar la nacionalidad del competidor
|
||||
showCompetitorNationalityColumnTooltip=Muestra ambos, las banderas de país así como las imágenes de competidor, si están disponibles.
|
||||
loadingDimensionValues=Cargando valores de dimensión
|
||||
runningQuery=Ejecutando consulta
|
||||
inviteBuoyTenders=Invitar a balizadores
|
||||
orMultipleEmails=o varios correos electrónicos separados por una coma
|
||||
courseOverGroundTrueDegreesTooltip=Regata sobre el fondo (Course Over Ground) en grados
|
||||
@@ -1327,11 +1288,6 @@ courseOverGroundTrueDegrees=COG
|
||||
distanceIncludingGateStartInMeters=Distancia (con inicio de puerta de salida)
|
||||
distanceTraveledIncludingGateStartTooltip=Distancia recorrida desde el inicio hasta el final del tramo\o hasta la fecha y hora actual si no se ha acabado el tramo.\nSi el tramo incluye un inicio de puerta de salida, la distancia desde el extremo hasta la posición inicial se incluye\n para que puedan compararse los competidores aunque hayan empezado en tiempos diferentes.
|
||||
raceDistanceTraveledIncludingGateStartTooltip=Distancia recorrida desde el inicio hasta el final de la carrera\o hasta la fecha y hora actual si no se ha acabado la carrera. Para el inicio de la puerta de salida, la distancia desde el extremo hasta la posición inicial se incluye\n para que puedan compararse los competidores aunque hayan empezado en tiempos diferentes.
|
||||
results=Resultados
|
||||
groupName=Nombre de grupo
|
||||
valueAscending=Valor (ascendente)
|
||||
valueDescending=Valor (descendente)
|
||||
sortBy=Ordenado por
|
||||
dashboardHeader=Dashboard
|
||||
dashboardNoWindBotAvailableHeader=Wind Bot no está disponible
|
||||
dashboardNoWindBotAvailableMessage=Para obtener los datos de viento en directo a partir de unidades de medida de viento, asegúrese de que Wind Bot está activado y contectado con SAP Sailing Analytics.
|
||||
@@ -1367,16 +1323,12 @@ dashboardRCBoat=Barco RC
|
||||
fixedMarkPassing=(fijado)
|
||||
suppressedMarkPassing=(suprimido)
|
||||
windUp=Viento al norte (mostrar viento de la parte superior del mapa)
|
||||
filterBy=Filtrar por
|
||||
currentFilterSelection=Seleccion de filtro actual
|
||||
notCapableOfGeneratingACodeForIdentifier=No sé generar un código para este identificador.
|
||||
serverUrl=URL del servidor
|
||||
rotatedFromTrueNorth=Ha rotado {0} grados desde el norte real.
|
||||
clickToToggleWindUp=Golpe/clic para alternar entre visualización mapa viento al norte y norte arriba
|
||||
clickToToggleWindStreamlets=Golpe/clic para mostrar u ocultar corrientes de viento
|
||||
startLineToFirstMarkTriangle=Inicio a la primera marca ({0} m)
|
||||
dataMiningComponentsHaveBeenUpdated=Los componentes de minería de datos se han actualizado
|
||||
dataMiningComponentsNeedReloadDialogMessage=Pulse Recargar para volver a cargar los componentes ahora. De este modo, se descartarán los datos visualizados en ese momento y se ejecutará una consulta por defecto.\nHaga clic en «Cerrar» para no hacer nada. La minería de datos no funcionará correctamente hasta que se hayan vuelto a cargar los componentes.
|
||||
noDataForEvent=Todavía no hay datos para el evento.
|
||||
countriesCount={0,number} países
|
||||
countriesCount[one]={0,number} país
|
||||
@@ -1474,15 +1426,7 @@ noFinishedRaces=Todavía no ha finalizado ninguna carrera
|
||||
racesOverview=Resumen de carreras
|
||||
listFormatLabel=Formato de lista
|
||||
competitionFormatLabel=Formato de competición
|
||||
empty=Vacío
|
||||
runAQuery=Realice una consulta
|
||||
latestRegattaStandings=Últimas posiciones de la regata
|
||||
plainText=Texto sin formato
|
||||
columnChart=Gráfico de columnas
|
||||
columnChartWithErrorBars=Gráfico de columnas con barras de error
|
||||
choosePresentation=Seleccionar presentación
|
||||
cantDisplayDataOfType=No se pueden mostrar datos del tipo {0}
|
||||
shownDecimals=Decimales mostrados
|
||||
openFullscreenView=Abrir vista de pantalla completa
|
||||
closeFullscreenView=Cerrar vista de pantalla completa
|
||||
videosCount={0,number} vídeos
|
||||
@@ -1492,15 +1436,8 @@ photosCount[one]={0,number} foto
|
||||
eventsHaveTakenPlace=Han tenido lugar {0} eventos
|
||||
eventsHaveTakenPlace[one]=Ha tenido lugar un evento
|
||||
raceOffice=Oficina de carrera
|
||||
analyze=Analizar
|
||||
dataMiningSettings=Opciones de minería de datos
|
||||
multiResultsPresenter=Presentador de resultados múltiples
|
||||
plainResultsPresenter=Presentador de resultados simples
|
||||
resultsChart=Gráfico de resultados
|
||||
tabbedResultsPresenter=Presentador de resultados por pestañas
|
||||
polarResultsPresenter=Presentador de resultados de coordenadas polares
|
||||
maneuverSpeedDetailsResultsPresenter=Presentador de resultados detallados de velocidad de maniobra
|
||||
dataMiningRetrieval=Recuperación de datos
|
||||
actionWatch=Observar
|
||||
actionAnalyze=Analizar
|
||||
denoteAllRacesForRaceLogTrackingShorctut=Acceso directo para indicar todas las carreras para un rastreo de registro de carrera
|
||||
@@ -1516,24 +1453,8 @@ defaultName=Por defecto
|
||||
exampleTextForName=Su nombre aparece como:
|
||||
flightsCount={0,number} flights
|
||||
flightsCount[one]={0,number} flight
|
||||
viewQueryDefinition=Ver definición de consulta
|
||||
queryDefinitionViewer=Visor de definición de consulta
|
||||
groupAverageAscending=Promedio de grupo (ascendente)
|
||||
groupAverageDescending=Promedio de grupo (descendente)
|
||||
groupMedianAscending=Mediana de grupo (ascendente)
|
||||
groupMedianDescending=Mediana de grupo (descendente)
|
||||
resultsFoundForSearch={0,number} resultados encontrados para ''''{1}''''
|
||||
resultsFoundForSearch[one]={0,number} resultado encontrado para ''''{1}''''
|
||||
runPredefinedQuery=Ejecutar consulta predefinida
|
||||
selectPredefinedQuery=Seleccionar consulta predefinida
|
||||
predefinedQueryRunner=Programa de ejecución de consulta predefinida
|
||||
developerOptions=Opciones de desarrollador
|
||||
copyToClipboard=Copiar a portapapeles
|
||||
code=Código
|
||||
useClassGetName=Utilizar Class.getName() para nombres de tipo
|
||||
useClassGetNameTooltip=Más resistente frente a modificaciones en la base de código, pero el fragmento de código se puede utilizar solamente en el ámbito donde estén disponibles las clases.
|
||||
useStringLiterals=Utilizar literales de cadena para los nombres de tipo
|
||||
useStringLiteralsTooltip=El fragmento de código puede utilizarse en todas las ubicaciones, pero se romperá si se modifica la base de código.
|
||||
errorLoadingDataWithTryAgain=Error al cargar los datos. Inténtelo de nuevo más tarde.
|
||||
addGalleryPhoto=Añadir foto de galería
|
||||
addStageImage=Añadir imagen de etapa
|
||||
@@ -1553,7 +1474,6 @@ warningForDisabledCompetitors=Los siguientes competidores no se pueden registrar
|
||||
competitorToolTipMessage={0} ya ha sido asignado a la flota {2} en la carrera {3} y, por consiguiente, no se puede asignar a la flota {1} de la misma carrera
|
||||
addMarkToRegatta=Añadir marca a regata
|
||||
selectALeaderboardGroup=Seleccione un grupo de tablas de clasificación...
|
||||
pleaseSelect=Seleccione
|
||||
requiresValidRegatta=Esta página requiere una regata, una columna de carreras y un nombre de flota válidos para identificar la regata que se desea mostrar.
|
||||
couldNotObtainRace=No se ha podido obtener la regata con el nombre {1} para la flota {2} para una regata con el nombre {0}: {3}
|
||||
errorTryingToCreateEmbeddedMap=Error al intentar crear el mapa incrustado: {0}
|
||||
@@ -1833,30 +1753,9 @@ eventRegattaHeaderLegendGpsNo=No hay datos de rastreo
|
||||
eventRegattaHeaderLegendWindNo=No hay datos de viento
|
||||
eventRegattaHeaderLegendVideoNo=No hay transmisiones de vídeo
|
||||
eventRegattaHeaderLegendAudioNo=No hay transmisiones de audio
|
||||
angleInDegree=Ángulo en grado
|
||||
angleInRadian=Ángulo en radián
|
||||
centralAngleInRadian=Ángulo central en radián
|
||||
centralAngleInDegree=Ángulo central en grado
|
||||
kilometers=Kilómetros
|
||||
meters=Metros
|
||||
nauticalMiles=Millas náuticas
|
||||
seaMiles=Millas marinas
|
||||
geographicalMiles=Millas geográficas
|
||||
days=Días
|
||||
hours=Horas
|
||||
minutes=Minutos
|
||||
seconds=Segundos
|
||||
milliseconds=Milisegundos
|
||||
floatNumber=Flotador
|
||||
integer=Entero
|
||||
appendResult=Resultado de estructura append
|
||||
sampleColor=Muestra de color
|
||||
sharedSettingsLink=Enlace con opciones
|
||||
leaderboardPage=Página de clasificación
|
||||
makeDefault=Establecer como predeterminado
|
||||
makeDefaultInProgress=En curso...
|
||||
settingsSavedMessage=Sus opciones actuales se han definido correctamente como estándar
|
||||
settingsSaveErrorMessage=Se ha producido un error durante la definición de sus opciones como estándar
|
||||
showLiveNow=Mostrar "En directo ahora"
|
||||
useOnlyOneOfStartTimeInferenceAndControlTrackingFromStartAndFinishTimes=Utilice solo una "Inferencia de hora de inicio" y "Control de rastreo de horas de inicio y de fin"
|
||||
unknownLeaderboardType=Tipo de tabla de clasificación {0} desconocido
|
||||
@@ -1875,10 +1774,6 @@ settingsId=ID de opciones
|
||||
documentSettingsId=ID de opciones de documento
|
||||
settingsForId=Opciones para ID ''''{0}''''
|
||||
userProfileSettingsTabDescription=Las opciones del usuario se generan mediante los diálogos de opciones que se encuentran en varios puntos de la página. Esta vista muestra todas sus opciones agrupadas de una manera técnica para los usuarios expertos. Tenga en cuenta que las entradas eliminadas no se pueden restablecer, por lo que tenga precaución al utilizarlas.
|
||||
resetToDefault=Reinicializar a valores por defecto
|
||||
resetToDefaultInProgress=Reinicializando...
|
||||
settingsRemoved=Opciones por defecto restablecidas
|
||||
settingsRemovedError=No se han podido restablecer las opciones por defecto
|
||||
userSettingsFilter=Filtro de opciones
|
||||
requiresRegattaRaceAndLeaderboard=Esta página requiere un nombre de regata, un nombre de carrera y un nombre de tabla de clasificación válidos.
|
||||
couldNotFindRaceInRegatta=No se ha podido obtener la carrera con el nombre {0} para la regata con el nombre {1}
|
||||
@@ -1910,7 +1805,6 @@ errorFetchingDimensionData=Error al obtener los valores de dimensión de {0} : {
|
||||
errorFetchingStatistics=Error al obtener las estadísticas disponibles desde el servidor: {0}
|
||||
errorFetchingAggregators=Error al obtener los agregadores disponibles desde el servidor: {0}
|
||||
errorLoadingDataRetrieverChainDefinitions=Error al recuperar las DataRetrieverChainDefinitions disponibles: {0}
|
||||
errorFetchingComponentsChangedTimepoint=Error al obtener la fecha modificada de los componentes a partir del servidor: {0}
|
||||
errorRunningQuery=Error al ejecutar la consulta: {0}
|
||||
errorReadingWindFixes=Error al leer las correcciones de viento {0}
|
||||
errorAddingWindFixForRace=Error al añadir una corrección de viento para la carrera {0}: {1}
|
||||
@@ -1969,7 +1863,7 @@ anniversaryMajorCountdownTeaser[one]=Cuenta atrás. Solo falta {0,number,#,###}
|
||||
anniversaryMajorCountdownDescription=Estamos celebrando nuestra {0,number,#,###} carrera en www.sapsailing.com. ¿Qué carrera batirá la marca? El organizador de esta carrera de aniversario recibirá un total de 10 000 euros para fines benéficos. El ganador se anunciará en este sitio web. Estén atentos y cuenten con nosotros.
|
||||
anniversaryRepdigitCountdownTeaser=Cuenta atrás. Solo faltan {0,number,#,###} carreras hasta la {1,number,#,###} carrera.
|
||||
anniversaryRepdigitCountdownTeaser[one]=Cuenta atrás. Solo falta {0,number,#,###} carrera hasta la {1,number,#,###} carrera.
|
||||
anniversaryRepdigitCountdownDescription=Celebramos nuestra carrera del número afortunado. ¿Quién realizará la {0,number, #,###} carrera en www.sapsailing.com? Los participantes de esta carrera obtendrán un festival de verano gratuito de primera clase por parte de SAP. Los ganadores se anunciarán en este sitio web. Estén atentos y cuenten con nosotros.
|
||||
anniversaryRepdigitCountdownDescription=Celebramos nuestras carreras del número afortunado. ¿Quién realizará la {0,number, #,###} carrera en www.sapsailing.com? Los organizadores obtendrán una barbacoa gratuita con bebidas. Los ganadores se anunciarán en este sitio web. Estén atentos y cuenten con nosotros.
|
||||
anniversaryAnnouncementTeaser=Misión cumplida. {0,number,#,###} Carreras con SAP Sailing Analytics
|
||||
anniversaryAnnouncementDescription=3,2,1... Felicitamos a los participantes de la carrera {0}. ¡Lo conseguísteis! Os agradecemos vuestra confianza en SAP Sailing Analytics y esperamos continuar navegando más de 10 000 carreras con vosotros.
|
||||
anniversaryRaceLinkText=Mostrar carrera de aniversario
|
||||
@@ -1984,11 +1878,6 @@ minimumRideHeightInMetersTooltip=La altura de marcha mínima en metros requerida
|
||||
minimumDurationBetweenAdjacentFoilingSegmentsInSeconds=Duración mínima entre apéndice(s) de foil
|
||||
minimumDurationBetweenAdjacentFoilingSegmentsInSecondsTooltip=Si no está en blanco y el tiempo entre dos apéndices de foil adyacentes es inferior, aquellos apéndices de foil adyacentes se fusionarán en uno solo.
|
||||
needToProvideValidMinimumRideHeight=Requiere proporcionar un valor de altura de marcha mínimo válido en metros.
|
||||
dataMiningErrorMargins=Márgenes de error
|
||||
elements={0} elementos
|
||||
chooseDifferentDimensionTitle=Seleccione una dimensión diferente
|
||||
chooseDifferentDimensionMessage=Seleccione una dimensión diferente para agrupar resultados
|
||||
pleaseSelectADimension=Seleccione una dimensión
|
||||
currentPortDaggerboardRake=Inclinación de la orza de babor
|
||||
currentPortDaggerboardRakeTooltip=La inclinación actual de la orza de babor
|
||||
currentStbdDaggerboardRake=Inclinación de la orza de estribor
|
||||
@@ -2154,7 +2043,7 @@ multiVideoURLOfIndex=Inserte el URL de índice del servidor web
|
||||
multiVideoScan=Escanear índice
|
||||
multiVideoLinking=Añadir varios vídeos
|
||||
multiVideoNotAnalyzed=Vídeo aún por analizar
|
||||
multiVideoAlreadyKnown=Vídeo ya tiene pistas multimedia existentes
|
||||
multiVideoAlreadyKnown=Vídeo ya tiene rastreo de medios existente
|
||||
multiVideoClientIsUploading=Vídeo analizado mediante proxy de cliente
|
||||
multiVideoFinishedLinking=Vídeo enlazado
|
||||
multiVideoErrorInAnalyzingFile=Error al analizar el fichero
|
||||
@@ -2166,3 +2055,13 @@ multiVideoIdle=Cola de trabajo inactiva
|
||||
multiVideoDoNoAdd=No añadir
|
||||
multiVideoOffsetInput=Offset de vídeo global en milisegundos:
|
||||
multiVideoDescription=El servidor web debe proporcionar una lista de índices (subcarpetas compatibles si están indexadas) para permitir la detección de ficheros. Tras un análisis inicial de los metadatos contenidos en los ficheros mp4, los vídeos que deben añadirse, deben seleccionarse mediante la columna de la casilla de selección a la izquierda. El botón "Añadir audio/vídeo" creará pistas multimedia para todos los ficheros seleccionados y los añadirá a todas las carreras seleccionadas en la columna de la derecha.
|
||||
multiUrlChangeMediaTrack=Ajustar URLs de rastreo múltiple de medios
|
||||
multiUrlChangeReplace=Reemplazar por
|
||||
multiUrlChangeFind=Buscar
|
||||
multiUrlChangeCannotSave=Se ha producido un error al grabar
|
||||
multiUrlChangeSave=Grabar modificaciones de URL
|
||||
multiUrlChangeNewURL=URL nuevo
|
||||
multiUrlNoPrefixWarning=No existe ningún prefijo común, esto significa que normalmente no todos los vídeos seleccionados se alojan actualmente en la misma ubicación. Proceda bajo su propio riesgo.
|
||||
multiUrlChangeExplain=Este diálogo reemplazará en masa las partes comunes al inicio de los URLs del rastreo de medios. Asegúrate de que todas las URL empiezan con el mismo prefijo. Además, eche un vistazo a la nueva columna del URL, y pruebe los URLs resultantes antes de pulsar Grabar.
|
||||
lastEvent=Último evento: {0}
|
||||
teaserOverallLinkToolTip=Para visualizar las series generales, haga clic en la esquina amarilla
|
||||
|
||||
+14
-115
@@ -9,12 +9,10 @@ trackedBefore=Historique des manifestations suivies
|
||||
general=Généralités
|
||||
listRaces=Lister courses
|
||||
listRegattas=Lister régates
|
||||
numberPairResultsPresenter=Concentration points mesure
|
||||
wind=Vent
|
||||
maneuverType=Manœuvre
|
||||
windPanelLabel=Ceci est le panneau des mesures du vent, vide pour l''instant.
|
||||
refresh=Actualiser
|
||||
remove=Supprimer
|
||||
removeNumber=Supprimer ({0})
|
||||
windSource=Source du vent
|
||||
dampeningInterval=Intervalle d''atténuation
|
||||
@@ -53,7 +51,6 @@ trackedRaceConnectedToSelectedRaceName=Course suivie liée au nom de course sél
|
||||
linkToColumn=Lier à la colonne
|
||||
unlink=Annuler Lier
|
||||
leaderboardName=Nom du palmarès
|
||||
cancel=Annuler
|
||||
pleaseEnterAName=Saisissez un nom.
|
||||
pleaseEnterABoatClass=Saisissez une catégorie de bateau.
|
||||
discardRacesFromHowManyStartedRacesOn=Éliminez une course de plus en commençant au nombre de courses déjà lancées.
|
||||
@@ -65,7 +62,6 @@ startingFromNumberOfRaces=Début au nombre de courses
|
||||
renameLeaderboard=Renommer palmarès
|
||||
addColumnToLeaderboard=Ajouter colonne à palmarès
|
||||
pleaseEnterNameForNewRaceColumn=Saisissez un nom pour la nouvelle colonne de course.
|
||||
ok=OK
|
||||
medalRace=Course médaillée
|
||||
renameRace=Renommer course
|
||||
openSelectedLeaderboard=Ouvrir le palmarès sélectionné
|
||||
@@ -89,7 +85,6 @@ sapSailingAnalytics=Sailing Analytics
|
||||
leaderboard=Palmarès
|
||||
leaderboards=Palmarès
|
||||
leaderboardSettings=Options du palmarès
|
||||
settings=Options
|
||||
selectAtLeastOneLegDetail=Sélectionnez au moins un détail de portion de parcours.
|
||||
currentSpeedOverGroundInKnots=Vf
|
||||
currentSpeedOverGroundInKnotsTooltip=La vitesse fond actuelle.
|
||||
@@ -172,7 +167,6 @@ tacks=Virements
|
||||
jibes=Changements d''amure
|
||||
penaltyCircles=Tours de pénalité
|
||||
medalRaceIsNull=Valeur de course à la médaille non autorisée
|
||||
configuration=Configuration
|
||||
maneuverTypes=Manœuvres
|
||||
chooseChart=Sélectionner graphique
|
||||
distanceTraveled=Distance parcourue
|
||||
@@ -190,13 +184,11 @@ secondsPerNauticalMileUnit=s/NM
|
||||
metersUnit=m
|
||||
millimetersUnit=mm
|
||||
degreesUnit=°
|
||||
close=Fermer
|
||||
compareCompetitors=Comparer concurrents
|
||||
description=Description
|
||||
sailNumber=Numéro de voile
|
||||
country=Pays
|
||||
no3LetterCodes=Codes CIO à trois lettres introuvables
|
||||
add=Ajouter
|
||||
delete=Supprimer
|
||||
showCharts=Afficher graphiques
|
||||
raceWithThisNameAlreadyExists=Une course de ce nom existe déjà.
|
||||
@@ -268,7 +260,6 @@ printHint=Imprime la version appliquée
|
||||
blockedApplyButton=Le nombre de concurrents inscrits ne correspond pas au nombre de concurrents de la liste d''appariement.
|
||||
multiplierInfo=Multipliez les flights et créez-les les uns après les autres pour obtenir une compétition avec le moins de bateaux possible.
|
||||
noPairingListAvailable=La fonction d''impression est uniquement disponible lorsqu''une liste d''appariement a déjà été appliquée aux journaux de course des palmarès sélectionnés.
|
||||
settingsForComponent=Options pour {0}
|
||||
noEventsFound=Aucune manifestation trouvée
|
||||
noEventSelected=Aucune manifestation sélectionnée
|
||||
noLeaderboardsFound=Aucun palmarès trouvé
|
||||
@@ -306,8 +297,6 @@ leaderboardGroup=Groupe de palmarès
|
||||
pleaseEnterNonEmptyDescription=Saisissez une description (ne pas laisser vide).
|
||||
groupWithThisNameAlreadyExists=Un groupe de palmarès de ce nom existe déjà.
|
||||
detailsOfLeaderboardGroup=Détails du groupe de palmarès
|
||||
edit=Modifier
|
||||
save=Enregistrer
|
||||
abort=Abandonner
|
||||
noLeaderboardGroupWithNameFound=Aucun groupe de palmarès ayant pour nom {0} n''a été trouvé.
|
||||
overview=Synthèse
|
||||
@@ -342,7 +331,6 @@ degreesShort=deg
|
||||
untracked=Non suivi
|
||||
delayForLiveMode=Décalage pour mode en direct
|
||||
notAvailable=Non disponible
|
||||
details=Détails
|
||||
noGroupSelected=Aucun groupe sélectionné
|
||||
combinedWindSourceTypeName=Combiné
|
||||
legMiddleWindSourceTypeName=Milieu de la portion de parcours
|
||||
@@ -424,7 +412,6 @@ simulateAsLiveRace=Simulation de course en direct
|
||||
simulateWithOffset=Décalage avant le départ (en minutes) :
|
||||
boatClassDoesNotMatchSelectedRegatta=Les courses sélectionnées contiennent des catégories de bateaux qui ne sont pas identiques à la catégorie de bateau "{0}" de la régate sélectionnée. Aucune course ne sera chargée.
|
||||
regattaExistForSelectedBoatClass=Il existe au moins une régate pour les catégories de bateaux sélectionnées. Voulez-vous vraiment créer une (des) régate(s) pour cette (ces) course(s) ?
|
||||
reload=Recharger
|
||||
addRegatta=Ajouter régate...
|
||||
importRegattas=Importer régates...
|
||||
exchangeName=Nom d''échange
|
||||
@@ -646,7 +633,6 @@ totalNetPointsColumnTooltip=Total net des points d''un concurrent dans la régat
|
||||
windData=Données de vent
|
||||
gpsData=Données GPS
|
||||
status=Statut
|
||||
noDataFound=Aucune donnée trouvée
|
||||
displayName=Afficher nom
|
||||
histogram=Histogramme
|
||||
numberOfDataPoints=Nombre de points de données
|
||||
@@ -894,12 +880,9 @@ legType=Type de portion de parcours
|
||||
sailID=Numéro de voile
|
||||
seriesLeaderboard=Palmarès de la série
|
||||
regattaLeaderboards=Palmarès de la régate
|
||||
clearSelection=Réinitialiser sélection
|
||||
running=En cours d''exécution
|
||||
runAsSubstantive=Exécuter
|
||||
done=Terminé
|
||||
lastFinished=Fin de dernière exécution
|
||||
run=Exécuter
|
||||
times=durées
|
||||
dataAmount=Volume de données
|
||||
averageCleanedServerTime=∅ Durée de nettoyage du serveur
|
||||
@@ -923,12 +906,8 @@ selectSheet=Sélectionner fiche
|
||||
cleanedServerTime=Durée de nettoyage du serveur
|
||||
overallTime=Durée globale
|
||||
cleanedOverallTime=Durée globale de nettoyage
|
||||
dataMiningResult=Résultat d''exploration de données
|
||||
groupBy=Regrouper par
|
||||
statisticToCalculate=Calculer statistiques
|
||||
queryResultsChartSubtitle={0} entrées de données analysées en {1} secondes
|
||||
noQuerySelected=Aucune requête sélectionnée
|
||||
runAutomatically=Exécuter automatiquement
|
||||
windImport_Upload=Charger
|
||||
windImport_Title=Importer vent à partir de Expedition
|
||||
windImport_BoatId=N° du bateau :
|
||||
@@ -958,14 +937,9 @@ raceTimeTooltip=Durée de navigation totale dans cette course, chronométrée à
|
||||
raceTimeDownwindTooltip=Durée totale de navigation vent arrière dans cette course
|
||||
raceTimeReachingTooltip=Durée totale de navigation jusqu''à l''arrivée dans cette course
|
||||
raceTimeUpwindTooltip=Durée totale de navigation dans le lit du vent dans cette course
|
||||
noStatisticSelectedError=Aucune statistique à calculer sélectionnée
|
||||
noCustomGrouperScriptTextError=Script de regroupement vide
|
||||
noDimensionToGroupBySelectedError=Aucune dimension sélectionnée pour le regroupement
|
||||
noGrouperSelectedError=Aucun type de regroupement sélectionné
|
||||
noDataRetrieverChainDefinitonSelectedError=Aucun récupérateur de données sélectionné
|
||||
queryNotValidBecause=Aucune requête possible dû à
|
||||
dataMining=Exploration de données
|
||||
errorRunningDataMiningQuery=Une erreur s''est produite lors de l''exécution de la requête.
|
||||
hideToolbar=Masquer barre d''outils
|
||||
showSeriesLeaderboards=Afficher palmarès de la série
|
||||
showOverallLeaderboard=Afficher palmarès général
|
||||
@@ -988,7 +962,6 @@ id=ID
|
||||
allowReload=Autoriser rechargement
|
||||
compress=Comprimer
|
||||
compressTooltip=Utiliser seulement si l''instance de serveur d''exportation \ns''exécute au moins avec le commit 0fbf6071dea125bec4a56dee55d61c99def4a62e.
|
||||
queryRunner=Outil d''exécution de requêtes
|
||||
rerunQueryAfterRefresh=Exécuter la requête de nouveau après l''actualisation
|
||||
refreshIntervalMustntBeEmpty=L''intervalle d''actualisation ne doit pas être vide.
|
||||
selectionTables=Tables de sélection
|
||||
@@ -1073,12 +1046,7 @@ TWATooltip=L''angle entre la direction du concurrent et le vent.
|
||||
TWA=Angle du vent réel
|
||||
showBoatClassChartsLabel=Vous pouvez également afficher le diagramme global pour les catégories de bateau disponibles.
|
||||
showDiagram=Afficher diagramme
|
||||
runAutomaticallyTooltip=Exécutez la requête automatiquement, par exemple après avoir modifié les statistiques ou le regroupement.
|
||||
rerunQueryAfterRefreshTooltip=Réexécute la requête après l''actualisation des tables.
|
||||
queryDefinitionProvider=Fournisseur de définitions de requêtes
|
||||
statisticProvider=Fournisseur de statistiques
|
||||
calculateThe=Calculer le/la
|
||||
groupingProvider=Fournisseur de regroupements
|
||||
releaseNotes=Historique de versions et nouveautés
|
||||
hasSplitFleetContiguousScoring=Les flottes divisées ont obtenu des scores contigus.
|
||||
addRaceLogTracker=Ajouter tracker de journal de course
|
||||
@@ -1236,7 +1204,6 @@ showAll=Afficher tout
|
||||
raceVisibilityColumn=Visibilité
|
||||
enterCarryValueFor=Saisissez les points accumulés par le concurrent {0}.
|
||||
advanced=Avancé
|
||||
basedOn=basé sur
|
||||
retrieveWith=Récupérer avec
|
||||
mappingDetails=Détails du mappage
|
||||
deviceMappingQrCodeExplanation=Si vous utilisez l''application de suivi, vous pouvez également ajouter le mappage de l''appareil en sélectionnant un concurrent/une marque, en définissant des heures de départ et d''arrivée et en scannant ce code QR.
|
||||
@@ -1247,10 +1214,6 @@ enterImageURL=Saisissez l''URL de l''image...
|
||||
enterVideoURL=Saisissez l''URL de la vidéo...
|
||||
enterSponsorImageURL=Saisissez l''URL de l''image du sponsor...
|
||||
enterRaceName=Saisissez le nom du parcours...
|
||||
serverError=Une erreur s''est produite lors de la tentative de contact du serveur. Vérifiez la connexion réseau et réessayez.
|
||||
remoteProcedureCall=Procédure d''appel distante
|
||||
serverReplies=Réponses du serveur
|
||||
errorCommunicatingWithServer=Erreur lors de la communication avec le serveur
|
||||
userManagement=Gestion des utilisateurs
|
||||
regattaStructureImport=Importation de la structure de la régate
|
||||
filteredBy=filtré par
|
||||
@@ -1278,7 +1241,6 @@ noFleetsDefined=Aucune flotte définie
|
||||
successfullyCreatedRegattas=Création des régates réussie
|
||||
errorTryingToRegisterRacesForTracking=Erreur lors de la tentative d''enregistrement des courses {0} pour le suivi : {1}. Vérifiez la syntaxe de l''URL stockée/du direct.
|
||||
errorDeterminingPolarAvailability=Erreur lors de la détermination de la disponibilité des données polaires/VPP pour la course {0} : {1}
|
||||
error=Erreur
|
||||
fileStorage=Stockage du fichier
|
||||
active=Actif
|
||||
scoringSchemeHighPointEssOverallDescription=Score en points. Le vainqueur d''un Act totalise 10 points, le 2e - 9 points, etc. En cas d''égalité au classement général des Extreme Sailing Series, la victoire est accordée au concurrent ayant remporté le plus d''Act. Si l''égalité persiste, le résultat obtenu au dernier Act sera utilisé.
|
||||
@@ -1319,7 +1281,6 @@ showCompetitorFullNameColumn=Nom complet du concurrent
|
||||
showCompetitorNationalityColumn=Afficher toujours la nationalité du concurrent
|
||||
showCompetitorNationalityColumnTooltip=Si disponibles, afficher les deux : le drapeau national ainsi que l''image du concurrent
|
||||
loadingDimensionValues=Chargement des valeurs de dimension
|
||||
runningQuery=Requête en cours
|
||||
inviteBuoyTenders=Inviter navire baliseur
|
||||
orMultipleEmails=ou plusieurs adresses e-mails séparées par des virgules
|
||||
courseOverGroundTrueDegreesTooltip=Route fond vraie en degrés
|
||||
@@ -1327,11 +1288,6 @@ courseOverGroundTrueDegrees=Route fond
|
||||
distanceIncludingGateStartInMeters=Distance (si départ au lièvre)
|
||||
distanceTraveledIncludingGateStartTooltip=La distance naviguée du départ de la portion de parcours jusqu''à sa fin\nou jusqu''à l''heure actuelle (si la portion de parcours n''est pas terminée).\nSi la portion de parcours inclut un départ au lièvre, la distance de la bouée de ligne jusqu''à la position de départ est incluse \npour permettre de comparer les concurrents même si leur départ ne s''est pas fait à la même heure.
|
||||
raceDistanceTraveledIncludingGateStartTooltip=La distance naviguée du départ de la course jusqu''à sa fin\nou jusqu''à l''heure actuelle (si la course n''est pas terminée).\nEn cas de départ au lièvre, la distance de la bouée de ligne jusqu''à la position de départ est incluse \npour permettre de comparer les concurrents même si leur départ ne s''est pas fait à la même heure.
|
||||
results=Résultats
|
||||
groupName=Nom du groupe
|
||||
valueAscending=Valeur (ascendant)
|
||||
valueDescending=Valeur (descendant)
|
||||
sortBy=Trier par
|
||||
dashboardHeader=Tableau de bord
|
||||
dashboardNoWindBotAvailableHeader=Le bot du vent n''est pas disponible.
|
||||
dashboardNoWindBotAvailableMessage=Pour pouvoir recevoir des données de vent depuis des unités de mesure du vent, assurez-vous que le bot du vent est allumé et connecté à SAP Sailing Analytics.
|
||||
@@ -1367,16 +1323,12 @@ dashboardRCBoat=Bateau du comité de course
|
||||
fixedMarkPassing=(fixé)
|
||||
suppressedMarkPassing=(supprimé)
|
||||
windUp=Orienté par rapport au sens du vent (le vent vient du haut de la carte)
|
||||
filterBy=Filtrer par
|
||||
currentFilterSelection=Sélection du filtre actuel
|
||||
notCapableOfGeneratingACodeForIdentifier=Je ne suis pas capable de générer un code pour cet identifiant.
|
||||
serverUrl=URL du serveur
|
||||
rotatedFromTrueNorth=Pivoté de {0} degrés à partir du vrai Nord.
|
||||
clickToToggleWindUp=Touchez/Cliquez pour basculer entre l''affichage orienté nord et l''affichage par rapport au sens du vent
|
||||
clickToToggleWindStreamlets=Touchez/cliquez pour afficher ou masquer les couloirs de vent.
|
||||
startLineToFirstMarkTriangle=Distance entre le départ et la première marque ({0} m)
|
||||
dataMiningComponentsHaveBeenUpdated=Les composants d''exploration de données ont été mis à jour.
|
||||
dataMiningComponentsNeedReloadDialogMessage=Cliquez sur Recharger pour recharger les composants maintenant. Les données actuellement affichées seront ignorées et une requête par défaut sera exécutée.n\Cliquez sur Fermer pour ne rien faire. L''exploration de données ne fonctionnera pas correctement tant que les composants n''auront pas été rechargés.
|
||||
noDataForEvent=Il n''y a pas encore de données pour cette manifestation.
|
||||
countriesCount={0,number} pays
|
||||
countriesCount[one]={0,number} pays
|
||||
@@ -1474,15 +1426,7 @@ noFinishedRaces=Aucune course terminée pour l''instant.
|
||||
racesOverview=Synthèse des courses
|
||||
listFormatLabel=Format de liste
|
||||
competitionFormatLabel=Format de compétition
|
||||
empty=Vide
|
||||
runAQuery=Exécuter une requête
|
||||
latestRegattaStandings=Classement de régate le plus récent
|
||||
plainText=Texte brut
|
||||
columnChart=Diagramme à colonnes
|
||||
columnChartWithErrorBars=Diagramme à colonnes avec barres d''erreur
|
||||
choosePresentation=Sélectionner la présentation
|
||||
cantDisplayDataOfType=Affichage des données du type {0} impossible
|
||||
shownDecimals=Nombre de décimales
|
||||
openFullscreenView=Ouvrir le mode Plein écran
|
||||
closeFullscreenView=Fermer le mode Plein écran
|
||||
videosCount={0,number} vidéos
|
||||
@@ -1492,15 +1436,8 @@ photosCount[one]={0,number} photo
|
||||
eventsHaveTakenPlace={0} manifestations ont eu lieu.
|
||||
eventsHaveTakenPlace[one]=Une manifestation a eu lieu.
|
||||
raceOffice=Bureau de course
|
||||
analyze=Analyser
|
||||
dataMiningSettings=Options de l''exploration de données
|
||||
multiResultsPresenter=Visualiseur de résultats multiples
|
||||
plainResultsPresenter=Visualiseur de résultats bruts
|
||||
resultsChart=Graphique des résultats
|
||||
tabbedResultsPresenter=Visualiseur de résultats avec onglets
|
||||
polarResultsPresenter=Visualiseur de résultats polaires
|
||||
maneuverSpeedDetailsResultsPresenter=Visualiseur des résultats : détails sur la vitesse lors de la manœuvre
|
||||
dataMiningRetrieval=Récupération de données
|
||||
actionWatch=Regarder
|
||||
actionAnalyze=Analyser
|
||||
denoteAllRacesForRaceLogTrackingShorctut=Raccourci pour marquer toutes les courses pour le suivi par journaux de course
|
||||
@@ -1516,24 +1453,8 @@ defaultName=Par défaut
|
||||
exampleTextForName=Votre nom apparaît de la manière suivante :
|
||||
flightsCount={0,number} départs de deux équipages
|
||||
flightsCount[one]={0,number} départ de deux équipages
|
||||
viewQueryDefinition=Afficher la définition de la requête
|
||||
queryDefinitionViewer=Visualiseur de définitions de requête
|
||||
groupAverageAscending=Moyenne du groupe (ascendant)
|
||||
groupAverageDescending=Moyenne du groupe (descendant)
|
||||
groupMedianAscending=Médiane du groupe (ascendant)
|
||||
groupMedianDescending=Médiane du groupe (descendant)
|
||||
resultsFoundForSearch={0,number} résultats trouvés pour "{1}"
|
||||
resultsFoundForSearch[one]={0,number} résultat trouvé pour "{1}"
|
||||
runPredefinedQuery=Exécuter requête prédéfinie
|
||||
selectPredefinedQuery=Sélectionner requête prédéfinie
|
||||
predefinedQueryRunner=Outil d''exécution de requêtes prédéfinies
|
||||
developerOptions=Options développeur
|
||||
copyToClipboard=Copier dans le presse-papiers
|
||||
code=Code
|
||||
useClassGetName=Utilisez Class.getName() pour les noms des types.
|
||||
useClassGetNameTooltip=Plus stable face aux modifications dans la base de code, mais le fichier de script peut uniquement être utilisé dans l''étendue où les classes sont disponibles.
|
||||
useStringLiterals=Utiliser littéraux de chaîne pour les noms de types
|
||||
useStringLiteralsTooltip=Le fichier de script peut être utilisé partout, mais sera corrompu si la base de code change.
|
||||
errorLoadingDataWithTryAgain=Erreur lors du chargement des données. Nouvel essai dans quelques minutes.
|
||||
addGalleryPhoto=Ajouter photo de la galerie
|
||||
addStageImage=Ajouter image d''étape
|
||||
@@ -1553,7 +1474,6 @@ warningForDisabledCompetitors=Les concurrents suivants ne peuvent pas être insc
|
||||
competitorToolTipMessage={0} a déjà été affecté à la flotte {2} dans la course {3} et ne peut donc pas être affecté à la flotte {1} dans la même course.
|
||||
addMarkToRegatta=Ajouter marque à la régate
|
||||
selectALeaderboardGroup=Sélectionner groupe de palmarès…
|
||||
pleaseSelect=Sélectionnez
|
||||
requiresValidRegatta=Pour identifier la course à afficher, cette page nécessite une régate valide, une colonne de course et un nom de flotte.
|
||||
couldNotObtainRace=Impossible de trouver une course ayant le nom {1} pour la flotte {2} pour une régate ayant le nom {0} : {3}
|
||||
errorTryingToCreateEmbeddedMap=Erreur lors de la tentative de création de la carte intégrée : {0}
|
||||
@@ -1833,30 +1753,9 @@ eventRegattaHeaderLegendGpsNo=Aucune donnée de suivi
|
||||
eventRegattaHeaderLegendWindNo=Aucune donnée de vent
|
||||
eventRegattaHeaderLegendVideoNo=Aucun flux vidéo
|
||||
eventRegattaHeaderLegendAudioNo=Aucun flux audio
|
||||
angleInDegree=Angle en degrés
|
||||
angleInRadian=Angle en radians
|
||||
centralAngleInRadian=Angle au centre en radians
|
||||
centralAngleInDegree=Angle au centre en degrés
|
||||
kilometers=Kilomètres
|
||||
meters=Mètres
|
||||
nauticalMiles=Milles nautiques
|
||||
seaMiles=Milles marins
|
||||
geographicalMiles=Milles géographiques
|
||||
days=Jours
|
||||
hours=Heures
|
||||
minutes=Minutes
|
||||
seconds=Secondes
|
||||
milliseconds=Millisecondes
|
||||
floatNumber=Flottant
|
||||
integer=Entier
|
||||
appendResult=Ajouter résultat
|
||||
sampleColor=Échantillon de couleur
|
||||
sharedSettingsLink=Lier aux options
|
||||
leaderboardPage=Page du palmarès
|
||||
makeDefault=Définir par défaut
|
||||
makeDefaultInProgress=En cours...
|
||||
settingsSavedMessage=Vos options actuelles ont correctement été définies comme options par défaut.
|
||||
settingsSaveErrorMessage=Une erreur s''est produite lors de la définition de vos options comme options par défaut.
|
||||
showLiveNow=Afficher "En direct"
|
||||
useOnlyOneOfStartTimeInferenceAndControlTrackingFromStartAndFinishTimes=Utilisez "Interférence temporelle de départ" ou bien "Contrôler suivi à partir des heures de départ et d''arrivée", mais pas les deux.
|
||||
unknownLeaderboardType=Type de palmarès {0} inconnu
|
||||
@@ -1875,10 +1774,6 @@ settingsId=ID d''options
|
||||
documentSettingsId=ID d''options du document
|
||||
settingsForId=Options pour l''ID "{0}"
|
||||
userProfileSettingsTabDescription=Les options utilisateur sont générées dans des boîtes de dialogues pour options que vous trouverez à de nombreux endroits sur la page. Cette vue montre toutes vos options regroupées pour les mettre techniquement à disposition des utilisateurs de référence. Soyez prudent : les entrées supprimées ne peuvent pas être restaurées.
|
||||
resetToDefault=Réinitialiser sur les valeurs par défaut
|
||||
resetToDefaultInProgress=Réinitialisation en cours...
|
||||
settingsRemoved=Options par défaut restaurées
|
||||
settingsRemovedError=Impossible de restaurer les options par défaut
|
||||
userSettingsFilter=Filtre d''options
|
||||
requiresRegattaRaceAndLeaderboard=Cette page requiert un nom de régate, un nom de course et un nom de palmarès valides.
|
||||
couldNotFindRaceInRegatta=Impossible de trouver une course nommée {0} pour une régate nommée {1}.
|
||||
@@ -1910,7 +1805,6 @@ errorFetchingDimensionData=Erreur lors de l''accès aux valeurs de dimension de
|
||||
errorFetchingStatistics=Erreur lors de l''accès aux statistiques disponibles du serveur : {0}
|
||||
errorFetchingAggregators=Erreur lors de l''accès aux agrégateurs disponibles du serveur : {0}
|
||||
errorLoadingDataRetrieverChainDefinitions=Erreur lors de la récupération des définitions DataRetrieverChainDefinitions disponibles : {0}
|
||||
errorFetchingComponentsChangedTimepoint=Erreur lors de la récupération de l''heure modifiée du composant du serveur : {0}
|
||||
errorRunningQuery=Erreur lors de l''exécution de la requête : {0}
|
||||
errorReadingWindFixes=Erreur lors de la lecture des points vent {0}
|
||||
errorAddingWindFixForRace=Erreur lors de l''ajout d''un point vent pour la course {0} : {1}
|
||||
@@ -1969,7 +1863,7 @@ anniversaryMajorCountdownTeaser[one]=Attention ! Plus qu''{0,number,#,###} cour
|
||||
anniversaryMajorCountdownDescription=Nous célébrons notre {0,number,#,###}e course sur www.sapsailing.com ! Quelle sera cette course ? L''organisateur de cette course anniversaire recevra 10 000 euros au profit de l''association caritative de son choix. Le gagnant sera annoncé sur ce site Web. Restez connecté et ne ratez pas le compte à rebours !
|
||||
anniversaryRepdigitCountdownTeaser=Attention ! Plus que {0,number,#,###} courses avant la {1,number,#,###}e course.
|
||||
anniversaryRepdigitCountdownTeaser[one]=Attention ! Plus qu''{0,number,#,###} course avant la {1,number,#,###}e course.
|
||||
anniversaryRepdigitCountdownDescription=Nous célébrons notre numéro de course porte-bonheur ! Qui effectuera la {0,number, #,###}e course sur www.sapsailing.com ? Les participants de cette course seront invités à un festival d''été de haut niveau par SAP. Les gagnants seront annoncés sur ce site Web. Restez connecté et ne ratez pas le compte à rebours !
|
||||
anniversaryRepdigitCountdownDescription=Nous célébrons notre numéro de course porte-bonheur ! Qui effectuera la {0,number, #,###}e course sur www.sapsailing.com ? Les organisateurs se verront offrir un barbecue et des boissons. Les gagnants seront annoncés sur ce site Web. Restez connecté et ne ratez pas le compte à rebours !
|
||||
anniversaryAnnouncementTeaser=Mission accomplie ! {0,number,#,###} courses avec SAP Sailing Analytics !
|
||||
anniversaryAnnouncementDescription=3, 2, 1... Félicitation aux participants de la course {0}. Vous avez gagné ! Nous vous remercions pour la confiance que vous accordez à SAP Sailing Analytics et nous espérons partager encore de nombreuses courses avec vous !
|
||||
anniversaryRaceLinkText=Afficher la course anniversaire
|
||||
@@ -1984,11 +1878,6 @@ minimumRideHeightInMetersTooltip=Hauteur de planing minimale requise en mètres
|
||||
minimumDurationBetweenAdjacentFoilingSegmentsInSeconds=Durée minimum (s) entre deux tronçons en planing adjacents
|
||||
minimumDurationBetweenAdjacentFoilingSegmentsInSecondsTooltip=Si cette valeur est renseignée et que la durée entre deux tronçons de planing adjacents est inférieure à celle-ci, ces tronçons de planing adjacents seront combinés en un seul.
|
||||
needToProvideValidMinimumRideHeight=Vous devez fournir une valeur de hauteur de planing minimale valide en mètres.
|
||||
dataMiningErrorMargins=Marges d''erreur
|
||||
elements={0} éléments
|
||||
chooseDifferentDimensionTitle=Sélectionnez une dimension différente.
|
||||
chooseDifferentDimensionMessage=Sélectionnez une dimension différente pour regrouper les résultats.
|
||||
pleaseSelectADimension=Sélectionnez une dimension.
|
||||
currentPortDaggerboardRake=Inclinaison de la dérive bâbord
|
||||
currentPortDaggerboardRakeTooltip=Inclinaison actuelle de la dérive bâbord
|
||||
currentStbdDaggerboardRake=Inclinaison de la dérive tribord
|
||||
@@ -2096,9 +1985,9 @@ expeditionAws=eAWS
|
||||
expeditionTwa=eTWA
|
||||
expeditionTws=eTWS
|
||||
expeditionTwd=eTWD
|
||||
expeditionTargTwa=eTWA cible
|
||||
expeditionBoatSpeed=eVitesse du bateau
|
||||
expeditionTargBoatSpeed=eVitesse du bateau cible
|
||||
expeditionTargTwa=eTarget TWA
|
||||
expeditionBoatSpeed=eBoat speed
|
||||
expeditionTargBoatSpeed=eTarget boat speed
|
||||
expeditionBsSog=eVB Vf
|
||||
expeditionSOG=eVf
|
||||
expeditionCOG=eRf
|
||||
@@ -2166,3 +2055,13 @@ multiVideoIdle=La réserve de travail est inactive.
|
||||
multiVideoDoNoAdd=Ne pas ajouter
|
||||
multiVideoOffsetInput=Décalage vidéo global en millisecondes :
|
||||
multiVideoDescription=Le serveur Web doit fournir une liste des index (les sous-dossiers sont pris en charge s''ils sont répertoriés) pour permettre la détection de fichier. Après une analyse initiale des métadonnées contenues dans les fichiers MP4, les vidéos à ajouter doivent être sélectionnées en cochant les cases correspondantes dans la colonne de gauche. Le bouton "Ajouter audio/vidéo" va créer des pistes médias pour tous les fichiers sélectionnés, et ajouter ces fichiers à toutes les courses sélectionnées dans la colonne de droite.
|
||||
multiUrlChangeMediaTrack=Ajuster plusieurs URL de piste média
|
||||
multiUrlChangeReplace=Remplacer par
|
||||
multiUrlChangeFind=Rechercher
|
||||
multiUrlChangeCannotSave=Une erreur s''est produite lors de la sauvegarde.
|
||||
multiUrlChangeSave=Sauvegarder modifications apportées aux URL
|
||||
multiUrlChangeNewURL=Nouvelle URL
|
||||
multiUrlNoPrefixWarning=Aucun préfixe commun n''a été trouvé. Cela signifie généralement que les vidéos sélectionnées ne sont actuellement pas toutes hébergées au même endroit. Vous assumez les risques liés à leur utilisation.
|
||||
multiUrlChangeExplain=Cette boîte de dialogue remplacera en masse les éléments communs au début des URL de piste média. Assurez-vous que toutes les URL commencent par le même préfixe. Veuillez également prendre le temps d''observer la nouvelle colonne d''URL, et de tester les URL résultantes avant de sauvegarder.
|
||||
lastEvent=Dernier événement : {0}
|
||||
teaserOverallLinkToolTip=Pour afficher l''ensemble des séries, cliquez sur le coin jaune.
|
||||
|
||||
+11
-112
@@ -9,12 +9,10 @@ trackedBefore=追跡イベントの履歴
|
||||
general=一般
|
||||
listRaces=レース一覧
|
||||
listRegattas=レガッタ一覧
|
||||
numberPairResultsPresenter=散布図
|
||||
wind=風
|
||||
maneuverType=マニューバー
|
||||
windPanelLabel=これは風パネルであり、今のところ完全に空となっています。
|
||||
refresh=リフレッシュ
|
||||
remove=削除
|
||||
removeNumber=削除 ({0})
|
||||
windSource=風源
|
||||
dampeningInterval=制動間隔
|
||||
@@ -53,7 +51,6 @@ trackedRaceConnectedToSelectedRaceName=選択されたレース名に結び付
|
||||
linkToColumn=列にリンク
|
||||
unlink=リンク解除
|
||||
leaderboardName=リーダーボード名
|
||||
cancel=取消
|
||||
pleaseEnterAName=名称を入力してください
|
||||
pleaseEnterABoatClass=艇種を入力してください
|
||||
discardRacesFromHowManyStartedRacesOn=レース除外 (スタート済レースから)
|
||||
@@ -65,7 +62,6 @@ startingFromNumberOfRaces=レース数から開始
|
||||
renameLeaderboard=リーダーボード名称変更
|
||||
addColumnToLeaderboard=リーダーボードに列を追加
|
||||
pleaseEnterNameForNewRaceColumn=新規レース列の名称を入力してください
|
||||
ok=OK
|
||||
medalRace=メダルレース
|
||||
renameRace=レース名称変更
|
||||
openSelectedLeaderboard=選択したリーダーボードを開く
|
||||
@@ -89,7 +85,6 @@ sapSailingAnalytics=Sailing Analytics
|
||||
leaderboard=リーダーボード
|
||||
leaderboards=リーダーボード
|
||||
leaderboardSettings=リーダーボード設定
|
||||
settings=設定
|
||||
selectAtLeastOneLegDetail=レグ詳細を少なくとも 1 つ選択
|
||||
currentSpeedOverGroundInKnots=SOG
|
||||
currentSpeedOverGroundInKnotsTooltip=現在の対地速力です。
|
||||
@@ -172,7 +167,6 @@ tacks=タック
|
||||
jibes=ジャイブ
|
||||
penaltyCircles=ペナルティーサークル
|
||||
medalRaceIsNull=メダルレース値は不可
|
||||
configuration=設定
|
||||
maneuverTypes=マニューバー
|
||||
chooseChart=チャートの選択
|
||||
distanceTraveled=移動した距離
|
||||
@@ -190,13 +184,11 @@ secondsPerNauticalMileUnit=s/NM
|
||||
metersUnit=m
|
||||
millimetersUnit=mm
|
||||
degreesUnit=°
|
||||
close=閉じる
|
||||
compareCompetitors=競技者比較
|
||||
description=内容説明
|
||||
sailNumber=セールナンバー
|
||||
country=国
|
||||
no3LetterCodes=IOC 3 文字コードを検索できませんせした。
|
||||
add=追加
|
||||
delete=削除
|
||||
showCharts=チャート表示
|
||||
raceWithThisNameAlreadyExists=その名称のレースはすでに登録されています。
|
||||
@@ -268,7 +260,6 @@ printHint=適用バージョンを印刷
|
||||
blockedApplyButton=登録されている競技者数が対戦表にある競技者数と同じでありません
|
||||
multiplierInfo=複数のフライトを艇変更がより少なく競技が可能となるよう互いに隣り合わせに作成
|
||||
noPairingListAvailable=印刷機能は選択したリーダーボードレースログに対戦表がすでに適用されている場合にのみ利用が可能です。
|
||||
settingsForComponent={0} の設定
|
||||
noEventsFound=イベントが見つかりませんでした
|
||||
noEventSelected=イベントが選択されていません
|
||||
noLeaderboardsFound=リーダーボードが見つかりませんでした
|
||||
@@ -306,8 +297,6 @@ leaderboardGroup=リーダーボードグループ
|
||||
pleaseEnterNonEmptyDescription=空でない説明を入力してください
|
||||
groupWithThisNameAlreadyExists=この名称のリーダーボードグループはすでに登録されています。
|
||||
detailsOfLeaderboardGroup=リーダーボードグループの詳細
|
||||
edit=編集
|
||||
save=保存
|
||||
abort=中止
|
||||
noLeaderboardGroupWithNameFound={0} という名称のリーダーボードグループは見つかりませんでした
|
||||
overview=概要
|
||||
@@ -342,7 +331,6 @@ degreesShort=度
|
||||
untracked=未追跡
|
||||
delayForLiveMode=ライブモードの遅延:
|
||||
notAvailable=利用不可
|
||||
details=詳細
|
||||
noGroupSelected=グループ未選択
|
||||
combinedWindSourceTypeName=複合
|
||||
legMiddleWindSourceTypeName=レグの中間
|
||||
@@ -424,7 +412,6 @@ simulateAsLiveRace=ライブレースとしてシミュレート
|
||||
simulateWithOffset=スタート前のオフセット (分):
|
||||
boatClassDoesNotMatchSelectedRegatta=選択したレースに、選択したレガッタの艇種 ''{0}'' と同じでない艇種が含まれています。レースはロードされません。
|
||||
regattaExistForSelectedBoatClass=選択した艇種に対して少なくとも 1 つのレガッタがあります。このレースに対してレガッタを初期登録しますか。
|
||||
reload=リロード
|
||||
addRegatta=レガッタ追加...
|
||||
importRegattas=レガッタのインポート...
|
||||
exchangeName=エクスチェンジ名
|
||||
@@ -646,7 +633,6 @@ totalNetPointsColumnTooltip=レガッタにおける競技者の総合得点を
|
||||
windData=風データ
|
||||
gpsData=GPS データ
|
||||
status=ステータス
|
||||
noDataFound=データが見つかりませんでした
|
||||
displayName=名称表示
|
||||
histogram=ヒストグラム
|
||||
numberOfDataPoints=データポイント数
|
||||
@@ -894,12 +880,9 @@ legType=レグタイプ
|
||||
sailID=セールナンバー
|
||||
seriesLeaderboard=シリーズリーダーボード
|
||||
regattaLeaderboards=レガッタリーダーボード
|
||||
clearSelection=選択のクリア
|
||||
running=実行中
|
||||
runAsSubstantive=実行
|
||||
done=実行済
|
||||
lastFinished=最終フィニッシュ
|
||||
run=実行
|
||||
times=回
|
||||
dataAmount=データ量
|
||||
averageCleanedServerTime=∅ サーバ時間のクリア
|
||||
@@ -923,12 +906,8 @@ selectSheet=シート選択
|
||||
cleanedServerTime=サーバ時間のクリア
|
||||
overallTime=全体時間
|
||||
cleanedOverallTime=全体時間のクリア
|
||||
dataMiningResult=データマイニング結果
|
||||
groupBy=グループキー
|
||||
statisticToCalculate=統計の計算
|
||||
queryResultsChartSubtitle={0} データエントリを {1} 秒で処理済
|
||||
noQuerySelected=クエリ未選択
|
||||
runAutomatically=自動的に実行
|
||||
windImport_Upload=アップロード
|
||||
windImport_Title=Expedition から風をインポート
|
||||
windImport_BoatId=艇 ID:
|
||||
@@ -958,14 +937,9 @@ raceTimeTooltip=競技者がスタート変針点を通過したときに計測
|
||||
raceTimeDownwindTooltip=このレースでダウンウィンドで移動した合計時間
|
||||
raceTimeReachingTooltip=このレースでリーチングで移動した合計時間
|
||||
raceTimeUpwindTooltip=このレースでアップウィンドで移動した合計時間
|
||||
noStatisticSelectedError=計算する統計が選択されていません
|
||||
noCustomGrouperScriptTextError=分類スクリプトが空です
|
||||
noDimensionToGroupBySelectedError=グループ別にする次元が選択されていません
|
||||
noGrouperSelectedError=分類タイプが選択されていません
|
||||
noDataRetrieverChainDefinitonSelectedError=データリトリーバが選択されていません
|
||||
queryNotValidBecause=クエリが可能でありません。理由:
|
||||
dataMining=データマイニング
|
||||
errorRunningDataMiningQuery=クエリ実行でエラーが発生しました
|
||||
hideToolbar=ツールバー非表示
|
||||
showSeriesLeaderboards=シリーズリーダーボード表示
|
||||
showOverallLeaderboard=全体リーダーボード表示
|
||||
@@ -988,7 +962,6 @@ id=ID
|
||||
allowReload=リロード許可
|
||||
compress=圧縮
|
||||
compressTooltip=エクスポートサーバインスタンスが少なくとも\nコミット 0fbf6071dea125bec4a56dee55d61c99def4a62e で実行中の場合にのみ使用してください。
|
||||
queryRunner=クエリランナー
|
||||
rerunQueryAfterRefresh=リフレッシュ後にクエリを再実行
|
||||
refreshIntervalMustntBeEmpty=リフレッシュ間隔は空であってはなりません
|
||||
selectionTables=選択テーブル
|
||||
@@ -1073,12 +1046,7 @@ TWATooltip=競技者の方向と風の間のアングル
|
||||
TWA=真の風角度
|
||||
showBoatClassChartsLabel=利用可能な艇種の全体図も表示することができます。
|
||||
showDiagram=ダイアグラム表示
|
||||
runAutomaticallyTooltip=統計やグルーピングなどを変更した後にクエリを自動的に実行します。
|
||||
rerunQueryAfterRefreshTooltip=テーブルがリフレッシュされた後にクエリを再実行します。
|
||||
queryDefinitionProvider=クエリ定義プロバイダ
|
||||
statisticProvider=統計プロバイダ
|
||||
calculateThe=計算:
|
||||
groupingProvider=グルーピングプロバイダ
|
||||
releaseNotes=新規およびリリース履歴
|
||||
hasSplitFleetContiguousScoring=連続的に得点するフリートの分割
|
||||
addRaceLogTracker=RaceLog トラッカー追加
|
||||
@@ -1236,7 +1204,6 @@ showAll=全表示
|
||||
raceVisibilityColumn=可視性
|
||||
enterCarryValueFor=競技者 {0} の持ち越し得点を入力
|
||||
advanced=予選通過
|
||||
basedOn=基準
|
||||
retrieveWith=検索キー
|
||||
mappingDetails=マッピング詳細
|
||||
deviceMappingQrCodeExplanation=追跡アプリを使用している場合は、競技者/マークを選択し、開始時刻と終了時刻を設定してから、この QRCode をスキャンすることによってデバイスマッピングも追加することができます。
|
||||
@@ -1247,10 +1214,6 @@ enterImageURL=画像 URL を入力...
|
||||
enterVideoURL=動画 URL を入力...
|
||||
enterSponsorImageURL=スポンサー画像 URL を入力...
|
||||
enterRaceName=レース名を入力...
|
||||
serverError=サーバにアクセスしようとしてエラーが発生しました。ネットワーク接続を確認して再試行してください。
|
||||
remoteProcedureCall=リモートプロシージャコール
|
||||
serverReplies=サーバ応答
|
||||
errorCommunicatingWithServer=サーバとの通信でエラー発生
|
||||
userManagement=ユーザ管理
|
||||
regattaStructureImport=レガッタ構成のインポート
|
||||
filteredBy=フィルタキー
|
||||
@@ -1278,7 +1241,6 @@ noFleetsDefined=フリートが定義されていません。
|
||||
successfullyCreatedRegattas=レガッタが登録されました
|
||||
errorTryingToRegisterRacesForTracking=追跡するレース {0} を登録しようとしてエラーが発生: {1}。ライブ/格納 URI 構文をチェックしてください。
|
||||
errorDeterminingPolarAvailability=レース {0} のポーラー/VPP データの利用可能性の決定でエラー発生: {1}
|
||||
error=エラー
|
||||
fileStorage=ファイルストレージ
|
||||
active=有効
|
||||
scoringSchemeHighPointEssOverallDescription=得点数によるスコアです。アクトの勝者が 10 点、2 位が 9 点などと得点します。Extreme Sailing シリーズ全体で同点となった場合は、より多くのアクトで勝者となった競技者を上位とします。それでも同じ場合には、最終アクトの結果を用います。
|
||||
@@ -1319,7 +1281,6 @@ showCompetitorFullNameColumn=競技者氏名
|
||||
showCompetitorNationalityColumn=競技者国籍を常に表示
|
||||
showCompetitorNationalityColumnTooltip=国旗と競技者画像 (利用可能な場合) の両方を表示
|
||||
loadingDimensionValues=次元値ロード中
|
||||
runningQuery=クエリ実行中
|
||||
inviteBuoyTenders=ブイ入札の招待
|
||||
orMultipleEmails=または複数の電子メールをカンマで区切り
|
||||
courseOverGroundTrueDegreesTooltip=真の対地方位角度 (度)
|
||||
@@ -1327,11 +1288,6 @@ courseOverGroundTrueDegrees=COG
|
||||
distanceIncludingGateStartInMeters=距離 (ゲートスタートでの)
|
||||
distanceTraveledIncludingGateStartTooltip=レグ始点からレグ終点まで、またはレグをフィニッシュ\nしていない場合は現時点までに移動した距離です。\nレグにゲートスタートが含まれる場合は、異なる時刻にスタートしたときでも\n競技者を比較するためにピンエンドからスタート位置までの距離が含まれます。
|
||||
raceDistanceTraveledIncludingGateStartTooltip=レース開始からレース終了まで、またはレースがフィニッシュ\nしていない場合は現時点までに移動した距離です。ゲートスタートの場合は、異なる時刻にスタートしたときでも\n競技者を比較するためにピンエンドからスタート位置までの距離が含まれます。
|
||||
results=結果
|
||||
groupName=グループ名
|
||||
valueAscending=値 (昇順)
|
||||
valueDescending=値 (降順)
|
||||
sortBy=ソートキー
|
||||
dashboardHeader=ダッシュボード
|
||||
dashboardNoWindBotAvailableHeader=ウィンドボットは利用できません。
|
||||
dashboardNoWindBotAvailableMessage=風計測ユニットからライブ風データを受信するには、ウィンドボットがオンになっていて、SAP Sailing Analytics に接続されていることを確認してください。
|
||||
@@ -1367,16 +1323,12 @@ dashboardRCBoat=RC 艇
|
||||
fixedMarkPassing=(固定)
|
||||
suppressedMarkPassing=(非表示)
|
||||
windUp=ウィンドアップ (マップの最上部から風を表示)
|
||||
filterBy=フィルタキー
|
||||
currentFilterSelection=現在のフィルタ選択
|
||||
notCapableOfGeneratingACodeForIdentifier=この ID のコードを生成することができません。
|
||||
serverUrl=サーバ URL
|
||||
rotatedFromTrueNorth=真北から {0} 度回転しました。
|
||||
clickToToggleWindUp=タップ/クリックして、風上が上のマップと北が上のマップとで表示を切り替えます
|
||||
clickToToggleWindStreamlets=タップ/クリックして風細流を表示または非表示にします
|
||||
startLineToFirstMarkTriangle=スタートから第一マークまで ({0}m)
|
||||
dataMiningComponentsHaveBeenUpdated=データマイニングコンポーネントが更新されました
|
||||
dataMiningComponentsNeedReloadDialogMessage=リロードをクリックして、コンポーネントをリロードします。これにより、現在表示されているデータが破棄され、デフォルトクエリが実行されます。\n何も行わない場合は閉じるをクリックします。データマイニングは、コンポーネントがリロードされるまでは正しく機能しません。
|
||||
noDataForEvent=このイベントにまだデータが何もありません。
|
||||
countriesCount={0,number} カ国
|
||||
countriesCount[one]={0,number} カ国
|
||||
@@ -1474,15 +1426,7 @@ noFinishedRaces=フィニッシュしたレースがまだありません。
|
||||
racesOverview=レース概要
|
||||
listFormatLabel=レース一覧
|
||||
competitionFormatLabel=競技日
|
||||
empty=空
|
||||
runAQuery=クエリを実行
|
||||
latestRegattaStandings=レガッタ最新順位表
|
||||
plainText=プレーンテキスト
|
||||
columnChart=縦棒グラフ
|
||||
columnChartWithErrorBars=縦棒グラフ (エラーバーあり)
|
||||
choosePresentation=プレゼンテーション選択
|
||||
cantDisplayDataOfType={0} タイプのデータは表示できません。
|
||||
shownDecimals=小数点表示
|
||||
openFullscreenView=全画面ビューを開く
|
||||
closeFullscreenView=全画面ビューを閉じる
|
||||
videosCount={0,number} 動画
|
||||
@@ -1492,15 +1436,8 @@ photosCount[one]={0,number} 写真
|
||||
eventsHaveTakenPlace={0} イベントが行われました
|
||||
eventsHaveTakenPlace[one]=1 つのイベントが行われました
|
||||
raceOffice=レース事務所
|
||||
analyze=分析
|
||||
dataMiningSettings=データマイニング設定
|
||||
multiResultsPresenter=複数結果表示
|
||||
plainResultsPresenter=プレーン結果表示ツール
|
||||
resultsChart=結果チャート
|
||||
tabbedResultsPresenter=タブ結果表示ツール
|
||||
polarResultsPresenter=ポーラー結果表示ツール
|
||||
maneuverSpeedDetailsResultsPresenter=マニューバー速度詳細結果表示ツール
|
||||
dataMiningRetrieval=データ取得
|
||||
actionWatch=視聴
|
||||
actionAnalyze=分析
|
||||
denoteAllRacesForRaceLogTrackingShorctut=レースログ追跡の全レース表示へのショートカット
|
||||
@@ -1516,24 +1453,8 @@ defaultName=デフォルト
|
||||
exampleTextForName=名前は次のようになります:
|
||||
flightsCount={0,number} フライト
|
||||
flightsCount[one]={0,number} フライト
|
||||
viewQueryDefinition=クエリ定義の表示
|
||||
queryDefinitionViewer=クエリ定義ビューア
|
||||
groupAverageAscending=グループ平均 (昇順)
|
||||
groupAverageDescending=グループ平均 (降順)
|
||||
groupMedianAscending=グループ中央値 (昇順)
|
||||
groupMedianDescending=グループ中央値 (降順)
|
||||
resultsFoundForSearch={0,number} 結果が ''{1}’ に見つかりました
|
||||
resultsFoundForSearch[one]={0,number} 結果が ''{1}’ に見つかりました
|
||||
runPredefinedQuery=事前定義クエリを実行
|
||||
selectPredefinedQuery=事前定義クエリを選択
|
||||
predefinedQueryRunner=事前定義クエリランナー
|
||||
developerOptions=開発者オプション
|
||||
copyToClipboard=クリップボードにコピー
|
||||
code=コード
|
||||
useClassGetName=タイプ名に class.getName() を使用
|
||||
useClassGetNameTooltip=コードベースでの変更に対してより堅牢ですが、コードスニペットはクラスが利用できる範囲でのみ使用できます。
|
||||
useStringLiterals=タイプ名に文字列リテラルを使用
|
||||
useStringLiteralsTooltip=このコードスニペットはどこでも使用できますが、コードベースが変更される場合は中断します。
|
||||
errorLoadingDataWithTryAgain=データのロードでエラーが発生しました。しばらくしてから再試行してください。
|
||||
addGalleryPhoto=ギャラリーフォト追加
|
||||
addStageImage=ステージ画像追加
|
||||
@@ -1553,7 +1474,6 @@ warningForDisabledCompetitors=次の競技者はこのレースに登録する
|
||||
competitorToolTipMessage={0} はすでにレース {3} のフリート {2} に割り当てられており、そのため同一レース内でフリート {1} に割り当てることはできません
|
||||
addMarkToRegatta=マークをレガッタに追加
|
||||
selectALeaderboardGroup=リーダーボードグループを選択...
|
||||
pleaseSelect=選択:
|
||||
requiresValidRegatta=このページには、表示するレースを識別するために有効なレガッタ、レース列、およびフリート名が必要です。
|
||||
couldNotObtainRace=名称 {0} のレガッタに対してフリート {2} の名称 {1} でレースが取得できませんでした: {3}
|
||||
errorTryingToCreateEmbeddedMap=埋込マップを登録しようとしてエラーが発生: {0}
|
||||
@@ -1833,30 +1753,9 @@ eventRegattaHeaderLegendGpsNo=航跡データなし
|
||||
eventRegattaHeaderLegendWindNo=風向風速データなし
|
||||
eventRegattaHeaderLegendVideoNo=動画ストリームなし
|
||||
eventRegattaHeaderLegendAudioNo=音声ストリームなし
|
||||
angleInDegree=角度 (度)
|
||||
angleInRadian=角度 (ラジアン)
|
||||
centralAngleInRadian=中心角 (度)
|
||||
centralAngleInDegree=中心角 (ラジアン)
|
||||
kilometers=キロメートル
|
||||
meters=メートル
|
||||
nauticalMiles=海里
|
||||
seaMiles=海里
|
||||
geographicalMiles=地理マイル
|
||||
days=日
|
||||
hours=時間
|
||||
minutes=分
|
||||
seconds=秒
|
||||
milliseconds=ミリ秒
|
||||
floatNumber=浮動小数点型
|
||||
integer=整数
|
||||
appendResult=結果を追加
|
||||
sampleColor=色サンプル
|
||||
sharedSettingsLink=設定にリンク
|
||||
leaderboardPage=リーダーボードページ
|
||||
makeDefault=デフォルトを設定
|
||||
makeDefaultInProgress=実行中です...
|
||||
settingsSavedMessage=現在の設定がデフォルトとして設定されました
|
||||
settingsSaveErrorMessage=使用している設定をデフォルトとして設定する際にエラーが発生しました
|
||||
showLiveNow="実況中" を表示
|
||||
useOnlyOneOfStartTimeInferenceAndControlTrackingFromStartAndFinishTimes="推定スタート時刻" および "スタート/フィニッシュ時刻からのコントロール追跡" は 1 つだけ使用してください
|
||||
unknownLeaderboardType=未知のリーダーボードタイプ {0}
|
||||
@@ -1875,10 +1774,6 @@ settingsId=設定 ID
|
||||
documentSettingsId=文書設定 ID
|
||||
settingsForId=ID ''{0}'' の設定
|
||||
userProfileSettingsTabDescription=ユーザ設定は、このページの多くの場所にあるダイアログを設定することによって生成されます。このビューには、収集したすべての設定がパワーユーザ向けの技術的な方法で表示されます。削除したエントリは復元できないため、注意して使用してください。
|
||||
resetToDefault=デフォルトに戻す
|
||||
resetToDefaultInProgress=リセット中です...
|
||||
settingsRemoved=デフォルト設定が復元されました
|
||||
settingsRemovedError=デフォルト設定を復元できませんでした
|
||||
userSettingsFilter=設定フィルタ
|
||||
requiresRegattaRaceAndLeaderboard=このページには有効なレガッタ名、レース名、およびリーダーボード名が必要です。
|
||||
couldNotFindRaceInRegatta=名前 {1} のレガッタに対して名前 {0} のレースが取得できませんでした
|
||||
@@ -1910,7 +1805,6 @@ errorFetchingDimensionData={0} の次元値のフェッチでエラーが発生:
|
||||
errorFetchingStatistics=サーバからの利用可能な統計のフェッチでエラーが発生: {0}
|
||||
errorFetchingAggregators=サーバからの利用可能な集計のフェッチでエラーが発生: {0}
|
||||
errorLoadingDataRetrieverChainDefinitions=利用可能な DataRetrieverChainDefinitions の取得でエラーが発生: {0}
|
||||
errorFetchingComponentsChangedTimepoint=サーバからのコンポーネント変更済タイムポイントのフェッチでエラーが発生: {0}
|
||||
errorRunningQuery=クエリの実行でエラーが発生: {0}
|
||||
errorReadingWindFixes=風フィックス {0} の読込でエラーが発生しました
|
||||
errorAddingWindFixForRace=レース {0} に対する風フィックスの追加でエラーが発生: {1}
|
||||
@@ -1969,7 +1863,7 @@ anniversaryMajorCountdownTeaser[one]=カウントダウン情報です。{1,numb
|
||||
anniversaryMajorCountdownDescription=SAP では、www.sapsailing.com における {0,number,#,###} 番目のレースを祝うことにしています。どのレースがゴールテープを切るでしょうか。その記念レースの主催者には、義援目的で合計で 10,000 ユーロが贈呈されます。当選者はこの Web サイトで発表されます。引き続きご注目いただき、一緒にカウントダウンしていきましょう。
|
||||
anniversaryRepdigitCountdownTeaser=カウントダウン情報です。{1,number,#,###} 番目のレースまでもうわずか {0,number,#,###} レースです。
|
||||
anniversaryRepdigitCountdownTeaser[one]=カウントダウン情報です。{1,number,#,###} 番目のレースまでもうわずか {0,number,#,###} レースです。
|
||||
anniversaryRepdigitCountdownDescription=SAP では、縁起のいい番号のレースを祝うことにしています。www.sapsailing.com における {0,number, #,###} 番目のレースは誰が行うことになるでしょうか。そのレースの参加者には、SAP から最上級のサマーフェスティバルが無料で提供されます。当選者はこの Web サイトで発表されます。引き続きご注目いただき、一緒にカウントダウンしていきましょう。
|
||||
anniversaryRepdigitCountdownDescription=SAP では、縁起のいい番号のレースを祝うことにしています。www.sapsailing.com における {0,number, #,###} 番目のレースは誰が行うことになるでしょうか。その主催者にはドリンク込みのバーベキューが無料で提供されます。当選者はこの Web サイトで発表されます。引き続きご注目いただき、一緒にカウントダウンしていきましょう。
|
||||
anniversaryAnnouncementTeaser=SAP Sailing Analytics で {0,number,#,###} レースというミッションが達成されました。
|
||||
anniversaryAnnouncementDescription=3、2、1...。レース {0} の参加者のみなさん、おめでとうございます。当選をお知らせします。SAP Sailing Analytics をご信頼いただきありがとうございます。さらに 10,000 レースをご一緒に帆走できることを願っております。
|
||||
anniversaryRaceLinkText=記念レース表示
|
||||
@@ -1984,11 +1878,6 @@ minimumRideHeightInMetersTooltip=艇がフォイリング状態にあるとみ
|
||||
minimumDurationBetweenAdjacentFoilingSegmentsInSeconds=隣り合ったフォイリングセグメント間の最小時間 (秒)
|
||||
minimumDurationBetweenAdjacentFoilingSegmentsInSecondsTooltip=空白でなく、隣り合った 2 つのフォイリングセグメント間の時間がこの値より小さい場合、隣り合ったこれらのフォイリングセグメントは 1 つにマージされます。
|
||||
needToProvideValidMinimumRideHeight=浮上高さの有効な値をメートル単位で指定する必要があります。
|
||||
dataMiningErrorMargins=エラーマージン
|
||||
elements={0} 要素
|
||||
chooseDifferentDimensionTitle=異なる次元の選択
|
||||
chooseDifferentDimensionMessage=結果をグルーピングするための異なる次元を選択してください
|
||||
pleaseSelectADimension=次元を選択してください
|
||||
currentPortDaggerboardRake=左舷ダガーボード傾斜角
|
||||
currentPortDaggerboardRakeTooltip=現在の左舷ダガーボード傾斜角
|
||||
currentStbdDaggerboardRake=右舷ダガーボード傾斜角
|
||||
@@ -2166,3 +2055,13 @@ multiVideoIdle=ワークキューが無効です
|
||||
multiVideoDoNoAdd=追加しないでください
|
||||
multiVideoOffsetInput=グローバル動画オフセット (msec):
|
||||
multiVideoDescription=Web サーバは、ファイルディスカバリを可能にするため、インデックスリスト (インデックスが作成されている場合はサブフォルダがサポート済) を用意していることが必要です。MP4 ファイルに含まれているメタデータの初期解析後に、追加する動画を左側のチェックボックス列で選択する必要があります。"音声/動画追加" ボタンにより、選択されているすべてのファイルに対してメディアトラックが作成され、右側の列で選択されているすべてのレースに対してそれらのファイルが追加されます。
|
||||
multiUrlChangeMediaTrack=複数メディアトラック URL の調整
|
||||
multiUrlChangeReplace=置換後の文字列
|
||||
multiUrlChangeFind=検索
|
||||
multiUrlChangeCannotSave=保存中にエラーが発生
|
||||
multiUrlChangeSave=URL 変更の保存
|
||||
multiUrlChangeNewURL=新規 URL
|
||||
multiUrlNoPrefixWarning=共通の接頭辞が見つかりませんでした。これは通常、選択した動画のうち現在同じ場所に置かれていないものがあることを意味します。自身の責任で進めてください。
|
||||
multiUrlChangeExplain=このダイアログはメディアトラック URL 先頭の共通部分をまとめて置換します。すべての URL が同一の接頭辞で始まっていることを確認してください。また、新規 URL 列を参照し、保存を選択する前に結果として得られる URL を吟味してください。
|
||||
lastEvent=最終イベント: {0}
|
||||
teaserOverallLinkToolTip=シリーズ全体を参照するには、黄色になっている隅の部分をクリックしてください
|
||||
|
||||
+11
-112
@@ -9,12 +9,10 @@ trackedBefore=Histórico de eventos rastreados
|
||||
general=Geral
|
||||
listRaces=Listar corridas
|
||||
listRegattas=Listar regatas
|
||||
numberPairResultsPresenter=Diagrama de dispersão
|
||||
wind=Vento
|
||||
maneuverType=Manobra
|
||||
windPanelLabel=Este é o painel eólico que até o momento está completamente vazio.
|
||||
refresh=Atualizar
|
||||
remove=Remover
|
||||
removeNumber=Remover ({0})
|
||||
windSource=Origem do vento
|
||||
dampeningInterval=Intervalo de atenuação
|
||||
@@ -53,7 +51,6 @@ trackedRaceConnectedToSelectedRaceName=Corrida rastreada conectada ao nome da co
|
||||
linkToColumn=Link a coluna
|
||||
unlink=Eliminar link
|
||||
leaderboardName=Nome do painel de classificação
|
||||
cancel=Cancelar
|
||||
pleaseEnterAName=Insira um nome
|
||||
pleaseEnterABoatClass=Insira uma classe de barcos
|
||||
discardRacesFromHowManyStartedRacesOn=Descartar mais um corrida a partir de quantas corridas iniciadas
|
||||
@@ -65,7 +62,6 @@ startingFromNumberOfRaces=A partir de quantas corridas
|
||||
renameLeaderboard=Renomear painel de classificação
|
||||
addColumnToLeaderboard=Adicionar coluna ao painel de classificação
|
||||
pleaseEnterNameForNewRaceColumn=Insira um nome para a coluna da corrida nova
|
||||
ok=OK
|
||||
medalRace=Corrida para medalha
|
||||
renameRace=Renomear corrida
|
||||
openSelectedLeaderboard=Abrir painel de classificação selecionado
|
||||
@@ -89,7 +85,6 @@ sapSailingAnalytics=Sailing Analytics
|
||||
leaderboard=Painel de classificação
|
||||
leaderboards=Painéis de classificação
|
||||
leaderboardSettings=Configurações do painel de classificação
|
||||
settings=Configurações
|
||||
selectAtLeastOneLegDetail=Selecionar pelo menos um detalhe da perna
|
||||
currentSpeedOverGroundInKnots=SOG
|
||||
currentSpeedOverGroundInKnotsTooltip=A velocidade no fundo atual.
|
||||
@@ -172,7 +167,6 @@ tacks=Cambadas
|
||||
jibes=Jaibes
|
||||
penaltyCircles=Voltas de punição
|
||||
medalRaceIsNull=Valor de corrida para medalha não permitido
|
||||
configuration=Configuração
|
||||
maneuverTypes=Manobras
|
||||
chooseChart=Selecionar diagrama
|
||||
distanceTraveled=Distância navegada
|
||||
@@ -190,13 +184,11 @@ secondsPerNauticalMileUnit=s/NM
|
||||
metersUnit=m
|
||||
millimetersUnit=mm
|
||||
degreesUnit=°
|
||||
close=Encerrar
|
||||
compareCompetitors=Comparar competidores
|
||||
description=Descrição
|
||||
sailNumber=Número da vela
|
||||
country=País
|
||||
no3LetterCodes=Impossível encontrar os códigos de 3 letras do COI.
|
||||
add=Adicionar
|
||||
delete=Eliminar
|
||||
showCharts=Visualizar diagramas
|
||||
raceWithThisNameAlreadyExists=Já existe uma corrida com esse nome.
|
||||
@@ -268,7 +260,6 @@ printHint=Imprime a versão aplicada
|
||||
blockedApplyButton=Os competidores registrados são diferentes dos competidores da lista de pares!
|
||||
multiplierInfo=Multiplica os voos e cria-os uns junto aos outros de modo que seja possível uma competição com menos mudanças de barco.
|
||||
noPairingListAvailable=A função de impressão só está disponível caso já tenha sido aplicada uma lista de pares aos registros de corridas dos painéis de classificação selecionados.
|
||||
settingsForComponent=Configurações para {0}
|
||||
noEventsFound=Nenhum evento encontrado
|
||||
noEventSelected=Nenhum evento selecionado
|
||||
noLeaderboardsFound=Nenhum painel de classificação encontrado
|
||||
@@ -306,8 +297,6 @@ leaderboardGroup=Grupo de painéis de classificação
|
||||
pleaseEnterNonEmptyDescription=Insira uma descrição não vazia
|
||||
groupWithThisNameAlreadyExists=Já existe um grupo de painéis de classificação com este nome.
|
||||
detailsOfLeaderboardGroup=Detalhes do grupo de painéis de classificação
|
||||
edit=Processar
|
||||
save=Gravar
|
||||
abort=Cancelar
|
||||
noLeaderboardGroupWithNameFound=Não foi encontrado um grupo de painéis de classificação com o nome {0}
|
||||
overview=Síntese
|
||||
@@ -342,7 +331,6 @@ degreesShort=graus
|
||||
untracked=Não rastreado
|
||||
delayForLiveMode=Atraso para modo ao vivo:
|
||||
notAvailable=Não disponível
|
||||
details=Detalhes
|
||||
noGroupSelected=Nenhum grupo selecionado
|
||||
combinedWindSourceTypeName=Combinado
|
||||
legMiddleWindSourceTypeName=Meio da perna
|
||||
@@ -424,7 +412,6 @@ simulateAsLiveRace=Simular como corrida ao vivo
|
||||
simulateWithOffset=Deslocamento antes da partida em minutos:
|
||||
boatClassDoesNotMatchSelectedRegatta=As corridas selecionadas contêm classes de barcos que não são as mesmas da classe de barcos ''{0}'' da regata selecionada. Não será carregada nenhuma corrida.
|
||||
regattaExistForSelectedBoatClass=Existe pelo menos uma regata para as classes de barcos selecionadas. Criar regatas padrão para essas corridas?
|
||||
reload=Recarregar
|
||||
addRegatta=Adicionar regata...
|
||||
importRegattas=Importar regatas...
|
||||
exchangeName=Trocar nome
|
||||
@@ -646,7 +633,6 @@ totalNetPointsColumnTooltip=O total de pontos líquidos de um competidor na rega
|
||||
windData=Dados do vento
|
||||
gpsData=Dados do GPS
|
||||
status=Status
|
||||
noDataFound=Não foram encontrados dados
|
||||
displayName=Nome de exibição
|
||||
histogram=Histograma
|
||||
numberOfDataPoints=Número de pontos de dados
|
||||
@@ -894,12 +880,9 @@ legType=Tipo de perna
|
||||
sailID=Número da vela
|
||||
seriesLeaderboard=Painel de classificação da série
|
||||
regattaLeaderboards=Painéis de classificação de regata
|
||||
clearSelection=Anular seleção
|
||||
running=Em competição
|
||||
runAsSubstantive=Competir
|
||||
done=Concluído
|
||||
lastFinished=Último a concluir
|
||||
run=Competir
|
||||
times=vezes
|
||||
dataAmount=Quantidade de dados
|
||||
averageCleanedServerTime=∅ tempo de servidor anulado
|
||||
@@ -923,12 +906,8 @@ selectSheet=Selecionar folha
|
||||
cleanedServerTime=Tempo de servidor anulado
|
||||
overallTime=Tempo geral
|
||||
cleanedOverallTime=Tempo geral anulado
|
||||
dataMiningResult=Resultado de data mining
|
||||
groupBy=Agrupar por
|
||||
statisticToCalculate=Calcular estatística
|
||||
queryResultsChartSubtitle=Percorreu {0} entradas de dados em {1} segundos
|
||||
noQuerySelected=Nenhuma consulta selecionada
|
||||
runAutomatically=Executar automaticamente
|
||||
windImport_Upload=Carregar
|
||||
windImport_Title=Importar vento de Expedition
|
||||
windImport_BoatId=ID do barco:
|
||||
@@ -958,14 +937,9 @@ raceTimeTooltip=Tempo total navegado nesta corrida, começando a contagem quando
|
||||
raceTimeDownwindTooltip=Tempo total navegado a sotavento nesta corrida
|
||||
raceTimeReachingTooltip=Tempo total navegado a través nesta corrida
|
||||
raceTimeUpwindTooltip=Tempo total navegado a barlavento nesta corrida
|
||||
noStatisticSelectedError=Não foi selecionada uma estatística para calcular
|
||||
noCustomGrouperScriptTextError=O script do sistema de agrupamento está vazio
|
||||
noDimensionToGroupBySelectedError=Nenhuma dimensão pela qual efetuar o agrupamento selecionada
|
||||
noGrouperSelectedError=Nenhum tipo de sistema de agrupamento selecionado
|
||||
noDataRetrieverChainDefinitonSelectedError=Nenhum recuperador de dados selecionado
|
||||
queryNotValidBecause=Nenhuma consulta possível, pois
|
||||
dataMining=Data mining
|
||||
errorRunningDataMiningQuery=Ocorreu um erro ao executar a consulta
|
||||
hideToolbar=Ocultar barra de ferramentas
|
||||
showSeriesLeaderboards=Visualizar painéis de classificação da série
|
||||
showOverallLeaderboard=Visualizar painel de classificação geral
|
||||
@@ -988,7 +962,6 @@ id=ID
|
||||
allowReload=Permitir recarregamento
|
||||
compress=Comprimir
|
||||
compressTooltip=Utilizar somente se a instância do servidor de exportação estiver sendo executada pelo menos\ncom o commit 0fbf6071dea125bec4a56dee55d61c99def4a62e.
|
||||
queryRunner=Executor de consulta
|
||||
rerunQueryAfterRefresh=Executar consulta novamente após atualização
|
||||
refreshIntervalMustntBeEmpty=O intervalo de atualização não deve estar em branco
|
||||
selectionTables=Tabelas de seleção
|
||||
@@ -1073,12 +1046,7 @@ TWATooltip=O ângulo entre a direção dos competidores e o vento
|
||||
TWA=Ângulo do vento verdadeiro
|
||||
showBoatClassChartsLabel=Você também pode ver o diagrama geral para as classes de barcos disponíveis.
|
||||
showDiagram=Visualizar diagrama
|
||||
runAutomaticallyTooltip=Execute a consulta automaticamente, após modificar, por exemplo, a estatística ou o agrupamento.
|
||||
rerunQueryAfterRefreshTooltip=Executa novamente a consulta após a atualização das tabelas.
|
||||
queryDefinitionProvider=Fornecedor da definição da consulta
|
||||
statisticProvider=Fornecedor da estatística
|
||||
calculateThe=Calcular
|
||||
groupingProvider=Fornecedor do agrupamento
|
||||
releaseNotes=Novidades e histórico de releases
|
||||
hasSplitFleetContiguousScoring=Flotilhas divididas com pontuação contínua
|
||||
addRaceLogTracker=Adicionar rastreador RaceLog
|
||||
@@ -1236,7 +1204,6 @@ showAll=Visualizar tudo
|
||||
raceVisibilityColumn=Visibilidade
|
||||
enterCarryValueFor=Inserir pontos transferidos para competidor {0}
|
||||
advanced=Avançado
|
||||
basedOn=com base em
|
||||
retrieveWith=Recuperar com
|
||||
mappingDetails=Detalhes de mapeamento
|
||||
deviceMappingQrCodeExplanation=Se você estiver utilizando o app de rastreamento, você também pode adicionar o mapeamento do dispositivo selecionando um competidor/marca, definindo as horas de partida e chegada e digitalizando depois este código QR.
|
||||
@@ -1247,10 +1214,6 @@ enterImageURL=Inserir URL de imagem...
|
||||
enterVideoURL=Inserir URL de vídeo...
|
||||
enterSponsorImageURL=Inserir URL de imagem de patrocinador...
|
||||
enterRaceName=Inserir nome da corrida...
|
||||
serverError=Ocorreu um erro ao tentar contatar o servidor. Verifique sua conexão à rede e tente novamente.
|
||||
remoteProcedureCall=Chamada de procedimento remoto
|
||||
serverReplies=Respostas do servidor
|
||||
errorCommunicatingWithServer=Erro ao comunicar com o servidor
|
||||
userManagement=Administração de usuários
|
||||
regattaStructureImport=Importação de estrutura da regata
|
||||
filteredBy=filtrado por
|
||||
@@ -1278,7 +1241,6 @@ noFleetsDefined=Nenhuma flotilha definida.
|
||||
successfullyCreatedRegattas=Regatas criadas com êxito
|
||||
errorTryingToRegisterRacesForTracking=Erro ao tentar registrar corridas {0} para rastreamento: {1}. Verificar sintaxe de URI ao vivo/armazenado.
|
||||
errorDeterminingPolarAvailability=Erro ao determinar disponibilidade de dados de carta polar/VPP para corrida {0}: {1}
|
||||
error=Erro
|
||||
fileStorage=Armazenamento de arquivos
|
||||
active=Ativo
|
||||
scoringSchemeHighPointEssOverallDescription=Pontuação em pontos. O vencedor de uma etapa pontua 10 pontos, o 2º - 9 pontos, .... O desempate na pontuação geral da Extreme Sailing Series é efetuado a favor do competidor com o maior número de vitórias em etapas. Se isso não efetuar o desempate, será utilizado o resultado na última etapa.
|
||||
@@ -1319,7 +1281,6 @@ showCompetitorFullNameColumn=Nome completo do competidor
|
||||
showCompetitorNationalityColumn=Exibir sempre a nacionalidade do competidor
|
||||
showCompetitorNationalityColumnTooltip=Exibir ambos, bandeiras de nacionalidade e imagens do competidor, se disponíveis
|
||||
loadingDimensionValues=Carregando valores de dimensão
|
||||
runningQuery=Executando consulta
|
||||
inviteBuoyTenders=Convidar navios-balizadores
|
||||
orMultipleEmails=ou vários e-mails separados por vírgula
|
||||
courseOverGroundTrueDegreesTooltip=Percurso verdadeiro no fundo em graus
|
||||
@@ -1327,11 +1288,6 @@ courseOverGroundTrueDegrees=COG
|
||||
distanceIncludingGateStartInMeters=Distância (com início do portão)
|
||||
distanceTraveledIncludingGateStartTooltip=A distância navegada desde o início até o fim da perna\nou até a data/hora atual, se a perna não estiver concluída.\nSe a perna incluir o início de um portão, a distância desde o fim da marcação até a posição inicial é incluída\npara ser possível comparar os competidores mesmo quando começam em horas diferentes.
|
||||
raceDistanceTraveledIncludingGateStartTooltip=A distância navegada desde o início até o fim da corrida\nou até a data/hora atual, se a corrida não estiver concluída.\nPara o início de um portão, a distância desde o fim da marcação até a posição inicial é incluída\npara ser possível comparar os competidores mesmo quando começam em horas diferentes.
|
||||
results=Resultados
|
||||
groupName=Nome do grupo
|
||||
valueAscending=Valor (crescente)
|
||||
valueDescending=Valor (decrescente)
|
||||
sortBy=Ordenar por
|
||||
dashboardHeader=Painel
|
||||
dashboardNoWindBotAvailableHeader=O Wind Bot não está disponível.
|
||||
dashboardNoWindBotAvailableMessage=Para receber dados do vento em tempo real de unidades de medida do vento, certifique-se de que o Wind Bot está ativado e conectado ao SAP Sailing Analytics.
|
||||
@@ -1367,16 +1323,12 @@ dashboardRCBoat=Barco de rádio-controle
|
||||
fixedMarkPassing=(fixo)
|
||||
suppressedMarkPassing=(suprimido)
|
||||
windUp=Orientação pelo vento (visualizar vento no topo do mapa)
|
||||
filterBy=Filtrar por
|
||||
currentFilterSelection=Seleção de filtro atual
|
||||
notCapableOfGeneratingACodeForIdentifier=Não é possível gerar um código para este identificador.
|
||||
serverUrl=URL de servidor
|
||||
rotatedFromTrueNorth=Efetuou a rotação de {0} graus desde o norte verdadeiro.
|
||||
clickToToggleWindUp=Tocar/clicar para comutar entre exibição do mapa com orientação pelo vento e pelo norte
|
||||
clickToToggleWindStreamlets=Tocar/clicar para visualizar ou ocultar os cursos do vento
|
||||
startLineToFirstMarkTriangle=Partida para primeira marca ({0}m)
|
||||
dataMiningComponentsHaveBeenUpdated=Os componentes de data mining foram atualizados
|
||||
dataMiningComponentsNeedReloadDialogMessage=Clicar em Recarregar para recarregar os componentes agora. Isto irá descartar os dados exibidos atualmente e executar uma consulta padrão.\nClicar em Fechar para não efetuar nada. O data mining não irá funcionar corretamente até ser efetuado o recarregamento dos componentes.
|
||||
noDataForEvent=Ainda não existem dados para o evento.
|
||||
countriesCount={0,number} países
|
||||
countriesCount[one]={0,number} país
|
||||
@@ -1474,15 +1426,7 @@ noFinishedRaces=Ainda não existem corridas concluídas.
|
||||
racesOverview=Síntese de corridas
|
||||
listFormatLabel=Formato de lista
|
||||
competitionFormatLabel=Formato da competição
|
||||
empty=Vazio
|
||||
runAQuery=Executar uma consulta
|
||||
latestRegattaStandings=Posições da última regata
|
||||
plainText=Texto simples
|
||||
columnChart=Diagrama de colunas
|
||||
columnChartWithErrorBars=Diagrama de colunas com barras de erros
|
||||
choosePresentation=Selecionar apresentação
|
||||
cantDisplayDataOfType=Não é possível exibir dados do tipo {0}
|
||||
shownDecimals=Decimais exibidos
|
||||
openFullscreenView=Abrir visão de tela inteira
|
||||
closeFullscreenView=Fechar visão de tela inteira
|
||||
videosCount={0,number} vídeos
|
||||
@@ -1492,15 +1436,8 @@ photosCount[one]={0,number} foto
|
||||
eventsHaveTakenPlace=Foram realizados {0} eventos
|
||||
eventsHaveTakenPlace[one]=Foi realizado um evento
|
||||
raceOffice=Secretaria do evento
|
||||
analyze=Analisar
|
||||
dataMiningSettings=Configurações de data mining
|
||||
multiResultsPresenter=Apresentador de vários resultados
|
||||
plainResultsPresenter=Apresentador de resultados simples
|
||||
resultsChart=Diagrama de resultados
|
||||
tabbedResultsPresenter=Apresentador de resultados por fichas
|
||||
polarResultsPresenter=Apresentador de resultados da carta polar
|
||||
maneuverSpeedDetailsResultsPresenter=Apresentador de resultados detalhados da velocidade da manobra
|
||||
dataMiningRetrieval=Obtenção de dados
|
||||
actionWatch=Ver
|
||||
actionAnalyze=Analisar
|
||||
denoteAllRacesForRaceLogTrackingShorctut=Atalho para denotar todas as corridas para rastreamento do registro de corridas
|
||||
@@ -1516,24 +1453,8 @@ defaultName=Padrão
|
||||
exampleTextForName=Seu nome é parecido com:
|
||||
flightsCount={0,number} voos
|
||||
flightsCount[one]={0,number} voo
|
||||
viewQueryDefinition=Ver definição da consulta
|
||||
queryDefinitionViewer=Visualizador de definição da consulta
|
||||
groupAverageAscending=Média do grupo (crescente)
|
||||
groupAverageDescending=Média do grupo (decrescente)
|
||||
groupMedianAscending=Mediana do grupo (crescente)
|
||||
groupMedianDescending=Mediana do grupo (decrescente)
|
||||
resultsFoundForSearch={0,number} resultados encontrados para ''{1}''
|
||||
resultsFoundForSearch[one]={0,number} resultado encontrado para ''{1}''
|
||||
runPredefinedQuery=Executar consulta predefinida
|
||||
selectPredefinedQuery=Selecionar consulta predefinida
|
||||
predefinedQueryRunner=Executor de consulta predefinida
|
||||
developerOptions=Opções do desenvolvedor
|
||||
copyToClipboard=Copiar para o clipboard
|
||||
code=Código
|
||||
useClassGetName=Utilizar Class.getName() para nomes de tipo
|
||||
useClassGetNameTooltip=Mais robusto em relação às modificações na base do código, mas o trecho do código só pode ser utilizado no âmbito em que as classes estão disponíveis.
|
||||
useStringLiterals=Utilizar literais de cadeia para nomes de tipo
|
||||
useStringLiteralsTooltip=O trecho do código pode ser utilizado em qualquer local, mas será quebrado se a base do código for modificada.
|
||||
errorLoadingDataWithTryAgain=Erro ao carregar dados. Tentar novamente dentro de momentos.
|
||||
addGalleryPhoto=Adicionar foto da galeria
|
||||
addStageImage=Adicionar imagem da etapa
|
||||
@@ -1553,7 +1474,6 @@ warningForDisabledCompetitors=Os competidores seguintes não podem ser registrad
|
||||
competitorToolTipMessage={0} já foi atribuído à flotilha {2} na corrida {3} e por isso não pode ser atribuído à flotilha {1} na mesma corrida
|
||||
addMarkToRegatta=Adicionar marca à regata
|
||||
selectALeaderboardGroup=Selecionar um grupo de painéis de classificação...
|
||||
pleaseSelect=Selecione
|
||||
requiresValidRegatta=Esta página requer uma regata válida, a coluna da corrida e o nome da flotilha para identificar a corrida a ser exibida.
|
||||
couldNotObtainRace=Não foi possível obter uma corrida com o nome {1} para a flotilha {2} para uma regata com o nome {0}: {3}
|
||||
errorTryingToCreateEmbeddedMap=Erro ao tentar criar o mapa integrado: {0}
|
||||
@@ -1833,30 +1753,9 @@ eventRegattaHeaderLegendGpsNo=Sem dados de rastreamento
|
||||
eventRegattaHeaderLegendWindNo=Sem dados de vento
|
||||
eventRegattaHeaderLegendVideoNo=Sem fluxos de vídeo
|
||||
eventRegattaHeaderLegendAudioNo=Sem fluxos de áudio
|
||||
angleInDegree=Ângulo em graus
|
||||
angleInRadian=Ângulo em radianos
|
||||
centralAngleInRadian=Ângulo central em radianos
|
||||
centralAngleInDegree=Ângulo central em graus
|
||||
kilometers=Quilômetros
|
||||
meters=Metros
|
||||
nauticalMiles=Milhas náuticas
|
||||
seaMiles=Milhas marítimas
|
||||
geographicalMiles=Milhas geográficas
|
||||
days=Dias
|
||||
hours=Horas
|
||||
minutes=Minutos
|
||||
seconds=Segundos
|
||||
milliseconds=Milissegundos
|
||||
floatNumber=Margem
|
||||
integer=Número inteiro
|
||||
appendResult=Anexar resultado
|
||||
sampleColor=Amostra de cor
|
||||
sharedSettingsLink=Link com configurações
|
||||
leaderboardPage=Página do painel de classificação
|
||||
makeDefault=Definir como padrão
|
||||
makeDefaultInProgress=Em andamento...
|
||||
settingsSavedMessage=Suas configurações atuais foram definidas com êxito como padrão
|
||||
settingsSaveErrorMessage=Ocorreu um erro ao definir suas configurações como padrão
|
||||
showLiveNow=Exibir "Ao vivo agora"
|
||||
useOnlyOneOfStartTimeInferenceAndControlTrackingFromStartAndFinishTimes=Utilizar só um de "Inferência da hora de partida" e "Rastreamento de controle das horas de partida e chegada"
|
||||
unknownLeaderboardType=Tipo de painel de classificação desconhecido {0}
|
||||
@@ -1875,10 +1774,6 @@ settingsId=ID de configurações
|
||||
documentSettingsId=ID de configuração do documento
|
||||
settingsForId=Configurações para ID ''{0}''
|
||||
userProfileSettingsTabDescription=As configurações dos usuários são geradas por diálogos de configurações que podem ser encontrados em vários locais da página. Esta visão exibe todas as suas configurações coletadas de uma forma técnica para usuários avançados. Tenha em atenção que as entradas removidas não podem ser restauradas, por isso utilize-as com cuidado.
|
||||
resetToDefault=Reinicializar para padrão
|
||||
resetToDefaultInProgress=Na reinicialização...
|
||||
settingsRemoved=Configurações padrão restauradas
|
||||
settingsRemovedError=Não foi possível restaurar configurações padrão
|
||||
userSettingsFilter=Filtro de configurações
|
||||
requiresRegattaRaceAndLeaderboard=Esta página necessita de um nome de regata, um nome de corrida e um nome de painel de classificação válidos.
|
||||
couldNotFindRaceInRegatta=Não foi possível obter uma corrida com o nome {0} para uma regata com o nome {1}
|
||||
@@ -1910,7 +1805,6 @@ errorFetchingDimensionData=Erro ao chamar os valores de dimensão de {0}: {1}
|
||||
errorFetchingStatistics=Erro ao chamar as estatísticas disponíveis do servidor: {0}
|
||||
errorFetchingAggregators=Erro ao chamar os agregadores disponíveis do servidor: {0}
|
||||
errorLoadingDataRetrieverChainDefinitions=Erro ao recuperar as definições da cadeia do recuperador de dados disponíveis: {0}
|
||||
errorFetchingComponentsChangedTimepoint=Erro ao chamar data/hora modificada de componentes do servidor: {0}
|
||||
errorRunningQuery=Erro ao executar consulta: {0}
|
||||
errorReadingWindFixes=Erro ao ler pontos fixos de vento {0}
|
||||
errorAddingWindFixForRace=Erro ao adicionar um ponto fixo de vento para corrida {0}: {1}
|
||||
@@ -1969,7 +1863,7 @@ anniversaryMajorCountdownTeaser[one]=Contagem regressiva! Só resta {0,number,#,
|
||||
anniversaryMajorCountdownDescription=Estamos celebrando nossa {0,number,#,###}ª corrida em www.sapsailing.com! Que corrida ultrapassará a marca? O organizador desta corrida de comemoração receberá um total de 10.000 Euros para fins beneficentes. O vencedor será anunciado neste site. Fique atento e conte conosco.
|
||||
anniversaryRepdigitCountdownTeaser=Contagem regressiva! Só restam {0,number,#,###} corridas até a {1,number,#,###}ª corrida.
|
||||
anniversaryRepdigitCountdownTeaser[one]=Contagem regressiva! Só resta {0,number,#,###} corrida até a {1,number,#,###}ª corrida.
|
||||
anniversaryRepdigitCountdownDescription=Estamos celebrando a corrida do nosso número da sorte! Quem fará parte da {0,number, #,###}ª corrida em www.sapsailing.com? Os participantes desta corrida receberão entradas gratuitas no festival de verão de topo da SAP. Os vencedores serão anunciados neste site. Fique atento e conte conosco.
|
||||
anniversaryRepdigitCountdownDescription=Estamos celebrando a corrida do nosso número da sorte! Quem fará parte da {0,number, #,###}ª corrida em www.sapsailing.com? Os organizadores receberão um churrasco grátis com bebidas. Os vencedores serão anunciados neste site. Fique atento e conte conosco.
|
||||
anniversaryAnnouncementTeaser=Missão cumprida! {0,number,#,###} corridas com o SAP Sailing Analytics!
|
||||
anniversaryAnnouncementDescription=3,2,1... Felicitamos os participantes da corrida {0}. Você conseguiu! Agradecemos sua confiança no SAP Sailing Analytics e esperamos continuar velejando mais 10.000 corridas com você!
|
||||
anniversaryRaceLinkText=Exibir corrida de comemoração
|
||||
@@ -1984,11 +1878,6 @@ minimumRideHeightInMetersTooltip=A altura mínima de flutuação em metros neces
|
||||
minimumDurationBetweenAdjacentFoilingSegmentsInSeconds=Duração mínima entre segmentos adjacentes de navegação com hidrofólio (s)
|
||||
minimumDurationBetweenAdjacentFoilingSegmentsInSecondsTooltip=Se não estiver em branco e o tempo entre dois segmentos adjacentes de navegação com hidrofólio for inferior a este, esses segmentos adjacentes de navegação com hidrofólio serão consolidados em um.
|
||||
needToProvideValidMinimumRideHeight=Você precisa fornecer um valor válido da altura mínima de flutuação em metros.
|
||||
dataMiningErrorMargins=Margens de erro
|
||||
elements={0} elementos
|
||||
chooseDifferentDimensionTitle=Selecionar dimensão diferente
|
||||
chooseDifferentDimensionMessage=Selecionar uma dimensão diferente para os resultados do agrupamento
|
||||
pleaseSelectADimension=Selecione uma dimensão
|
||||
currentPortDaggerboardRake=Inclinação bolina bombordo
|
||||
currentPortDaggerboardRakeTooltip=A inclinação atual da bolina para bombordo
|
||||
currentStbdDaggerboardRake=Inclinação bolina boreste
|
||||
@@ -2166,3 +2055,13 @@ multiVideoIdle=A lista de trabalho está inativa
|
||||
multiVideoDoNoAdd=Não adicionar
|
||||
multiVideoOffsetInput=Deslocamento de vídeo global em milissegundos:
|
||||
multiVideoDescription=O servidor da web é necessário para fornecer a lista de índices (subpastas suportadas se indexadas) de modo a permitir a descoberta de arquivos. Após uma análise inicial dos metadados contidos nos arquivos mp4, os vídeos que deviam ser adicionados precisam ser selecionados mediante a coluna do campo de seleção à esquerda. O botão "Adicionar áudio/vídeo" irá criar faixas de mídia para todos os arquivos selecionados e adicionar esses arquivos a todas as corridas selecionadas na coluna à direita.
|
||||
multiUrlChangeMediaTrack=Ajustar vários URLs de faixa de mídia
|
||||
multiUrlChangeReplace=Substituir por
|
||||
multiUrlChangeFind=Procurar
|
||||
multiUrlChangeCannotSave=Ocorreu um erro ao gravar
|
||||
multiUrlChangeSave=Gravar modificações do URL
|
||||
multiUrlChangeNewURL=novo URL
|
||||
multiUrlNoPrefixWarning=Não foi encontrado um prefixo comum. Isso normalmente significa que nem todos os vídeos selecionados estão hospedados atualmente no mesmo local. Continue por sua própria conta e risco!
|
||||
multiUrlChangeExplain=Este diálogo irá substituir em massa as partes comuns no início dos URLs da faixa de mídia. Assegure que todos os URLs começam com o mesmo prefixo! Veja também a nova coluna do URL e teste os URLs resultantes antes de pressionar Gravar!
|
||||
lastEvent=Último evento: {0}
|
||||
teaserOverallLinkToolTip=Para ver a série completa, clique no canto amarelo
|
||||
|
||||
+11
-112
@@ -9,12 +9,10 @@ trackedBefore=История отслеживаемых событий
|
||||
general=Общее
|
||||
listRaces=Список гонок
|
||||
listRegattas=Список регат
|
||||
numberPairResultsPresenter=Множество точек
|
||||
wind=Ветер
|
||||
maneuverType=Маневр
|
||||
windPanelLabel=Это панель ветров, которая пока что совсем пуста.
|
||||
refresh=Обновить
|
||||
remove=Удалить
|
||||
removeNumber=Удалить ({0})
|
||||
windSource=Источник ветра
|
||||
dampeningInterval=Интервал смягчения
|
||||
@@ -53,7 +51,6 @@ trackedRaceConnectedToSelectedRaceName=Отслеживаемая гонка с
|
||||
linkToColumn=Связать со столбцом
|
||||
unlink=Отменить связывание
|
||||
leaderboardName=Название таблицы лидеров
|
||||
cancel=Отмена
|
||||
pleaseEnterAName=Введите название
|
||||
pleaseEnterABoatClass=Введите класс лодки
|
||||
discardRacesFromHowManyStartedRacesOn=Исключить еще одну гонку, начиная с числа стартов в гонках
|
||||
@@ -65,7 +62,6 @@ startingFromNumberOfRaces=Начиная с числа гонок
|
||||
renameLeaderboard=Переименовать таблицу лидеров
|
||||
addColumnToLeaderboard=Добавить столбец в таблицу лидеров
|
||||
pleaseEnterNameForNewRaceColumn=Введите название для столбца новой гонки
|
||||
ok=ОК
|
||||
medalRace=Гонка на медали
|
||||
renameRace=Переименовать гонку
|
||||
openSelectedLeaderboard=Открыть выбранную таблицу лидеров
|
||||
@@ -89,7 +85,6 @@ sapSailingAnalytics=Sailing Analytics
|
||||
leaderboard=Таблица лидеров
|
||||
leaderboards=Таблицы лидеров
|
||||
leaderboardSettings=Параметры таблицы лидеров
|
||||
settings=Параметры
|
||||
selectAtLeastOneLegDetail=Выберите подробности минимум одного отрезка
|
||||
currentSpeedOverGroundInKnots=SOG
|
||||
currentSpeedOverGroundInKnotsTooltip=Текущая скорость относительно грунта.
|
||||
@@ -172,7 +167,6 @@ tacks=Поворотов оверштаг
|
||||
jibes=Поворотов фордевинд
|
||||
penaltyCircles=Штрафных кругов
|
||||
medalRaceIsNull=Значение гонки на медали не разрешено
|
||||
configuration=Конфигурация
|
||||
maneuverTypes=Маневры
|
||||
chooseChart=Выберите диаграмму
|
||||
distanceTraveled=Пройденная дистанция
|
||||
@@ -190,13 +184,11 @@ secondsPerNauticalMileUnit=с/NM
|
||||
metersUnit=м
|
||||
millimetersUnit=мм
|
||||
degreesUnit=°
|
||||
close=Закрыть
|
||||
compareCompetitors=Сравнить участников
|
||||
description=Описание
|
||||
sailNumber=Номер на парусе
|
||||
country=Страна
|
||||
no3LetterCodes=Не удалось найти 3-буквенные коды IOC.
|
||||
add=Добавить
|
||||
delete=Удалить
|
||||
showCharts=Показать диаграммы
|
||||
raceWithThisNameAlreadyExists=Гонка с таким названием уже существует.
|
||||
@@ -268,7 +260,6 @@ printHint=Печать примененной версии
|
||||
blockedApplyButton=Число зарегистрированных участников не равно числу участников из списка пар!
|
||||
multiplierInfo=Планируйте флайты таким образом, чтобы обеспечить соревнования с минимально возможной переменой лодок
|
||||
noPairingListAvailable=Функция печати доступна только после применения списка пар к журналам гонок выбранных таблиц лидеров.
|
||||
settingsForComponent={0} — параметры
|
||||
noEventsFound=События не найдены
|
||||
noEventSelected=Не выбрано событие
|
||||
noLeaderboardsFound=Таблицы лидеров не найдены
|
||||
@@ -306,8 +297,6 @@ leaderboardGroup=Группа таблиц лидеров
|
||||
pleaseEnterNonEmptyDescription=Введите непустое описание
|
||||
groupWithThisNameAlreadyExists=Группа таблиц лидеров с таким названием уже существует.
|
||||
detailsOfLeaderboardGroup=Подробности группы таблиц лидеров
|
||||
edit=Изменить
|
||||
save=Сохранить
|
||||
abort=Прервать
|
||||
noLeaderboardGroupWithNameFound=Группа таблиц лидеров с названием {0} не найдена
|
||||
overview=Обзор
|
||||
@@ -342,7 +331,6 @@ degreesShort=град.
|
||||
untracked=Не отслеживается
|
||||
delayForLiveMode=Задержка для оперативного режима:
|
||||
notAvailable=Недоступно
|
||||
details=Подробности
|
||||
noGroupSelected=Не выбрана группа
|
||||
combinedWindSourceTypeName=Объединено
|
||||
legMiddleWindSourceTypeName=Середина отрезка
|
||||
@@ -424,7 +412,6 @@ simulateAsLiveRace=Симулировать как текущую гонку
|
||||
simulateWithOffset=Сдвиг перед стартом в минутах:
|
||||
boatClassDoesNotMatchSelectedRegatta=Выбранные гонки содержат классы лодок, не совпадающие с классом лодок ''{0}'' выбранной регаты. Гонки не будут загружены.
|
||||
regattaExistForSelectedBoatClass=Для выбранных классов лодок имеется минимум одна регата. Создать регаты по умолчанию для соответствующих гонок?
|
||||
reload=Перезагрузить
|
||||
addRegatta=Добавить регату...
|
||||
importRegattas=Импортировать регаты...
|
||||
exchangeName=Имя Exchange
|
||||
@@ -646,7 +633,6 @@ totalNetPointsColumnTooltip=Общая чистая сумма баллов уч
|
||||
windData=Данные о ветре
|
||||
gpsData=Данные GPS
|
||||
status=Статус
|
||||
noDataFound=Данные не найдены
|
||||
displayName=Отображаемое имя
|
||||
histogram=Гистограмма
|
||||
numberOfDataPoints=Число точек данных
|
||||
@@ -894,12 +880,9 @@ legType=Тип отрезка
|
||||
sailID=Номер на парусе
|
||||
seriesLeaderboard=Таблица лидеров серии
|
||||
regattaLeaderboards=Таблицы лидеров регаты
|
||||
clearSelection=Очистить выбор
|
||||
running=Выполнение
|
||||
runAsSubstantive=Выполнить
|
||||
done=Готово
|
||||
lastFinished=Последний финиш
|
||||
run=Выполнить
|
||||
times=раз
|
||||
dataAmount=Объем данных
|
||||
averageCleanedServerTime=∅ Очищенное время сервера
|
||||
@@ -923,12 +906,8 @@ selectSheet=Выбрать лист
|
||||
cleanedServerTime=Очищенное время сервера
|
||||
overallTime=Общее время
|
||||
cleanedOverallTime=Очищенное общее время
|
||||
dataMiningResult=Результат добычи данных
|
||||
groupBy=Группировать по
|
||||
statisticToCalculate=Рассчитать статистику
|
||||
queryResultsChartSubtitle=Обработано {0} зап. данных за {1} с
|
||||
noQuerySelected=Не выбран запрос
|
||||
runAutomatically=Выполнить автоматически
|
||||
windImport_Upload=Отправить
|
||||
windImport_Title=Импортировать ветер из Expedition
|
||||
windImport_BoatId=Ид. лодки:
|
||||
@@ -958,14 +937,9 @@ raceTimeTooltip=Общее время хода в данной гонке, от
|
||||
raceTimeDownwindTooltip=Общее время хода по ветру в данной гонке
|
||||
raceTimeReachingTooltip=Общее время хода полным ветром в данной гонке
|
||||
raceTimeUpwindTooltip=Общее время хода против ветра в данной гонке
|
||||
noStatisticSelectedError=Не выбрана статистика для расчета
|
||||
noCustomGrouperScriptTextError=Скрипт группирования пуст
|
||||
noDimensionToGroupBySelectedError=Не выбрано базовое измерение для группировки
|
||||
noGrouperSelectedError=Не выбран тип группирования
|
||||
noDataRetrieverChainDefinitonSelectedError=Не выбрано средство извлечения данных
|
||||
queryNotValidBecause=Запрос невозможен, так как
|
||||
dataMining=Добыча данных
|
||||
errorRunningDataMiningQuery=При выполнении запроса возникла ошибка
|
||||
hideToolbar=Скрыть панель инструментов
|
||||
showSeriesLeaderboards=Показать таблицы лидеров серии
|
||||
showOverallLeaderboard=Показать итоговую таблицу лидеров
|
||||
@@ -988,7 +962,6 @@ id=Ид.
|
||||
allowReload=Разрешить перезагрузку
|
||||
compress=Сжать
|
||||
compressTooltip=Используйте только при выполнении экспортирующего экземпляра\nсервера с commit 0fbf6071dea125bec4a56dee55d61c99def4a62e.
|
||||
queryRunner=Выполнение запроса
|
||||
rerunQueryAfterRefresh=Повторить запрос после обновления
|
||||
refreshIntervalMustntBeEmpty=Интервал обновления не должен быть пустым
|
||||
selectionTables=Таблица выбора
|
||||
@@ -1073,12 +1046,7 @@ TWATooltip=Угол между направлением участников и
|
||||
TWA=Угол истинного ветра
|
||||
showBoatClassChartsLabel=Также можно просмотреть общую диаграмму для доступных классов лодок.
|
||||
showDiagram=Показать диаграмму
|
||||
runAutomaticallyTooltip=Автоматически выполнять запрос после изменения, например, статистики или группирования.
|
||||
rerunQueryAfterRefreshTooltip=Повторно выполняет запрос после обновления таблиц.
|
||||
queryDefinitionProvider=Поставщик определения запроса
|
||||
statisticProvider=Поставщик статистики
|
||||
calculateThe=Рассчитать
|
||||
groupingProvider=Поставщик группирования
|
||||
releaseNotes=Новости и история выпусков
|
||||
hasSplitFleetContiguousScoring=Разделенные флоты получили сходные оценки
|
||||
addRaceLogTracker=Добавить средство отслеживания журнала гонки
|
||||
@@ -1236,7 +1204,6 @@ showAll=Показать все
|
||||
raceVisibilityColumn=Видимость
|
||||
enterCarryValueFor=Введите перенесенные баллы для участника {0}
|
||||
advanced=Дополнительно
|
||||
basedOn=на базе
|
||||
retrieveWith=Получить с помощью
|
||||
mappingDetails=Подробности сопоставления
|
||||
deviceMappingQrCodeExplanation=Если используется приложение отслеживания, можно добавить также сопоставление устройства, выбрав участника/отметку, установив интервал времени, а затем отсканировав этот QR-код.
|
||||
@@ -1247,10 +1214,6 @@ enterImageURL=Ввести URL-адрес изображения...
|
||||
enterVideoURL=Ввести URL-адрес видео...
|
||||
enterSponsorImageURL=Ввести URL-адрес изображения спонсора...
|
||||
enterRaceName=Ввести название гонки...
|
||||
serverError=При попытке обратиться к серверу возникла ошибка. Проверьте подключение к сети и повторите попытку.
|
||||
remoteProcedureCall=Удаленный вызов процедуры
|
||||
serverReplies=Ответы сервера
|
||||
errorCommunicatingWithServer=Ошибка связи с сервером
|
||||
userManagement=Управление пользователями
|
||||
regattaStructureImport=Импорт структуры регаты
|
||||
filteredBy=отфильтровано по
|
||||
@@ -1278,7 +1241,6 @@ noFleetsDefined=Не определены флоты.
|
||||
successfullyCreatedRegattas=Регаты успешно созданы
|
||||
errorTryingToRegisterRacesForTracking=Ошибка при попытке зарегистрировать гонки {0} для отслеживания: {1}. проверьте синтаксис URI оперативных/хранимых данных.
|
||||
errorDeterminingPolarAvailability=Ошибка при определении доступности полярных/VPP данных для гонки {0}: {1}
|
||||
error=Ошибка
|
||||
fileStorage=Хранилище файлов
|
||||
active=Активно
|
||||
scoringSchemeHighPointEssOverallDescription=Оценка в баллах. Победитель в акте получает 10 баллов, 2-й — 9 баллов, .... Любое равенство в общей оценке Extreme Sailing Series разрешается в пользу участника с наибольшим числом побед в актах. В случае равенства числа побед для разрешения используется последний акт.
|
||||
@@ -1319,7 +1281,6 @@ showCompetitorFullNameColumn=Полное имя участника
|
||||
showCompetitorNationalityColumn=Всегда показывать государственную принадлежность участника
|
||||
showCompetitorNationalityColumnTooltip=Показывать и флаги государств, и изображения участников (при наличии)
|
||||
loadingDimensionValues=Загрузка значений измерения
|
||||
runningQuery=Выполнение запроса
|
||||
inviteBuoyTenders=Пригласить лоцманов
|
||||
orMultipleEmails=или несколько адресов эл. почты через запятую
|
||||
courseOverGroundTrueDegreesTooltip=Истинный курс относительно грунта в градусах
|
||||
@@ -1327,11 +1288,6 @@ courseOverGroundTrueDegrees=COG
|
||||
distanceIncludingGateStartInMeters=Дистанция (при старте через ворота)
|
||||
distanceTraveledIncludingGateStartTooltip=Дистанция, пройденная от начала отрезка до конца\nили до текущего момента времени, если отрезок не завершен.\nЕсли отрезок включает старт через ворота, дистанция от отметки до стартовой позиции включается,\nчтобы обеспечить сравнение участников даже при старте в разное время.
|
||||
raceDistanceTraveledIncludingGateStartTooltip=Дистанция, пройденная от начала гонки до конца\nили до текущего момента времени, если гонка не завершена.\nДля старта через ворота включается дистанция от привязки до стартовой позиции,\nчтобы обеспечить сравнение участников даже при старте в разное время.
|
||||
results=Результаты
|
||||
groupName=Название группы
|
||||
valueAscending=Значение (по возрастанию)
|
||||
valueDescending=Значение (по убыванию)
|
||||
sortBy=Сортировать по
|
||||
dashboardHeader=Панель
|
||||
dashboardNoWindBotAvailableHeader=WindBot недоступен.
|
||||
dashboardNoWindBotAvailableMessage=Чтобы получать оперативные данные от устройств измерения ветра, убедитесь, что WindBot включен и подключен к SAP Sailing Analytics.
|
||||
@@ -1367,16 +1323,12 @@ dashboardRCBoat=Лодка ГК
|
||||
fixedMarkPassing=(фиксировано)
|
||||
suppressedMarkPassing=(подавляется)
|
||||
windUp=На ветер (показать ветер сверху карты)
|
||||
filterBy=Фильтровать по
|
||||
currentFilterSelection=Текущий выбор фильтра
|
||||
notCapableOfGeneratingACodeForIdentifier=Я не могу сгенерировать код для этого идентификатора.
|
||||
serverUrl=URL-адрес сервера
|
||||
rotatedFromTrueNorth=Повернуто на {0} град. от истинного севера.
|
||||
clickToToggleWindUp=Коснитесь/щелкните для переключения между отображением карты с ветром или севером вверху
|
||||
clickToToggleWindStreamlets=Коснитесь/щелкните для отображения или скрытия потоков ветра
|
||||
startLineToFirstMarkTriangle=От старта до первой отметки ({0} м)
|
||||
dataMiningComponentsHaveBeenUpdated=Компоненты добычи данных обновлены.
|
||||
dataMiningComponentsNeedReloadDialogMessage=Щелкните ''Перезагрузить'', чтобы перезагрузить компоненты сейчас. Текущее отображение данных будет сброшено с выполнением запроса по умолчанию. Добыча данных не будет работать правильно до перезагрузки компонентов.
|
||||
noDataForEvent=Данных для данного события еще нет.
|
||||
countriesCount={0,number} стран
|
||||
countriesCount[one]={0,number} страна
|
||||
@@ -1474,15 +1426,7 @@ noFinishedRaces=Завершенных гонок еще нет
|
||||
racesOverview=Обзор гонок
|
||||
listFormatLabel=Формат списка
|
||||
competitionFormatLabel=Формат соревнования
|
||||
empty=Пусто
|
||||
runAQuery=Выполнить запрос
|
||||
latestRegattaStandings=Позиции в последней регате
|
||||
plainText=Простой текст
|
||||
columnChart=Столбчатая диаграмма
|
||||
columnChartWithErrorBars=Столбчатая диаграмма с планками погрешностей
|
||||
choosePresentation=Выберите представление
|
||||
cantDisplayDataOfType=Невозможно отобразить данные типа {0}
|
||||
shownDecimals=Отображаемые десятичные разряды
|
||||
openFullscreenView=Открыть полноэкранный режим
|
||||
closeFullscreenView=Закрыть полноэкранный режим
|
||||
videosCount={0,number} видео
|
||||
@@ -1492,15 +1436,8 @@ photosCount[one]={0,number} фото
|
||||
eventsHaveTakenPlace=Имело место {0} событий
|
||||
eventsHaveTakenPlace[one]=Имело место одно событие
|
||||
raceOffice=Служба гонки
|
||||
analyze=Анализировать
|
||||
dataMiningSettings=Параметры добычи данных
|
||||
multiResultsPresenter=Презентатор множества результатов
|
||||
plainResultsPresenter=Презентатор простых результатов
|
||||
resultsChart=Диаграмма результатов
|
||||
tabbedResultsPresenter=Презентатор результатов со вкладками
|
||||
polarResultsPresenter=Полярный презентатор результатов
|
||||
maneuverSpeedDetailsResultsPresenter=Демонстратор результатов детализации скорости маневра
|
||||
dataMiningRetrieval=Извлечение данных
|
||||
actionWatch=Смотреть
|
||||
actionAnalyze=Анализировать
|
||||
denoteAllRacesForRaceLogTrackingShorctut=Ярлык для отмены отслеживания журналов всех гонок
|
||||
@@ -1516,24 +1453,8 @@ defaultName=По умолчанию
|
||||
exampleTextForName=Выше имя выглядит так:
|
||||
flightsCount={0,number} полетов
|
||||
flightsCount[one]={0,number} полет
|
||||
viewQueryDefinition=Просмотреть определение запроса
|
||||
queryDefinitionViewer=Средство просмотра определения запроса
|
||||
groupAverageAscending=Среднее группы (по возрастанию)
|
||||
groupAverageDescending=Среднее группы (по убыванию)
|
||||
groupMedianAscending=Медиана группы (по возрастанию)
|
||||
groupMedianDescending=Медиана группы (по убыванию)
|
||||
resultsFoundForSearch=Найдено {0,number} результатов для ''{1}''
|
||||
resultsFoundForSearch[one]=Найден {0,number} результат для ''{1}''
|
||||
runPredefinedQuery=Выполнить готовый запрос
|
||||
selectPredefinedQuery=Выбрать готовый запрос
|
||||
predefinedQueryRunner=Средство выполнения готовых запросов
|
||||
developerOptions=Параметры разработчика
|
||||
copyToClipboard=Копировать в буфер обмена
|
||||
code=Код
|
||||
useClassGetName=Использовать Class.getName() для имен типов
|
||||
useClassGetNameTooltip=Более надежно по сравнению с изменениями в основании кода, но фрагмент кода может быть использован только в области с доступными классами.
|
||||
useStringLiterals=Использовать строковые литералы для имен типов
|
||||
useStringLiteralsTooltip=Фрагмент кода может использоваться где угодно, но будет нарушен в случае изменения основания кода.
|
||||
errorLoadingDataWithTryAgain=Ошибка при загрузке данных. Повтор попытки через несколько секунд.
|
||||
addGalleryPhoto=Добавить фото галереи
|
||||
addStageImage=Добавить изображение этапа
|
||||
@@ -1553,7 +1474,6 @@ warningForDisabledCompetitors=Регистрация следующих учас
|
||||
competitorToolTipMessage={0} уже присвоен флоту {2} в гонке {3} и поэтому не может быть присвоен флоту {1} в той же самой гонке
|
||||
addMarkToRegatta=Добавить отметку к регате
|
||||
selectALeaderboardGroup=Выбрать группу таблиц лидеров...
|
||||
pleaseSelect=Выберите
|
||||
requiresValidRegatta=Эта страница определяет гонку для отображения по допустимым значениям регаты, столбца гонки и названия флота.
|
||||
couldNotObtainRace=Не удалось получить гонку с названием {1} для флота {2} для регаты с названием {0}: {3}
|
||||
errorTryingToCreateEmbeddedMap=Ошибка при попытке создать внедренную карту: {0}
|
||||
@@ -1833,30 +1753,9 @@ eventRegattaHeaderLegendGpsNo=Нет данных отслеживания
|
||||
eventRegattaHeaderLegendWindNo=Нет данных о ветре
|
||||
eventRegattaHeaderLegendVideoNo=Нет видеопотоков
|
||||
eventRegattaHeaderLegendAudioNo=Нет аудиопотоков
|
||||
angleInDegree=Угол в градусах
|
||||
angleInRadian=Угол в радианах
|
||||
centralAngleInRadian=Центральный угол в градусах
|
||||
centralAngleInDegree=Центральный угол в радианах
|
||||
kilometers=Километры
|
||||
meters=Метры
|
||||
nauticalMiles=Морские мили
|
||||
seaMiles=Морские мили
|
||||
geographicalMiles=Географические мили
|
||||
days=Дни
|
||||
hours=Часы
|
||||
minutes=Минуты
|
||||
seconds=Секунды
|
||||
milliseconds=Миллисекунды
|
||||
floatNumber=Плавающее
|
||||
integer=Целое
|
||||
appendResult=Добавить результат
|
||||
sampleColor=Образец цвета
|
||||
sharedSettingsLink=Связать с настройками
|
||||
leaderboardPage=Страница таблицы лидеров
|
||||
makeDefault=Использовать по умолчанию
|
||||
makeDefaultInProgress=Выполняется...
|
||||
settingsSavedMessage=Текущие настройки успешно заданы для использования по умолчанию
|
||||
settingsSaveErrorMessage=При задании настроек для использования по умолчанию возникла ошибка
|
||||
showLiveNow=Показать "Оперативные данные"
|
||||
useOnlyOneOfStartTimeInferenceAndControlTrackingFromStartAndFinishTimes=Использовать только один из параметров "Вывод о времени старта" и "Контролировать отслеживание от времени старта и финиша"
|
||||
unknownLeaderboardType=Неизвестный тип таблицы лидеров {0}
|
||||
@@ -1875,10 +1774,6 @@ settingsId=Ид. настроек
|
||||
documentSettingsId=Ид. настроек документа
|
||||
settingsForId=Настройки для ид. ''{0}''
|
||||
userProfileSettingsTabDescription=Пользовательские настройки генерируются диалогами настроек, расположенными во многих местах страницы. Здесь отображено техническое представление всех собранных настроек для ключевых пользователей. Соблюдайте осторожность, так как восстановить удаленные записи невозможно.
|
||||
resetToDefault=Восстановить настройки по умолчанию
|
||||
resetToDefaultInProgress=Выполняется сброс...
|
||||
settingsRemoved=Восстановлены настройки по умолчанию
|
||||
settingsRemovedError=Не удалось восстановить настройки по умолчанию
|
||||
userSettingsFilter=Фильтр настроек
|
||||
requiresRegattaRaceAndLeaderboard=Для этой страницы требуются действительные названия регаты, гонки и таблицы лидеров.
|
||||
couldNotFindRaceInRegatta=Не удалось получить гонку с названием {0} для регаты с названием {1}
|
||||
@@ -1910,7 +1805,6 @@ errorFetchingDimensionData=Ошибка при вызове значений и
|
||||
errorFetchingStatistics=Ошибка при вызове доступной статистики с сервера: {0}
|
||||
errorFetchingAggregators=Ошибка при вызове доступных агрегаторов с сервера: {0}
|
||||
errorLoadingDataRetrieverChainDefinitions=Ошибка при вызове доступных определений цепочек извлечения данных: {0}
|
||||
errorFetchingComponentsChangedTimepoint=Ошибка при вызове отметки времени изменения компонентов с сервера: {0}
|
||||
errorRunningQuery=Ошибка при выполнении запроса: {0}
|
||||
errorReadingWindFixes=Ошибка при считывании замеров ветра {0}
|
||||
errorAddingWindFixForRace=Ошибка при добавлении замера ветра для гонки {0}: {1}
|
||||
@@ -1969,7 +1863,7 @@ anniversaryMajorCountdownTeaser[one]=Обратный отсчет! До {1,numb
|
||||
anniversaryMajorCountdownDescription={0,number,#,###}-ая гонка на сайте www.sapsailing.com! Какая из них станет юбилейной? Организатор юбилейной гонки получит 10 000 евро, которые сможет потратить в благотворительных целях. Победитель будет объявлен на нашем сайте, оставайтесь с нами.
|
||||
anniversaryRepdigitCountdownTeaser=Обратный отсчет! До {1,number,#,###} гонки осталось всего {0,number,#,###} гонки(ок).
|
||||
anniversaryRepdigitCountdownTeaser[one]=Обратный отсчет! До {1,number,#,###} гонки осталась всего {0,number,#,###} гонка.
|
||||
anniversaryRepdigitCountdownDescription=Ждем гонку под счастливым номером! Чья гонка станет {0,number, #,###}-ой на сайте www.sapsailing.com? Участники этой гонки получат право на участие в бесплатном высококлассном летнем фестивале от SAP Победитель будет объявлен на нашем сайте, оставайтесь с нами.
|
||||
anniversaryRepdigitCountdownDescription=Ждем гонку под счастливым номером! Чья гонка станет {0,number, #,###}-ой на сайте www.sapsailing.com? Организаторы получат бесплатный барбекю-обед с напитками. Победители будут объявлен на нашем сайте. Оставайтесь с нами.
|
||||
anniversaryAnnouncementTeaser=Миссия выполнена! Проведено {0,number,#,###} гонок с SAP Sailing Analytics!
|
||||
anniversaryAnnouncementDescription=3, 2, 1... Поздравляем участников гонк {0}. Вы победили! Спасибо, что пользуетесь SAP Sailing Analytics. Надеюсь, нас с вами ждет еще множество гонок!
|
||||
anniversaryRaceLinkText=Показать юбилейную гонку
|
||||
@@ -1984,11 +1878,6 @@ minimumRideHeightInMetersTooltip=Минимальная высота просв
|
||||
minimumDurationBetweenAdjacentFoilingSegmentsInSeconds=Минимальная продолжительность между двумя сегментами в крыльевом режиме (сек)
|
||||
minimumDurationBetweenAdjacentFoilingSegmentsInSecondsTooltip=Если поле не является пустым, и время между двумя смежными сегментами в крыльевом режиме не превышает указанное значение, смежные сегменты в крыльевом режиме считаются одним сегментом.
|
||||
needToProvideValidMinimumRideHeight=Укажите действительное значение минимальной высоты просвета в метрах.
|
||||
dataMiningErrorMargins=Пределы погрешности
|
||||
elements={0} элем.
|
||||
chooseDifferentDimensionTitle=Выберите другое измерение
|
||||
chooseDifferentDimensionMessage=Выберите другое измерение для группирования результатов
|
||||
pleaseSelectADimension=Выберите измерение
|
||||
currentPortDaggerboardRake=Скос киля на левый борт
|
||||
currentPortDaggerboardRakeTooltip=Текущий скос выдвижного киля на левый борт
|
||||
currentStbdDaggerboardRake=Скос киля на правый борт
|
||||
@@ -2166,3 +2055,13 @@ multiVideoIdle=Рабочий список неактивен
|
||||
multiVideoDoNoAdd=Не добавлять
|
||||
multiVideoOffsetInput=Смещение глобального видео в мс:
|
||||
multiVideoDescription=Веб-сервер необходим для предоставления списка индекса (подпапки поддерживаются, если проиндексированы) для поиска файлов. После первичного анализа метаданных, содержащихся в файлах mp4, видео, которые должны быть добавлены, необходимо выбрать в столбце с флажками слева. При нажатии кнопки "Добавить аудио/видео" будут созданы медиаканалы для всех выбранных файлов, а файлы будут добавлены ко всем гонкам, выбранным в правом столбце.
|
||||
multiUrlChangeMediaTrack=Адаптировать URL объектов мультимедиа
|
||||
multiUrlChangeReplace=Заменить на
|
||||
multiUrlChangeFind=Найти
|
||||
multiUrlChangeCannotSave=Ошибка при сохранении
|
||||
multiUrlChangeSave=Сохранить изменения URL
|
||||
multiUrlChangeNewURL=Новый URL
|
||||
multiUrlNoPrefixWarning=Общий префикс не найден, это означает, что не все выбранные видео хранятся в одном и том же месте. Можете продолжить на свой риск!
|
||||
multiUrlChangeExplain=В этом диалоговом окне можно выполнить массовую замену общих частей в начале URL объектов мультимедиа. Убедитесь, что все URL имеют одинаковый префикс! Проверьте также столбец с новым URL и протестируйте новые URL перед сохранением!
|
||||
lastEvent=Последнее событие: {0}
|
||||
teaserOverallLinkToolTip=Чтобы увидеть все серии, нажмите желтый треугольник
|
||||
|
||||
+11
-112
@@ -9,12 +9,10 @@ trackedBefore=已跟踪活动的历史记录
|
||||
general=常规
|
||||
listRaces=比赛轮次清单
|
||||
listRegattas=比赛清单
|
||||
numberPairResultsPresenter=散点图
|
||||
wind=风力
|
||||
maneuverType=操作
|
||||
windPanelLabel=这是风力面板,目前完全空白。
|
||||
refresh=刷新
|
||||
remove=移除
|
||||
removeNumber=移除 ({0})
|
||||
windSource=风源
|
||||
dampeningInterval=阻尼间隔
|
||||
@@ -53,7 +51,6 @@ trackedRaceConnectedToSelectedRaceName=跟踪的比赛轮次已连接到所选
|
||||
linkToColumn=链接到列
|
||||
unlink=取消链接
|
||||
leaderboardName=积分榜名称
|
||||
cancel=取消
|
||||
pleaseEnterAName=请输入名称
|
||||
pleaseEnterABoatClass=请输入船只级别
|
||||
discardRacesFromHowManyStartedRacesOn=从已开始的比赛轮次数开始再放弃一个比赛轮次
|
||||
@@ -65,7 +62,6 @@ startingFromNumberOfRaces=从比赛轮次数开始
|
||||
renameLeaderboard=重命名积分榜
|
||||
addColumnToLeaderboard=向积分榜添加列
|
||||
pleaseEnterNameForNewRaceColumn=请输入新比赛轮次列的名称
|
||||
ok=确定
|
||||
medalRace=奖牌轮
|
||||
renameRace=重命名比赛轮次
|
||||
openSelectedLeaderboard=打开选择的积分榜
|
||||
@@ -89,7 +85,6 @@ sapSailingAnalytics=Sailing Analytics
|
||||
leaderboard=积分榜
|
||||
leaderboards=积分榜
|
||||
leaderboardSettings=积分榜设置
|
||||
settings=设置
|
||||
selectAtLeastOneLegDetail=至少选择一个航段详情
|
||||
currentSpeedOverGroundInKnots=SOG
|
||||
currentSpeedOverGroundInKnotsTooltip=当前实际速度。
|
||||
@@ -172,7 +167,6 @@ tacks=迎风转向
|
||||
jibes=顺风转向
|
||||
penaltyCircles=惩罚转圈
|
||||
medalRaceIsNull=不允许奖牌轮值
|
||||
configuration=配置
|
||||
maneuverTypes=操作
|
||||
chooseChart=选择记录
|
||||
distanceTraveled=航行距离
|
||||
@@ -190,13 +184,11 @@ secondsPerNauticalMileUnit=s/NM
|
||||
metersUnit=m
|
||||
millimetersUnit=mm
|
||||
degreesUnit=°
|
||||
close=关闭
|
||||
compareCompetitors=比较参赛队
|
||||
description=描述
|
||||
sailNumber=帆号
|
||||
country=国家/地区
|
||||
no3LetterCodes=无法找到 IOC 3 个字母的代码。
|
||||
add=添加
|
||||
delete=删除
|
||||
showCharts=显示记录
|
||||
raceWithThisNameAlreadyExists=具有此名称的比赛轮次已存在。
|
||||
@@ -268,7 +260,6 @@ printHint=打印应用的版本
|
||||
blockedApplyButton=注册的参赛队不等于配对清单中的参赛队!
|
||||
multiplierInfo=多个航程,彼此相邻,这样就可以减少船只更换情况进行比赛
|
||||
noPairingListAvailable=打印功能仅在配对清单可应用于选择的积分榜比赛轮次日志时可用。
|
||||
settingsForComponent={0}设置
|
||||
noEventsFound=未找到活动
|
||||
noEventSelected=未选择活动
|
||||
noLeaderboardsFound=未找到积分榜
|
||||
@@ -306,8 +297,6 @@ leaderboardGroup=积分榜组
|
||||
pleaseEnterNonEmptyDescription=请输入非空描述
|
||||
groupWithThisNameAlreadyExists=具有此名称的积分榜组已存在。
|
||||
detailsOfLeaderboardGroup=积分榜组详情
|
||||
edit=编辑
|
||||
save=保存
|
||||
abort=中止
|
||||
noLeaderboardGroupWithNameFound=未找到名称为{0}的积分榜组
|
||||
overview=总览
|
||||
@@ -342,7 +331,6 @@ degreesShort=deg
|
||||
untracked=取消跟踪
|
||||
delayForLiveMode=实况模式延迟:
|
||||
notAvailable=不可用
|
||||
details=详情
|
||||
noGroupSelected=未选择分组
|
||||
combinedWindSourceTypeName=组合
|
||||
legMiddleWindSourceTypeName=航段中部
|
||||
@@ -424,7 +412,6 @@ simulateAsLiveRace=模拟实况比赛轮次
|
||||
simulateWithOffset=起航前的偏移(分钟):
|
||||
boatClassDoesNotMatchSelectedRegatta=所选的比赛轮次包含不同于所选比赛船只级别 "{0}" 的船只级别。将不加载比赛轮次。
|
||||
regattaExistForSelectedBoatClass=所选船只级别至少有一场比赛。是否确定为这些比赛轮次创建默认比赛?
|
||||
reload=重新加载
|
||||
addRegatta=添加比赛...
|
||||
importRegattas=导入比赛...
|
||||
exchangeName=交换机名称
|
||||
@@ -646,7 +633,6 @@ totalNetPointsColumnTooltip=参赛队在比赛中的总净分。\n按名次(
|
||||
windData=风力数据
|
||||
gpsData=GPS 数据
|
||||
status=状态
|
||||
noDataFound=未找到数据
|
||||
displayName=显示名称
|
||||
histogram=直方图
|
||||
numberOfDataPoints=数据点数
|
||||
@@ -894,12 +880,9 @@ legType=航段形式
|
||||
sailID=帆号
|
||||
seriesLeaderboard=系列积分榜
|
||||
regattaLeaderboards=比赛积分榜
|
||||
clearSelection=清除选择
|
||||
running=运行
|
||||
runAsSubstantive=运行
|
||||
done=完成
|
||||
lastFinished=最后完成
|
||||
run=运行
|
||||
times=次数
|
||||
dataAmount=数据量
|
||||
averageCleanedServerTime=∅ 清理服务器时间
|
||||
@@ -923,12 +906,8 @@ selectSheet=选择工作表
|
||||
cleanedServerTime=清理服务器时间
|
||||
overallTime=总时间
|
||||
cleanedOverallTime=清理总时间
|
||||
dataMiningResult=数据挖掘结果
|
||||
groupBy=分组方式
|
||||
statisticToCalculate=计算统计
|
||||
queryResultsChartSubtitle={1}秒内处理{0}个数据条目
|
||||
noQuerySelected=没有查询选择
|
||||
runAutomatically=自动运行
|
||||
windImport_Upload=上传
|
||||
windImport_Title=从导航图导入风力
|
||||
windImport_BoatId=船只编号:
|
||||
@@ -958,14 +937,9 @@ raceTimeTooltip=参赛队在本比赛轮次中越过开始航路点\n(不是
|
||||
raceTimeDownwindTooltip=本轮次比赛顺风航行的总时间
|
||||
raceTimeReachingTooltip=本轮次比赛横风航行的总时间
|
||||
raceTimeUpwindTooltip=本轮次比赛迎风航行的总时间
|
||||
noStatisticSelectedError=未选择待计算的统计
|
||||
noCustomGrouperScriptTextError=群集器脚本为空
|
||||
noDimensionToGroupBySelectedError=未选择分组方式尺寸
|
||||
noGrouperSelectedError=未选择群集器类型
|
||||
noDataRetrieverChainDefinitonSelectedError=未选择数据检索器
|
||||
queryNotValidBecause=无法查询,原因:
|
||||
dataMining=数据挖掘
|
||||
errorRunningDataMiningQuery=运行查询期间出错
|
||||
hideToolbar=隐藏工具栏
|
||||
showSeriesLeaderboards=显示系列积分榜
|
||||
showOverallLeaderboard=显示总积分榜
|
||||
@@ -988,7 +962,6 @@ id=编号
|
||||
allowReload=允许重新加载
|
||||
compress=压缩
|
||||
compressTooltip=仅在导出服务器实例至少通过\n任务 0fbf6071dea125bec4a56dee55d61c99def4a62e 运行时使用。
|
||||
queryRunner=查询执行器
|
||||
rerunQueryAfterRefresh=在刷新后重新运行查询
|
||||
refreshIntervalMustntBeEmpty=刷新间隔不得为空
|
||||
selectionTables=选择表
|
||||
@@ -1073,12 +1046,7 @@ TWATooltip=赛队航行的方向和风的夹角
|
||||
TWA=实际风向角
|
||||
showBoatClassChartsLabel=还可以查看可用船只级别的总直直方图。
|
||||
showDiagram=显示直方图
|
||||
runAutomaticallyTooltip=在更改统计或分组后,自动运行查询。
|
||||
rerunQueryAfterRefreshTooltip=在刷新表后,重新运行查询。
|
||||
queryDefinitionProvider=查询定义提供方
|
||||
statisticProvider=统计提供方
|
||||
calculateThe=计算
|
||||
groupingProvider=分组提供方
|
||||
releaseNotes=消息和版本历史
|
||||
hasSplitFleetContiguousScoring=区分连续得分的船队
|
||||
addRaceLogTracker=添加比赛轮次日志跟踪器
|
||||
@@ -1236,7 +1204,6 @@ showAll=显示全部
|
||||
raceVisibilityColumn=可见性
|
||||
enterCarryValueFor=输入参赛队{0}的得分
|
||||
advanced=高级
|
||||
basedOn=基于
|
||||
retrieveWith=检索依据
|
||||
mappingDetails=映射详情
|
||||
deviceMappingQrCodeExplanation=如果使用跟踪应用,可以通过选择参赛队/标志、设置开始和结束时间,然后扫描此二维码添加设备映射。
|
||||
@@ -1247,10 +1214,6 @@ enterImageURL=输入图像 URL...
|
||||
enterVideoURL=输入视频 URL...
|
||||
enterSponsorImageURL=输入赞助商图像 URL...
|
||||
enterRaceName=输入比赛轮次名称...
|
||||
serverError=尝试联系服务器时出错。请检查网络连接,并重试。
|
||||
remoteProcedureCall=远程过程调用
|
||||
serverReplies=服务器应答
|
||||
errorCommunicatingWithServer=与服务器通信时发生错误
|
||||
userManagement=用户管理
|
||||
regattaStructureImport=比赛结构导入
|
||||
filteredBy=筛选方式
|
||||
@@ -1278,7 +1241,6 @@ noFleetsDefined=未定义船队。
|
||||
successfullyCreatedRegattas=已成功创建比赛
|
||||
errorTryingToRegisterRacesForTracking=尝试注册比赛轮次{0}用于跟踪出错: {1}。检查实况/存储的 URI 语法。
|
||||
errorDeterminingPolarAvailability=确定比赛轮次{0}的极坐标/VPP 数据的可用性出错: {1}
|
||||
error=错误
|
||||
fileStorage=文件存储
|
||||
active=已激活
|
||||
scoringSchemeHighPointEssOverallDescription=得分。 分站赛获胜者得 10 分、第 2 名 9 分、.... 在总体极限帆船系列赛中如有平局,以获得最多分站赛名次的参赛队取得胜利。 如果仍有平局,就以最后一个分站赛的名次打破平局。
|
||||
@@ -1319,7 +1281,6 @@ showCompetitorFullNameColumn=参赛队全名
|
||||
showCompetitorNationalityColumn=始终显示参赛队国籍
|
||||
showCompetitorNationalityColumnTooltip=如果可用,显示两者:国籍旗帜和参赛队图像
|
||||
loadingDimensionValues=正在加载尺寸值
|
||||
runningQuery=运行查询
|
||||
inviteBuoyTenders=邀请浮标供应船
|
||||
orMultipleEmails=或使用逗号隔开的多个电子邮件
|
||||
courseOverGroundTrueDegreesTooltip=实在对地航向角度
|
||||
@@ -1327,11 +1288,6 @@ courseOverGroundTrueDegrees=对地航向
|
||||
distanceIncludingGateStartInMeters=距离(起航门标)
|
||||
distanceTraveledIncludingGateStartTooltip=如果航段没有结束,从航段起点到终点\n或当前时间点航行的距离。\n如果航段包括起航门标,则包括尾销到起航位置的距离,\n这样,即便在不同时间起航,也可以比较参赛队。
|
||||
raceDistanceTraveledIncludingGateStartTooltip=如果比赛轮次没有结束,从比赛轮次开始到结束\n或当前时间点航行的距离。对于起航门标,包括尾销到起航位置的距离,\n这样,即便在不同时间起航,也可以比较参赛队。
|
||||
results=结果
|
||||
groupName=分组名称
|
||||
valueAscending=值(递增)
|
||||
valueDescending=值(递减)
|
||||
sortBy=排序方式
|
||||
dashboardHeader=仪表盘
|
||||
dashboardNoWindBotAvailableHeader=风力机器人程序不可用。
|
||||
dashboardNoWindBotAvailableMessage=要从风力测量装置接收实况风力数据,请确保开启风力机器人程序,并与 SAP Sailing Analytics 相连。
|
||||
@@ -1367,16 +1323,12 @@ dashboardRCBoat=RC 船只
|
||||
fixedMarkPassing=(固定)
|
||||
suppressedMarkPassing=(禁止)
|
||||
windUp=风向向上(从地图的顶部显示风力)
|
||||
filterBy=筛选方式
|
||||
currentFilterSelection=当前筛选器选择
|
||||
notCapableOfGeneratingACodeForIdentifier=无法为此标识符生成代码。
|
||||
serverUrl=服务器 URL
|
||||
rotatedFromTrueNorth=自真北方向旋转{0}度。
|
||||
clickToToggleWindUp=点按/点击在风向向上和北向上地图显示之间切换
|
||||
clickToToggleWindStreamlets=点按/点击显示或隐藏风流
|
||||
startLineToFirstMarkTriangle=开始经过第一个标志 ({0}m)
|
||||
dataMiningComponentsHaveBeenUpdated=数据挖掘组件已更新
|
||||
dataMiningComponentsNeedReloadDialogMessage=点击“重新加载”,立即重新加载组件。这将放弃当前显示的数据,并运行默认查询。\n点击“关闭”不执行任何操作。在重新加载组件前,数据挖掘不能正常工作。
|
||||
noDataForEvent=活动暂无任何数据。
|
||||
countriesCount={0,number} 个国家/地区
|
||||
countriesCount[one]={0,number} 个国家/地区
|
||||
@@ -1474,15 +1426,7 @@ noFinishedRaces=没有结束的比赛轮次
|
||||
racesOverview=比赛轮次总览
|
||||
listFormatLabel=清单格式
|
||||
competitionFormatLabel=赛制
|
||||
empty=空
|
||||
runAQuery=运行查询
|
||||
latestRegattaStandings=最新比赛排名
|
||||
plainText=纯文本
|
||||
columnChart=柱状图
|
||||
columnChartWithErrorBars=含误差线的柱状图
|
||||
choosePresentation=选择介绍
|
||||
cantDisplayDataOfType=无法显示类型为{0}的数据
|
||||
shownDecimals=显示小数
|
||||
openFullscreenView=打开全屏视图
|
||||
closeFullscreenView=关闭全屏视图
|
||||
videosCount={0,number} 个视频
|
||||
@@ -1492,15 +1436,8 @@ photosCount[one]={0,number} 张照片
|
||||
eventsHaveTakenPlace={0}个活动已举行
|
||||
eventsHaveTakenPlace[one]=已举行一场活动
|
||||
raceOffice=竞赛办公室
|
||||
analyze=分析
|
||||
dataMiningSettings=数据挖掘设置
|
||||
multiResultsPresenter=多结果展示区
|
||||
plainResultsPresenter=纯结果展示区
|
||||
resultsChart=结果记录
|
||||
tabbedResultsPresenter=选项卡式结果展示区
|
||||
polarResultsPresenter=极坐标结果展示区
|
||||
maneuverSpeedDetailsResultsPresenter=操作速度详细结果展示区
|
||||
dataMiningRetrieval=数据检索
|
||||
actionWatch=观看
|
||||
actionAnalyze=分析
|
||||
denoteAllRacesForRaceLogTrackingShorctut=为比赛轮次日志跟踪描述所有比赛轮次的快捷方式
|
||||
@@ -1516,24 +1453,8 @@ defaultName=默认值
|
||||
exampleTextForName=名称如下所示:
|
||||
flightsCount={0,number} 个航程
|
||||
flightsCount[one]={0,number} 个航程
|
||||
viewQueryDefinition=查看查询定义
|
||||
queryDefinitionViewer=查询定义查看器
|
||||
groupAverageAscending=分组平均值(递增)
|
||||
groupAverageDescending=分组平均值(递减)
|
||||
groupMedianAscending=分组中值(递增)
|
||||
groupMedianDescending=分组中值(递减)
|
||||
resultsFoundForSearch=找到 "{1}" 的 {0,number} 个结果
|
||||
resultsFoundForSearch[one]=找到 "{1}" 的 {0,number} 个结果
|
||||
runPredefinedQuery=运行预定义的查询
|
||||
selectPredefinedQuery=选择预定义的查询
|
||||
predefinedQueryRunner=预定义的查询执行器
|
||||
developerOptions=开发人员选项
|
||||
copyToClipboard=复制到剪贴板
|
||||
code=代码
|
||||
useClassGetName=将 Class.getName() 用于类型名称
|
||||
useClassGetNameTooltip=更灵活应对代码库的更改,但是代码片段只能在级别可用的范围内使用。
|
||||
useStringLiterals=将字符串文本用于类型名称
|
||||
useStringLiteralsTooltip=代码片段可在任意位置使用,当如果基本代码更改,其将中断。
|
||||
errorLoadingDataWithTryAgain=加载数据出错。请稍后重试。
|
||||
addGalleryPhoto=添加图库照片
|
||||
addStageImage=添加阶段图像
|
||||
@@ -1553,7 +1474,6 @@ warningForDisabledCompetitors=以下参赛队无法注册此比赛轮次:{0}
|
||||
competitorToolTipMessage={0}已分配到比赛轮次{3}中的船队{2},因此,无法分配到同一比赛轮次中的船队{1}
|
||||
addMarkToRegatta=向比赛添加标志
|
||||
selectALeaderboardGroup=选择积分榜组...
|
||||
pleaseSelect=请选择
|
||||
requiresValidRegatta=此页面需要有效的比赛、比赛轮次列和船队名称,才能识别显示的比赛轮次。
|
||||
couldNotObtainRace=无法为名称为{0}的比赛获取船队{2}名称为{1}的比赛轮次: {3}
|
||||
errorTryingToCreateEmbeddedMap=尝试创建嵌入式地图出错: {0}
|
||||
@@ -1833,30 +1753,9 @@ eventRegattaHeaderLegendGpsNo=无跟踪数据
|
||||
eventRegattaHeaderLegendWindNo=无风力数据
|
||||
eventRegattaHeaderLegendVideoNo=无视频流
|
||||
eventRegattaHeaderLegendAudioNo=无音频流
|
||||
angleInDegree=角度(度)
|
||||
angleInRadian=角度(弧度)
|
||||
centralAngleInRadian=圆心角(弧度)
|
||||
centralAngleInDegree=圆心角(度)
|
||||
kilometers=千米
|
||||
meters=米
|
||||
nauticalMiles=海里
|
||||
seaMiles=海里
|
||||
geographicalMiles=地理英里
|
||||
days=天
|
||||
hours=小时
|
||||
minutes=分钟
|
||||
seconds=秒
|
||||
milliseconds=毫秒
|
||||
floatNumber=浮点数
|
||||
integer=整数
|
||||
appendResult=附加结果
|
||||
sampleColor=颜色样本
|
||||
sharedSettingsLink=链接与设置
|
||||
leaderboardPage=积分榜页面
|
||||
makeDefault=设为默认值
|
||||
makeDefaultInProgress=正在进行...
|
||||
settingsSavedMessage=当前设置已成功设为默认设置
|
||||
settingsSaveErrorMessage=将设置设为默认设置时发生错误
|
||||
showLiveNow=显示“现在直播”
|
||||
useOnlyOneOfStartTimeInferenceAndControlTrackingFromStartAndFinishTimes=仅使用“开始时间推断”和“从开始和结束时间控制跟踪”中的其中一个
|
||||
unknownLeaderboardType=积分榜类型{0}未知
|
||||
@@ -1875,10 +1774,6 @@ settingsId=设置编号
|
||||
documentSettingsId=文档设置编号
|
||||
settingsForId=编号 ''''{0}'''' 的设置
|
||||
userProfileSettingsTabDescription=用户设置由可在页面多个位置找到的设置对话生成。此视图以技术方式为高级用户显示收集的所有设置。请注意,移除的条目无法恢复,请谨慎使用。
|
||||
resetToDefault=重置为默认值
|
||||
resetToDefaultInProgress=正在重置...
|
||||
settingsRemoved=默认设置已恢复
|
||||
settingsRemovedError=无法恢复默认设置
|
||||
userSettingsFilter=设置筛选器
|
||||
requiresRegattaRaceAndLeaderboard=此页面需要有效的比赛名称、比赛轮次名称和积分榜名称。
|
||||
couldNotFindRaceInRegatta=无法为名称为{1}的比赛获取名称为{0}的比赛轮次
|
||||
@@ -1910,7 +1805,6 @@ errorFetchingDimensionData=获取{0}的维度值出错:{1}
|
||||
errorFetchingStatistics=从服务器获取可用统计出错:{0}
|
||||
errorFetchingAggregators=从服务器获取可用聚合器出错:{0}
|
||||
errorLoadingDataRetrieverChainDefinitions=检索可用 DataRetrieverChainDefinitions 出错:{0}
|
||||
errorFetchingComponentsChangedTimepoint=从服务器获取组件更改的时间点出错:{0}
|
||||
errorRunningQuery=运行查询出错:{0}
|
||||
errorReadingWindFixes=读取风力修复{0}出错
|
||||
errorAddingWindFixForRace=添加比赛轮次{0}的风力修复出错:{1}
|
||||
@@ -1969,7 +1863,7 @@ anniversaryMajorCountdownTeaser[one]=倒计时!距离第{1,number,#,###}轮比
|
||||
anniversaryMajorCountdownDescription=我们正在 www.sapsailing.com 上庆祝第{0,number,#,###}轮比赛!哪轮比赛会打破记录?本周年纪念赛的主办机构将获得共计 10,000 欧元作为慈善用途。获胜者将在本网站上公布。敬请关注,让我们拭目以待。
|
||||
anniversaryRepdigitCountdownTeaser=倒计时!距离第{1,number,#,###}轮比赛仅剩{0,number,#,###}轮比赛。
|
||||
anniversaryRepdigitCountdownTeaser[one]=倒计时!距离第{1,number,#,###}轮比赛仅剩{0,number,#,###}轮比赛。
|
||||
anniversaryRepdigitCountdownDescription=我们正在庆祝幸运号码赛!谁将在 www.sapsailing.com 上进行的第{0,number, #,###}轮比赛中获胜?这次比赛的参赛者将获得 SAP 提供的免费一流夏日嘉年华活动。获胜者将在本网站上公布。敬请关注,让我们拭目以待。
|
||||
anniversaryRepdigitCountdownDescription=我们正在庆祝幸运号码赛!谁将在 www.sapsailing.com 上进行的第{0,number, #,###}轮比赛中获胜?主办机构将获得免费烧烤和饮料。获胜者将在本网站上公布。敬请关注,让我们拭目以待。
|
||||
anniversaryAnnouncementTeaser=任务圆满完成!使用 SAP Sailing Analytics 完成{0,number,#,###}轮比赛!
|
||||
anniversaryAnnouncementDescription=3,2,1...我们祝贺{0}比赛的参赛者。你们做到了!我们感谢您对 SAP Sailing Analytics 的信任,并希望与你们在以后的 10,000 多场比赛中继续并肩作战!
|
||||
anniversaryRaceLinkText=显示周年纪念赛
|
||||
@@ -1984,11 +1878,6 @@ minimumRideHeightInMetersTooltip=将船只视为处于水翼腾空状态所需
|
||||
minimumDurationBetweenAdjacentFoilingSegmentsInSeconds=相邻水翼腾空段之间的最短持续时间 (s)
|
||||
minimumDurationBetweenAdjacentFoilingSegmentsInSecondsTooltip=如果不为空,并且两个相邻水翼腾空段之间的时间短于此值,会将这些相邻的水翼腾空段合并成一个。
|
||||
needToProvideValidMinimumRideHeight=您需要提供有效的最小行驶高度值(米)。
|
||||
dataMiningErrorMargins=误差容限
|
||||
elements={0}元素
|
||||
chooseDifferentDimensionTitle=选择不同的维度
|
||||
chooseDifferentDimensionMessage=为分组结果选择不同的维度
|
||||
pleaseSelectADimension=请选择维度
|
||||
currentPortDaggerboardRake=左舷活动披水板倾斜度
|
||||
currentPortDaggerboardRakeTooltip=当前左舷活动披水板倾斜度
|
||||
currentStbdDaggerboardRake=右舷活动披水板倾斜度
|
||||
@@ -2166,3 +2055,13 @@ multiVideoIdle=工作队列空闲
|
||||
multiVideoDoNoAdd=请勿添加
|
||||
multiVideoOffsetInput=全球视频偏移量(毫秒):
|
||||
multiVideoDescription=需要 Web 服务器提供索引清单(如果已编入索引,则支持的子文件夹),以允许发现文件。初始分析 mp4 文件中包含的元数据后,需要通过左侧的复选框列选择应添加的视频。“添加音频/视频”按钮将为所有选择的文件创建媒体轨道,并将这些文件添加到右列中选择的所有比赛轮次中。
|
||||
multiUrlChangeMediaTrack=调整多个媒体轨道 URL
|
||||
multiUrlChangeReplace=替换为
|
||||
multiUrlChangeFind=查找
|
||||
multiUrlChangeCannotSave=保存时出错
|
||||
multiUrlChangeSave=保存 URL 更改
|
||||
multiUrlChangeNewURL=新 URL
|
||||
multiUrlNoPrefixWarning=未找到通用前缀,这通常意味着并非所有选定的视频都被托管在当前的相同位置。如继续操作,后果自负!
|
||||
multiUrlChangeExplain=此对话框将在媒体轨道 URL 的起始处批量替换通用部分。确保所有 URL 都以相同的前缀开头!也请注意新的 URL 列,然后在保存之前测试生成的 URL!
|
||||
lastEvent=上次活动:{0}
|
||||
teaserOverallLinkToolTip=请查看整体系列赛,请点击黄色角落
|
||||
|
||||
+1
-1
@@ -54,7 +54,7 @@ public class BoatClassVectorGraphicsResolver {
|
||||
BoatClassMasterdata.TOM_28_MAX, BoatClassMasterdata.DELPHIA_24,
|
||||
BoatClassMasterdata.RS200, BoatClassMasterdata.RS400, BoatClassMasterdata.RS500, BoatClassMasterdata.RS800,
|
||||
BoatClassMasterdata.STREAMLINE, BoatClassMasterdata.SWAN_45, BoatClassMasterdata.TEENY, BoatClassMasterdata.X_99,
|
||||
BoatClassMasterdata.TRIAS, BoatClassMasterdata.VENT_D_OUEST, BoatClassMasterdata.FLYING_JUNIOR, BoatClassMasterdata.VAURIEN);
|
||||
BoatClassMasterdata.TRIAS, BoatClassMasterdata.VENT_D_OUEST, BoatClassMasterdata.FLYING_JUNIOR, BoatClassMasterdata.VAURIEN, BoatClassMasterdata.VARIANTA);
|
||||
BoatClassVectorGraphics circle = new CircleVectorGraphics(BoatClassMasterdata.RUNNING);
|
||||
|
||||
defaultBoatVectorGraphics = dinghyWithSpinnaker; // TODO see bug 2571; this should be a slup-rigged icon working for 470, 505, J/70 etc.
|
||||
|
||||
+13
-5
@@ -18,6 +18,7 @@ import java.net.URLConnection;
|
||||
import java.net.URLEncoder;
|
||||
import java.nio.channels.Channels;
|
||||
import java.nio.charset.StandardCharsets;
|
||||
import java.nio.file.Files;
|
||||
import java.text.DateFormat;
|
||||
import java.text.SimpleDateFormat;
|
||||
import java.util.Date;
|
||||
@@ -241,17 +242,24 @@ public class MediaServiceImpl extends RemoteServiceServlet implements MediaServi
|
||||
try {
|
||||
tmp = createFileFromData(start, end, skipped);
|
||||
try (IsoFile isof = new IsoFile(tmp)) {
|
||||
recordStartedTimer = determineRecordingStart(isof);
|
||||
spherical = determine360(isof);
|
||||
duration = determineDuration(isof);
|
||||
removeTempFiles(isof);
|
||||
try {
|
||||
recordStartedTimer = determineRecordingStart(isof);
|
||||
spherical = determine360(isof);
|
||||
duration = determineDuration(isof);
|
||||
} finally {
|
||||
removeTempFiles(isof);
|
||||
}
|
||||
}
|
||||
} catch (Exception e) {
|
||||
logger.log(Level.WARNING, "Error in video analysis ", e);
|
||||
message = e.getMessage();
|
||||
} finally {
|
||||
if (tmp != null) {
|
||||
tmp.delete();
|
||||
try {
|
||||
Files.delete(tmp.toPath());
|
||||
} catch (IOException e) {
|
||||
logger.log(Level.SEVERE, "Could not delete tmp mp4 file", e);
|
||||
}
|
||||
}
|
||||
}
|
||||
return new VideoMetadataDTO(true, duration, spherical, recordStartedTimer, message);
|
||||
|
||||
BIN
Binary file not shown.
|
After Width: | Height: | Size: 3.4 KiB |
@@ -30,6 +30,8 @@
|
||||
<li>In the "Tracked races" tab, within the eponymous section of the AdminConsole, the "Set start
|
||||
time received" dialog can be used to remove the currently set start time received, by simply
|
||||
leaving the value empty and confirming the dialog.</li>
|
||||
<li>Up to 15 discards can now be configured for series and leaderboards. This enables, e.g., "Wednesday Night" scenarios
|
||||
where over the season, say, 20 races are run but due to changing participation only, say, the five best ones shall be scored.</li>
|
||||
</ul>
|
||||
|
||||
<h2 class="articleSubheadline">June 2018</h2>
|
||||
|
||||
@@ -88,7 +88,6 @@ ADDITIONAL_JAVA_ARGS="-Dpersistentcompetitors.clear=false -XX:ThreadPriorityPoli
|
||||
# Uncomment for use with SAP JVM only:
|
||||
#ADDITIONAL_JAVA_ARGS="$ADDITIONAL_JAVA_ARGS -XX:+GCHistory -XX:GCHistoryFilename=logs/sapjvm_gc@PID.prf"
|
||||
|
||||
JAVA_HOME=/opt/jdk1.8.0_20
|
||||
if [[ ! -d $JAVA_HOME ]] && [[ -f "/usr/libexec/java_home" ]]; then
|
||||
JAVA_HOME=`/usr/libexec/java_home`
|
||||
fi
|
||||
|
||||
@@ -8,7 +8,7 @@ There are two ways to run the Selenium tests locally on your computer. Either, y
|
||||
|
||||
### Firefox Prerequisites
|
||||
|
||||
!Since old Firefox version do not work with WindowScaling, ensure that in windows the Font Scaling is set to 100%, else Firefox will not be able to click buttons. You can find this setting at "Settings>Display Settings>Change the size of text, apps and other items"!
|
||||
!Since old Firefox version do not work with WindowScaling, ensure that in windows the Font Scaling is set to 100%, else Firefox will not be able to click buttons. You can find this setting at "Settings>Display Settings>Change the size of text, apps and other items". Also make sure that Firefox is running maximized (at least at Windows) as per default it is not running maximized!
|
||||
|
||||
You have to ensure that your Firefox browser has a profile called "Selenium" and that in this profile the latest version of the GWT plugin is installed. To ensure this, launch the server by choosing the "Sailing Server (Proxy)" or "Sailing Server (No Proxy)" launch config. Then, run the "SailingGWT" launch to start the GWT UI in hosted / development mode. Afterwards you can launch Firefox from the command line with the -p option. On Windows machines, you can do this by pressing the Windows key, then typing "firefox.exe -p". In the profile manager create a profile called Selenium and start Firefow with that profile. Hit the entry page of the AdminConsole by entering `http://127.0.0.1:8888/gwt/AdminConsole.html?gwt.codesvr=127.0.0.1:9997` into the address bar. This will ask you to install the GWT plugin into your Selenium profile. When done, exit the browser. You may use the profile manager again to set your default profile to your original profile.
|
||||
|
||||
|
||||
+13
-10
@@ -8,11 +8,11 @@ First of all, make sure you've looked at [http://www.amazon.de/Patterns-Elements
|
||||
|
||||
#### Installations
|
||||
|
||||
1. Eclipse (Eclipse IDE for Eclipse Committers, version 4.7.2 ["Oxygen SR2"](http://www.eclipse.org/downloads/packages/eclipse-ide-eclipse-committers/oxygen2)), [http://www.eclipse.org](http://www.eclipse.org)
|
||||
1. Eclipse (Eclipse IDE for Eclipse Committers, version 4.8.0 ["Photon"](http://www.eclipse.org/downloads/packages/eclipse-ide-eclipse-committers/photonr)), [http://www.eclipse.org](http://www.eclipse.org)
|
||||
2. Eclipse Extensions
|
||||
* Install GWT Eclipse plugin for Eclipse ([https://github.com/gwt-plugins/gwt-eclipse-plugin](https://github.com/gwt-plugins/gwt-eclipse-plugin) using [http://storage.googleapis.com/gwt-eclipse-plugin/v3/release](http://storage.googleapis.com/gwt-eclipse-plugin/v3/release) as the update site URL)
|
||||
* Install Eclipse debugger for GWT SuperDevMode (master version: [http://p2.sapsailing.com/p2/sdbg](http://p2.sapsailing.com/p2/sdbg); public release: [http://sdbg.github.io/p2](http://sdbg.github.io/p2))
|
||||
3. Git (e.g. Git for Windows v2.12.2), [http://git-scm.com](http://git-scm.com) / [https://git-for-windows.github.io](https://git-for-windows.github.io)
|
||||
3. Git (e.g. Git for Windows v2.18), [http://git-scm.com](http://git-scm.com) / [https://git-for-windows.github.io](https://git-for-windows.github.io)
|
||||
4. MongoDB (e.g. Production Release 2.6.7), download: [https://www.mongodb.com/](https://www.mongodb.com/)
|
||||
5. RabbitMQ, download from [http://www.rabbitmq.com](http://www.rabbitmq.com). Requires Erlang to be installed. RabbitMQ installer will assist in installing Erlang. Some sources report that there may be trouble with latest versions of RabbitMQ. In some cases, McAffee seems to block the installation of the latest version on SAP hardware; in other cases connection problems to newest versions have been reported. We know that version 3.6.8 works well. [https://github.com/rabbitmq/rabbitmq-server/releases/tag/rabbitmq_v3_6_8](https://github.com/rabbitmq/rabbitmq-server/releases/tag/rabbitmq_v3_6_8) is the link.
|
||||
6. JDK 1.7 (Java SE 7), [http://www.oracle.com/technetwork/java/javase/downloads/java-archive-downloads-javase7-521261.html](http://www.oracle.com/technetwork/java/javase/downloads/java-archive-downloads-javase7-521261.html)
|
||||
@@ -23,9 +23,9 @@ First of all, make sure you've looked at [http://www.amazon.de/Patterns-Elements
|
||||
|
||||
#### Automatic Eclipse plugin installation
|
||||
|
||||
The necessary Eclipse plugins described above can be automatically be installed into a newly unzipped version of [Eclipse IDE for Eclipse Committers 4.7.2 "Oxygen.2"](http://www.eclipse.org/downloads/packages/eclipse-ide-eclipse-committers/oxygen2) by using the script "configuration/installPluginsForEclipseOxygen.sh". In addition, the script applies some updates to plugins packaged with Eclipse itself. To start the plugin installation, run the following command using your Eclipse installation directory as command line parameter for the script:
|
||||
The necessary Eclipse plugins described above can be automatically be installed into a newly unzipped version of [Eclipse IDE for Eclipse Committers 4.8.0 "Photon"](http://www.eclipse.org/downloads/packages/eclipse-ide-eclipse-committers/photonr) by using the script "configuration/installPluginsForEclipsePhoton.sh". In addition, the script applies some updates to plugins packaged with Eclipse itself. To start the plugin installation, run the following command using your Eclipse installation directory as command line parameter for the script:
|
||||
|
||||
./installPluginsForEclipseOxygen.sh "/some/path/on/my/computer/eclipse"
|
||||
./installPluginsForEclipsePhoton.sh "/some/path/on/my/computer/eclipse"
|
||||
|
||||
Be aware that with this script it's not possible to update the plugins to newer versions. Instead you can install a new version by unpacking the base package and executing the script.
|
||||
|
||||
@@ -63,15 +63,19 @@ The primary Git repository for the project is hosted on sapsailing.com. It is mi
|
||||
* Clone the repository to your local file system from `ssh://[SAP-User]@git.wdf.sap.corp:29418/SAPSail/sapsailingcapture.git` or `ssh://[user]@sapsailing.com/home/trac/git` User "trac" has all public ssh keys.
|
||||
* Please note that when using one of the newer versions of Cygwin, your Cygwin home folder setting might differ from your Windows home folder. This will likely lead to problems when issuing certain commands. For troubleshooting, take a look at the following thread: [https://stackoverflow.com/questions/1494658/how-can-i-change-my-cygwin-home-folder-after-installation](https://stackoverflow.com/questions/1494658/how-can-i-change-my-cygwin-home-folder-after-installation)
|
||||
2. Check out the 'master' branch from the git repository. The 'master' branch is the main development branch. Please check that you start your work on this branch.
|
||||
2. Configure your local git repository
|
||||
* Execute the command `git config core.autocrlf false` in the git repository
|
||||
* Ensure that your git username and email is set properly: In case you are unsure, use the commands `git config user.name "My Name"` and `git config user.email my.email@sap.com` in the git repository.
|
||||
3. Setup and configure Eclipse
|
||||
* Make absolutely sure to import CodeFormatter.xml (from $GIT_HOME/java) into your Eclipse preferences (Preferences->Java->Code Style->Formatter)
|
||||
* Install the Eclipse GWT-Plugin (now called Google Plugin for Eclipse)
|
||||
* Install the Google Android SDK (see section "Additional steps required for Android projects" for detailed info!)
|
||||
* Install the required plugins using the script provided above. Further configuration steps depend on the plugins being installed successfully. As an alternative, the steps done by the script can be performed manually:
|
||||
* Install the Eclipse GWT-Plugin (now called Google Plugin for Eclipse)
|
||||
* Install the Google Android SDK (see section "Additional steps required for Android projects" for detailed info!)
|
||||
* In Eclipse go to "Window->Preferences->Java->Build Path->Classpath Variables" and create a new classpath variable called ``ANDROID_HOME``. Set its value to the install location of your Android SDK, e.g., ``c:\apps\android-sdk-windows`` or ``/usr/local/android-sdk-linux``.
|
||||
* Install GWT SDK and add the SDK in Eclipse (Preferences -> GWT -> GWT Settings -> Add...)
|
||||
* In "Window->Preferences->GWT->Errors/Warnings, set "Missing SDK" to "Ignore"
|
||||
* In "Window->Preferences->General->Editors->TextEditors" check Insert Spaces for Tabs
|
||||
* <del>In "Window->Preferences->Web->HTML Files->Editor" indent using Spaces</del>
|
||||
* In "Window->Preferences->Web->HTML Files->Editor" indent using Spaces
|
||||
* In "Window->Preferences->General->Content Types" select on the right side CSS, now add in the lower file association list *.gss to get limited syntax highlighting and content assist in GSS files
|
||||
* Install Eclipse debugger for GWT SuperDevMode
|
||||
* Install Eclipse eGit (optional)
|
||||
@@ -79,7 +83,7 @@ The primary Git repository for the project is hosted on sapsailing.com. It is mi
|
||||
* Check that the both JDKs are available (Windows->Preferences->Java->Installed JREs)
|
||||
* Check that JDK 1.7 has been matched to JavaSE-1.7 and that JDK 1.8 has been matched to JavaSE-1.8 (...>Installed JREs>Execution Environments)
|
||||
* It is also possible to match the SAPJVM 7 or 8 to JavaSE-1.7 / JavaSE-1.8 (for profiling purposes)
|
||||
* <del>Go to Windows->Preferences->Google->Errors/Warnings and set "Missing SDK" to "Ignore"</del>
|
||||
* Go to Windows->Preferences->GWT->Errors/Warnings and set "Missing SDK" to "Ignore"
|
||||
* Import all Race Analysis projects from the `java/` subdirectory of the git main folder (make sure to import via the wizard <del>"Git->Projects from Git"</del> "Import->General->Projects from Folder or Archive" in Eclipse, and additionally make sure to scan for nested projects!)
|
||||
* Import all projects from the `mobile/` subdirectory of the git main folder; this in particular contains the race committee app projects
|
||||
* Set the Eclipse target platform to race-analysis-p2-remote.target (located in com.sap.sailing.targetplatform/definitions)
|
||||
@@ -99,8 +103,7 @@ The primary Git repository for the project is hosted on sapsailing.com. It is mi
|
||||
* Press "List Races"
|
||||
|
||||
#### Git repository configuration essentials
|
||||
|
||||
The project has some configuration of line endings for specific file types in ".gitattributes". To make this work as intended, you need to set the git attribute "core.autocrlf" to "false". This can be done by navigating to your local repository in a Bach/Git Bach/Cygwin instance and executing the command `git config core.autocrlf false`.
|
||||
The project has some configuration of line endings for specific file types in ".gitattributes". To make this work as intended, you need to ensure that the git attribute "core.autocrlf" is set to "false". This can be done by navigating to your local repository in a Bach/Git Bach/Cygwin instance and executing the command `git config core.autocrlf false`.
|
||||
|
||||
If you are first time git user, don't forget to specify your user metadata. Use the commands `git config user.name "My Name"` and `git config user.email my.email@sap.com` to tell git your name and email address.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user