mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-21 14:50:44 +01:00
This commit can be regenerated with the following shell snippet:
```
for i in UndefinedValue ForbiddenValue Goto ValueNotReachedByFunction Initialization Trigonometric RoundAbscissa Orthonormal DefaultSetting Axis Zoom GraphTab IntervalSet XStart XEnd Step Plot DisplayValues ActivateDesactivate NoFunctionToDelete Language FunctionOptions ClearColumn ColumnOptions DataTab CopyColumnInList FunctionColumn Move Or ValuesTab Goto ToZoom HardwareTestLaunch1 HardwareTestLaunch2 HardwareTestLaunch3 HardwareTestLaunch4 ActiveExamModeMessage1 ActiveExamModeMessage2 ActiveExamModeMessage3 ExitExamMode1 ExitExamMode2 Sci Rad Deg
do
move=$(grep "^$i = " -r *)
if [ -n "$move" ]
then
echo "$move" | while read -r item
do
file=$(echo "$item" | cut -f1 -d:)
lang=$(echo "$file" | cut -f2 -d.)
translation=$(echo "$item" | sed -e 's/^[^:]*://')
label=$(echo "$translation" | sed -e 's/=.*//')
sed -i "/^$label/d" "$file"
echo "$translation" >> "apps/shared.$lang.i18n"
done
fi
done
for i in apps/shared.*.i18n
do
sort $i -o $i
done
```
29 lines
856 B
Plaintext
29 lines
856 B
Plaintext
StatsApp = "Estadistica"
|
||
StatsAppCapital = "ESTADISTICA"
|
||
HistogramTab = "Histograma"
|
||
BoxTab = "Caja"
|
||
StatTab = "Medidas"
|
||
Values = "Valores"
|
||
Sizes = "Frecuencias"
|
||
ImportList = "Importar una lista"
|
||
NoDataToPlot = "Ningunos datos que dibujar"
|
||
Interval = " Intervalo"
|
||
Size = " Frecuencia"
|
||
Frequency = "Relativa"
|
||
HistogramSet = "Parametros del histograma"
|
||
RectangleWidth = "Ancho del rectangulo"
|
||
BarStart = "Principio de la serie"
|
||
FirstQuartile = "Primer cuartil"
|
||
Median = "Mediana"
|
||
ThirdQuartile = "Tercer cuartil"
|
||
NoValueToCompute = "Ninguna medida que calcular"
|
||
TotalSize = "Poblacion"
|
||
Range = "Rango"
|
||
Mean = "Media"
|
||
StandardDeviation = "Desviacion tipica"
|
||
StandardDeviationSigma = "Desviacion tipica σ"
|
||
SampleStandardDeviationS = "Desviacion tipica muestral s"
|
||
Deviation = "Varianza"
|
||
InterquartileRange = "Rango intercuartilo"
|
||
SquareSum = "Suma cuadrados"
|