psychopy 2024.1.4__py3-none-any.whl → 2024.2.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of psychopy might be problematic. Click here for more details.
- psychopy/.DS_Store +0 -0
- psychopy/CHANGELOG.txt +206 -0
- psychopy/GIT_SHA +1 -0
- psychopy/VERSION +1 -0
- psychopy/__init__.py +77 -15
- psychopy/app/Resources/classic/plugin16.png +0 -0
- psychopy/app/Resources/classic/plugin16@2x.png +0 -0
- psychopy/app/Resources/dark/plugin16.png +0 -0
- psychopy/app/Resources/dark/plugin16@2x.png +0 -0
- psychopy/app/Resources/light/plugin16.png +0 -0
- psychopy/app/Resources/light/plugin16@2x.png +0 -0
- psychopy/app/__init__.py +76 -2
- psychopy/app/_psychopyApp.py +126 -101
- psychopy/app/builder/builder.py +14 -10
- psychopy/app/builder/dialogs/__init__.py +8 -8
- psychopy/app/builder/dialogs/dlgsConditions.py +12 -13
- psychopy/app/builder/dialogs/paramCtrls.py +24 -57
- psychopy/app/builder/validators.py +2 -2
- psychopy/app/coder/codeEditorBase.py +8 -8
- psychopy/app/coder/coder.py +4 -4
- psychopy/app/connections/sendusage.py +2 -2
- psychopy/app/connections/updates.py +9 -9
- psychopy/app/dialogs.py +34 -2
- psychopy/app/idle.py +31 -0
- psychopy/app/jobs.py +21 -3
- psychopy/app/linuxconfig/__init__.py +9 -0
- psychopy/app/locale/ar_001/LC_MESSAGE/messages.mo +0 -0
- psychopy/app/locale/ar_001/LC_MESSAGE/messages.po +4602 -2540
- psychopy/app/locale/es_CO/LC_MESSAGE/messages.mo +0 -0
- psychopy/app/locale/es_CO/LC_MESSAGE/messages.po +56 -54
- psychopy/app/locale/es_ES/LC_MESSAGE/messages.po +53 -43
- psychopy/app/locale/es_US/LC_MESSAGE/messages.mo +0 -0
- psychopy/app/locale/es_US/LC_MESSAGE/messages.po +56 -54
- psychopy/app/locale/ja_JP/LC_MESSAGE/messages.mo +0 -0
- psychopy/app/locale/ja_JP/LC_MESSAGE/messages.po +1011 -942
- psychopy/app/locale/pt_PT/LC_MESSAGE/messages.po +9415 -5
- psychopy/app/pavlovia_ui/_base.py +33 -3
- psychopy/app/pavlovia_ui/search.py +0 -1
- psychopy/app/plugin_manager/dialog.py +104 -51
- psychopy/app/plugin_manager/packages.py +5 -0
- psychopy/app/plugin_manager/plugins.py +145 -67
- psychopy/app/preferencesDlg.py +8 -8
- psychopy/app/psychopyApp.py +11 -5
- psychopy/app/ribbon.py +124 -14
- psychopy/app/runner/runner.py +6 -1
- psychopy/app/stdout/stdOutRich.py +27 -11
- psychopy/app/themes/icons.py +52 -2
- psychopy/assets/__init__.py +0 -0
- psychopy/assets/click.png +0 -0
- psychopy/assets/clicknext.png +0 -0
- psychopy/assets/next.png +0 -0
- psychopy/assets/psychopy.ico +0 -0
- psychopy/assets/psychopy.png +0 -0
- psychopy/assets/templates/__init__.py +0 -0
- psychopy/assets/touch.png +0 -0
- psychopy/assets/touchnext.png +0 -0
- psychopy/assets/window.ico +0 -0
- psychopy/changes/2023.1.0.md +9 -0
- psychopy/changes/2024.1.0.md +16 -0
- psychopy/changes/__init__.py +0 -0
- psychopy/clock.py +2 -2
- psychopy/colors.py +2 -1
- psychopy/compatibility.py +53 -1
- psychopy/contrib/.DS_Store +0 -0
- psychopy/contrib/configobj/__init__.py +10 -8
- psychopy/data/__init__.py +3 -2
- psychopy/data/base.py +5 -5
- psychopy/data/experiment.py +130 -4
- psychopy/data/routine.py +56 -0
- psychopy/data/staircase.py +2 -2
- psychopy/data/trial.py +559 -97
- psychopy/data/utils.py +56 -21
- psychopy/demos/.DS_Store +0 -0
- psychopy/demos/builder/.DS_Store +0 -0
- psychopy/demos/builder/Design Templates/.DS_Store +0 -0
- psychopy/demos/builder/Experiments/.DS_Store +0 -0
- psychopy/demos/builder/Feature Demos/.DS_Store +0 -0
- psychopy/demos/builder/Feature Demos/buttonBox/buttonBoxDemo.psyexp +375 -0
- psychopy/demos/builder/Feature Demos/buttonBox/readme.md +5 -0
- psychopy/demos/builder/Feature Demos/pilotMode/pilotMode.psyexp +433 -0
- psychopy/demos/builder/Feature Demos/pilotMode/readme.md +7 -0
- psychopy/demos/builder/Hardware/.DS_Store +0 -0
- psychopy/demos/builder/Helper Tools/.DS_Store +0 -0
- psychopy/demos/coder/.DS_Store +0 -0
- psychopy/demos/coder/hardware/testSoundLatency.py +2 -2
- psychopy/demos/coder/iohub/.DS_Store +0 -0
- psychopy/demos/coder/misc/hdf5_2_csv +33 -0
- psychopy/event.py +30 -29
- psychopy/experiment/.DS_Store +0 -0
- psychopy/experiment/_experiment.py +6 -6
- psychopy/experiment/components/.DS_Store +0 -0
- psychopy/experiment/components/__init__.py +6 -3
- psychopy/experiment/components/_base.py +286 -131
- psychopy/experiment/components/aperture/.DS_Store +0 -0
- psychopy/experiment/components/brush/.DS_Store +0 -0
- psychopy/experiment/components/button/.DS_Store +0 -0
- psychopy/experiment/components/button/__init__.py +5 -1
- psychopy/experiment/components/buttonBox/.DS_Store +0 -0
- psychopy/experiment/components/camera/.DS_Store +0 -0
- psychopy/experiment/components/code/.DS_Store +0 -0
- psychopy/experiment/components/dots/.DS_Store +0 -0
- psychopy/experiment/components/eyetracker_record/.DS_Store +0 -0
- psychopy/experiment/components/eyetracker_record/__init__.py +92 -30
- psychopy/experiment/components/form/.DS_Store +0 -0
- psychopy/experiment/components/form/__init__.py +6 -2
- psychopy/experiment/components/grating/.DS_Store +0 -0
- psychopy/experiment/components/grating/__init__.py +14 -3
- psychopy/experiment/components/image/.DS_Store +0 -0
- psychopy/experiment/components/image/__init__.py +14 -3
- psychopy/experiment/components/joyButtons/.DS_Store +0 -0
- psychopy/experiment/components/joystick/.DS_Store +0 -0
- psychopy/experiment/components/keyboard/.DS_Store +0 -0
- psychopy/experiment/components/keyboard/__init__.py +22 -10
- psychopy/experiment/components/microphone/.DS_Store +0 -0
- psychopy/experiment/components/microphone/__init__.py +59 -39
- psychopy/experiment/components/mouse/.DS_Store +0 -0
- psychopy/experiment/components/mouse/__init__.py +44 -29
- psychopy/experiment/components/movie/.DS_Store +0 -0
- psychopy/experiment/components/movie/__init__.py +1 -1
- psychopy/experiment/components/panorama/.DS_Store +0 -0
- psychopy/experiment/components/parallelOut/.DS_Store +0 -0
- psychopy/experiment/components/patch/.DS_Store +0 -0
- psychopy/experiment/components/polygon/.DS_Store +0 -0
- psychopy/experiment/components/polygon/__init__.py +26 -6
- psychopy/experiment/components/progress/.DS_Store +0 -0
- psychopy/experiment/components/ratingScale/.DS_Store +0 -0
- psychopy/experiment/components/resourceManager/.DS_Store +0 -0
- psychopy/experiment/components/roi/.DS_Store +0 -0
- psychopy/experiment/components/roi/__init__.py +5 -0
- psychopy/experiment/components/routineSettings/.DS_Store +0 -0
- psychopy/experiment/components/routineSettings/__init__.py +57 -10
- psychopy/experiment/components/serialOut/.DS_Store +0 -0
- psychopy/experiment/components/settings/.DS_Store +0 -0
- psychopy/experiment/components/settings/__init__.py +117 -42
- psychopy/experiment/components/slider/.DS_Store +0 -0
- psychopy/experiment/components/sound/.DS_Store +0 -0
- psychopy/experiment/components/sound/__init__.py +54 -19
- psychopy/experiment/components/static/.DS_Store +0 -0
- psychopy/experiment/components/static/__init__.py +1 -1
- psychopy/experiment/components/text/.DS_Store +0 -0
- psychopy/experiment/components/text/__init__.py +28 -3
- psychopy/experiment/components/textbox/.DS_Store +0 -0
- psychopy/experiment/components/textbox/__init__.py +12 -2
- psychopy/experiment/components/unknown/.DS_Store +0 -0
- psychopy/experiment/components/unknown/__init__.py +1 -2
- psychopy/experiment/components/unknownPlugin/.DS_Store +0 -0
- psychopy/experiment/components/unknownPlugin/__init__.py +2 -2
- psychopy/experiment/components/variable/.DS_Store +0 -0
- psychopy/experiment/flow.py +11 -4
- psychopy/experiment/loops.py +85 -37
- psychopy/experiment/params.py +74 -32
- psychopy/experiment/py2js_transpiler.py +8 -1
- psychopy/experiment/routines/.DS_Store +0 -0
- psychopy/experiment/routines/_base.py +102 -22
- psychopy/experiment/routines/counterbalance/.DS_Store +0 -0
- psychopy/experiment/routines/counterbalance/__init__.py +5 -1
- psychopy/experiment/routines/eyetracker_calibrate/.DS_Store +0 -0
- psychopy/experiment/routines/eyetracker_validate/.DS_Store +0 -0
- psychopy/experiment/routines/pavlovia_survey/.DS_Store +0 -0
- psychopy/experiment/routines/photodiodeValidator/.DS_Store +0 -0
- psychopy/experiment/routines/photodiodeValidator/__init__.py +6 -5
- psychopy/experiment/routines/unknown/.DS_Store +0 -0
- psychopy/gui/wxgui.py +4 -4
- psychopy/hardware/.DS_Store +0 -0
- psychopy/hardware/__init__.py +1 -1
- psychopy/hardware/base.py +12 -0
- psychopy/hardware/camera/__init__.py +1 -15
- psychopy/hardware/cedrus.py +10 -11
- psychopy/hardware/crs/colorcal.py +13 -22
- psychopy/hardware/crs/optical.py +10 -20
- psychopy/hardware/emulator.py +17 -14
- psychopy/hardware/eyetracker.py +42 -118
- psychopy/hardware/gammasci.py +4 -15
- psychopy/hardware/keyboard.py +102 -10
- psychopy/hardware/listener.py +3 -0
- psychopy/hardware/microphone.py +148 -18
- psychopy/hardware/minolta.py +8 -15
- psychopy/hardware/photodiode.py +191 -16
- psychopy/hardware/photometer/__init__.py +11 -19
- psychopy/hardware/pr.py +8 -15
- psychopy/hardware/speaker.py +39 -4
- psychopy/info.py +0 -71
- psychopy/iohub/.DS_Store +0 -0
- psychopy/iohub/__init__.py +1 -1
- psychopy/iohub/client/__init__.py +30 -20
- psychopy/iohub/client/keyboard.py +24 -24
- psychopy/iohub/datastore/__init__.py +2 -2
- psychopy/iohub/datastore/util.py +2 -2
- psychopy/iohub/default_config.yaml +1 -1
- psychopy/iohub/devices/.DS_Store +0 -0
- psychopy/iohub/devices/__init__.py +112 -25
- psychopy/iohub/devices/deviceConfigValidation.py +2 -1
- psychopy/iohub/devices/experiment/default_experiment.yaml +12 -1
- psychopy/iohub/devices/experiment/supported_config_settings.yaml +5 -1
- psychopy/iohub/devices/eyetracker/.DS_Store +0 -0
- psychopy/iohub/devices/eyetracker/__init__.py +46 -0
- psychopy/iohub/devices/eyetracker/calibration/procedure.py +2 -2
- psychopy/iohub/devices/eyetracker/hw/gazepoint/__init__.py +14 -2
- psychopy/iohub/devices/eyetracker/hw/mouse/eyetracker.py +3 -4
- psychopy/iohub/server.py +2 -2
- psychopy/iohub/start_iohub_process.py +3 -0
- psychopy/iohub/util/__init__.py +62 -70
- psychopy/layout.py +5 -5
- psychopy/logging.py +8 -1
- psychopy/microphone.py +10 -37
- psychopy/platform_specific/__init__.py +0 -2
- psychopy/platform_specific/darwin.py +1 -3
- psychopy/platform_specific/linux.py +31 -33
- psychopy/platform_specific/win32.py +38 -13
- psychopy/plugins/__init__.py +148 -116
- psychopy/plugins/util.py +39 -0
- psychopy/preferences/Darwin.spec +4 -2
- psychopy/preferences/FreeBSD.spec +4 -2
- psychopy/preferences/Linux.spec +4 -2
- psychopy/preferences/Windows.spec +4 -2
- psychopy/preferences/baseNoArch.spec +4 -2
- psychopy/preferences/preferences.py +47 -24
- psychopy/projects/pavlovia.py +47 -4
- psychopy/scripts/psyexpCompile.py +0 -4
- psychopy/session.py +153 -21
- psychopy/sound/__init__.py +31 -21
- psychopy/sound/_base.py +20 -3
- psychopy/sound/audioclip.py +320 -33
- psychopy/sound/backend_ptb.py +47 -58
- psychopy/sound/backend_pygame.py +1 -1
- psychopy/sound/backend_pysound.py +6 -15
- psychopy/sound/transcribe.py +53 -0
- psychopy/tests/.DS_Store +0 -0
- psychopy/tests/data/.DS_Store +0 -0
- psychopy/tests/data/TestUnknownPluginComponent_load_resave.psyexp +135 -0
- psychopy/tests/data/Test_textbox/test_ori_0_bottom right.png +0 -0
- psychopy/tests/data/Test_textbox/test_ori_0_center.png +0 -0
- psychopy/tests/data/Test_textbox/test_ori_0_top left.png +0 -0
- psychopy/tests/data/Test_textbox/test_ori_120_bottom right.png +0 -0
- psychopy/tests/data/Test_textbox/test_ori_120_center.png +0 -0
- psychopy/tests/data/Test_textbox/test_ori_120_top left.png +0 -0
- psychopy/tests/data/Test_textbox/test_ori_180_bottom right.png +0 -0
- psychopy/tests/data/Test_textbox/test_ori_180_center.png +0 -0
- psychopy/tests/data/Test_textbox/test_ori_180_top left.png +0 -0
- psychopy/tests/data/Test_textbox/test_ori_240_bottom right.png +0 -0
- psychopy/tests/data/Test_textbox/test_ori_240_center.png +0 -0
- psychopy/tests/data/Test_textbox/test_ori_240_top left.png +0 -0
- psychopy/tests/data/correctScript/.DS_Store +0 -0
- psychopy/tests/data/test_components/testClearKeyboard/testClearKeyboard.psyexp +200 -0
- psychopy/tests/data/test_session/.DS_Store +0 -0
- psychopy/tests/data/test_session/root/testFutureTrials/testFutureTrials.psyexp +155 -0
- psychopy/tests/data/test_session/root/testTrialNav/trialNav.psyexp +158 -0
- psychopy/tests/test_app/.DS_Store +0 -0
- psychopy/tests/test_app/conftest.py +2 -2
- psychopy/tests/test_app/test_speed.py +4 -1
- psychopy/tests/test_data/test_TrialHandler2.py +146 -1
- psychopy/tests/test_experiment/.DS_Store +0 -0
- psychopy/tests/test_experiment/needs_wx/genComponsTemplate.py +3 -3
- psychopy/tests/test_experiment/needs_wx/test_components.py +2 -2
- psychopy/tests/test_experiment/test_components/test_KeyboardComponent.py +28 -0
- psychopy/tests/test_experiment/test_components/test_UnknownPluginComponent.py +27 -0
- psychopy/tests/test_experiment/test_components/test_base_components.py +58 -0
- psychopy/tests/test_experiment/test_py2js.py +1 -1
- psychopy/tests/test_hardware/test_keyboard.py +31 -0
- psychopy/tests/test_hardware/test_ports.py +1 -11
- psychopy/tests/test_liaison/test_Liaison.py +47 -0
- psychopy/tests/test_misc/test_core.py +5 -0
- psychopy/tests/test_session/test_Session.py +5 -1
- psychopy/tests/test_tools/test_versionchooser.py +39 -8
- psychopy/tests/test_visual/test_all_stimuli.py +0 -97
- psychopy/tests/test_visual/test_image.py +6 -5
- psychopy/tests/test_visual/test_textbox.py +36 -0
- psychopy/tests/utils.py +4 -0
- psychopy/tools/filetools.py +1 -1
- psychopy/tools/pkgtools.py +160 -137
- psychopy/tools/versionchooser.py +10 -10
- psychopy/tools/wizard.py +3 -3
- psychopy/visual/.DS_Store +0 -0
- psychopy/visual/backends/pygletbackend.py +24 -13
- psychopy/visual/basevisual.py +5 -11
- psychopy/visual/button.py +2 -14
- psychopy/visual/helpers.py +5 -5
- psychopy/visual/line.py +1 -2
- psychopy/visual/movie2.py +7 -816
- psychopy/visual/movie3.py +7 -589
- psychopy/visual/movies/__init__.py +8 -11
- psychopy/visual/movies/frame.py +5 -2
- psychopy/visual/movies/players/ffpyplayer_player.py +5 -2
- psychopy/visual/noise.py +8 -7
- psychopy/visual/patch.py +7 -16
- psychopy/visual/radial.py +9 -7
- psychopy/visual/ratingscale.py +8 -1415
- psychopy/visual/secondorder.py +10 -9
- psychopy/visual/shape.py +7 -2
- psychopy/visual/text.py +1 -1
- psychopy/visual/textbox2/textbox2.py +28 -5
- {psychopy-2024.1.4.dist-info → psychopy-2024.2.0.dist-info}/METADATA +8 -13
- {psychopy-2024.1.4.dist-info → psychopy-2024.2.0.dist-info}/RECORD +307 -213
- {psychopy-2024.1.4.dist-info → psychopy-2024.2.0.dist-info}/WHEEL +1 -1
- psychopy/app/Resources/click.png +0 -0
- psychopy/app/Resources/next.png +0 -0
- psychopy/experiment/components/patch/__init__.py +0 -121
- psychopy/experiment/components/patch/classic/patch.png +0 -0
- psychopy/experiment/components/patch/dark/patch.png +0 -0
- psychopy/experiment/components/patch/dark/patch@2x.png +0 -0
- psychopy/experiment/components/patch/light/patch.png +0 -0
- psychopy/experiment/components/patch/light/patch@2x.png +0 -0
- psychopy/experiment/components/ratingScale/__init__.py +0 -337
- psychopy/experiment/components/ratingScale/classic/ratingscale.png +0 -0
- psychopy/experiment/components/ratingScale/classic/ratingscale@2x.png +0 -0
- psychopy/experiment/components/ratingScale/dark/ratingScale@2x.png +0 -0
- psychopy/experiment/components/ratingScale/dark/ratingscale.png +0 -0
- psychopy/experiment/components/ratingScale/light/ratingScale@2x.png +0 -0
- psychopy/experiment/components/ratingScale/light/ratingscale.png +0 -0
- psychopy/platform_specific/posix.py +0 -16
- psychopy/tests/test_sound/test_microphone.py +0 -217
- psychopy/tests/test_visual/test_ratingScale.py +0 -299
- /psychopy/{app/Resources → assets}/Psychopy Window Favicon@16w.png +0 -0
- /psychopy/{app/Resources → assets}/Psychopy Window Favicon@32w.png +0 -0
- /psychopy/{app/Resources → assets}/USB-C.png +0 -0
- /psychopy/{app/Resources → assets}/USB.png +0 -0
- /psychopy/{app/Resources → assets}/creditCard.png +0 -0
- /psychopy/{app/Resources → assets}/default.mp3 +0 -0
- /psychopy/{app/Resources → assets}/default.mp4 +0 -0
- /psychopy/{app/Resources → assets}/default.png +0 -0
- /psychopy/{app/Resources → assets/templates}/instruct1.png +0 -0
- /psychopy/{app/Resources → assets/templates}/instruct2.png +0 -0
- {psychopy-2024.1.4.dist-info → psychopy-2024.2.0.dist-info}/entry_points.txt +0 -0
- {psychopy-2024.1.4.dist-info → psychopy-2024.2.0.dist-info}/licenses/AUTHORS.md +0 -0
- {psychopy-2024.1.4.dist-info → psychopy-2024.2.0.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
# Part of the PsychoPy library.
|
|
2
2
|
# Copyright (C) 2015 Jonathan Peirce
|
|
3
|
-
# CLAUDIO DE LA ROSA MUNAR <cdelarosa@delarosaresearch.com>, 2023.
|
|
3
|
+
# CLAUDIO ALFREDO DE LA ROSA MUNAR <cdelarosa@delarosaresearch.com>, 2023.
|
|
4
4
|
#
|
|
5
5
|
msgid ""
|
|
6
6
|
msgstr ""
|
|
7
|
-
"Project-Id-Version: PsychoPy 2023.2.
|
|
7
|
+
"Project-Id-Version: PsychoPy 2023.2.1\n"
|
|
8
8
|
"POT-Creation-Date: 2023-08-31 10:34-0500\n"
|
|
9
9
|
"PO-Revision-Date: \n"
|
|
10
|
-
"Last-Translator: Claudio de la Rosa Munar <cdelarosa@delarosaresearch.com>\n"
|
|
10
|
+
"Last-Translator: Claudio Alfredo de la Rosa Munar <cdelarosa@delarosaresearch.com>\n"
|
|
11
11
|
"Language-Team: psychopy_spanish@opensciencetools.org\n"
|
|
12
12
|
"Language: es_US\n"
|
|
13
13
|
"MIME-Version: 1.0\n"
|
|
14
14
|
"Content-Type: text/plain; charset=UTF-8\n"
|
|
15
15
|
"Content-Transfer-Encoding: 8bit\n"
|
|
16
16
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
17
|
-
"X-Generator: Poedit 3.4.
|
|
17
|
+
"X-Generator: Poedit 3.4.4\n"
|
|
18
18
|
"X-Poedit-Basepath: ../../../../..\n"
|
|
19
19
|
"X-Poedit-SourceCharset: UTF-8\n"
|
|
20
20
|
"X-Poedit-KeywordsList: _translate\n"
|
|
@@ -203,7 +203,8 @@ msgstr "El parámetro del dispositivo del componente del micrófono “{name}”
|
|
|
203
203
|
#: psychopy/alerts/alertsCatalogue/alertmsg.py:136
|
|
204
204
|
#, python-brace-format
|
|
205
205
|
msgid "The file you are attempting to run does not seem to exist, the full path supplied to Runner was {path}"
|
|
206
|
-
msgstr "
|
|
206
|
+
msgstr ""
|
|
207
|
+
"El archivo que está intentando ejecutar no parece existir, la ruta completa suministrada para la ejecución (Runner)fue {path}"
|
|
207
208
|
|
|
208
209
|
#: psychopy/alerts/alertsCatalogue/alertmsg.py:140
|
|
209
210
|
#, python-brace-format
|
|
@@ -232,7 +233,7 @@ msgstr "&Ver"
|
|
|
232
233
|
#: psychopy/app/_psychopyApp.py:99
|
|
233
234
|
#, python-format
|
|
234
235
|
msgid "&Open Builder view\t%s"
|
|
235
|
-
msgstr "&Abrir vista Builder\t%s"
|
|
236
|
+
msgstr "&Abrir vista de Builder\t%s"
|
|
236
237
|
|
|
237
238
|
#: psychopy/app/_psychopyApp.py:102
|
|
238
239
|
msgid "Open a new Builder view"
|
|
@@ -272,7 +273,7 @@ msgid ""
|
|
|
272
273
|
"Requested: {}\n"
|
|
273
274
|
"Err: {}"
|
|
274
275
|
msgstr ""
|
|
275
|
-
"Error al abrir Runner con la lista de archivos solicitados, se abrió sin la lista de archivos.\n"
|
|
276
|
+
"Error al abrir el Runner con la lista de archivos solicitados, se abrió sin la lista de archivos.\n"
|
|
276
277
|
"Solicitado: {}\n"
|
|
277
278
|
"Error: {}"
|
|
278
279
|
|
|
@@ -282,7 +283,7 @@ msgid ""
|
|
|
282
283
|
"Requested: {}\n"
|
|
283
284
|
"Err: {}"
|
|
284
285
|
msgstr ""
|
|
285
|
-
"Error al abrir Coder con los scripts solicitados, se abrió sin scripts abiertos.\n"
|
|
286
|
+
"Error al abrir el Coder con los scripts solicitados, se abrió sin scripts abiertos.\n"
|
|
286
287
|
"Solicitado: {}\n"
|
|
287
288
|
"Error: {}"
|
|
288
289
|
|
|
@@ -301,9 +302,8 @@ msgid "Compatibility information"
|
|
|
301
302
|
msgstr "Información de compatibilidad"
|
|
302
303
|
|
|
303
304
|
#: psychopy/app/_psychopyApp.py:654
|
|
304
|
-
#, fuzzy
|
|
305
305
|
msgid "tips.txt"
|
|
306
|
-
msgstr "
|
|
306
|
+
msgstr "tips.txt"
|
|
307
307
|
|
|
308
308
|
#: psychopy/app/_psychopyApp.py:692
|
|
309
309
|
msgid " Loading plugins..."
|
|
@@ -414,7 +414,7 @@ msgstr "&Abrir...\t%s"
|
|
|
414
414
|
|
|
415
415
|
#: psychopy/app/builder/builder.py:317 psychopy/app/coder/coder.py:1396
|
|
416
416
|
msgid "Open &Recent"
|
|
417
|
-
msgstr "
|
|
417
|
+
msgstr "Abrir Recientes"
|
|
418
418
|
|
|
419
419
|
#: psychopy/app/builder/builder.py:320 psychopy/app/coder/coder.py:1398
|
|
420
420
|
#, python-format
|
|
@@ -581,11 +581,11 @@ msgstr "Ejecutar el script actual"
|
|
|
581
581
|
#: psychopy/app/builder/builder.py:449 psychopy/app/coder/coder.py:1679
|
|
582
582
|
#, python-format
|
|
583
583
|
msgid "Send to runner\t%s"
|
|
584
|
-
msgstr "Enviar al
|
|
584
|
+
msgstr "Enviar al runner\t%s"
|
|
585
585
|
|
|
586
586
|
#: psychopy/app/builder/builder.py:450 psychopy/app/coder/coder.py:1680
|
|
587
587
|
msgid "Send current script to runner"
|
|
588
|
-
msgstr "Enviar script actual
|
|
588
|
+
msgstr "Enviar script actual a ejecución (runner)"
|
|
589
589
|
|
|
590
590
|
#: psychopy/app/builder/builder.py:454 psychopy/app/coder/coder.py:1685
|
|
591
591
|
msgid "PsychoPy updates..."
|
|
@@ -605,7 +605,7 @@ msgstr "Administrar paquetes de Python y complementos opcionales para PsychoPy"
|
|
|
605
605
|
|
|
606
606
|
#: psychopy/app/builder/builder.py:464 psychopy/app/coder/coder.py:1693
|
|
607
607
|
msgid "Benchmark wizard"
|
|
608
|
-
msgstr "Asistente de
|
|
608
|
+
msgstr "Asistente de Benchmark"
|
|
609
609
|
|
|
610
610
|
#: psychopy/app/builder/builder.py:465 psychopy/app/coder/coder.py:1694
|
|
611
611
|
msgid "Check software & hardware, generate report"
|
|
@@ -1019,11 +1019,11 @@ msgstr "Compilar en script JS"
|
|
|
1019
1019
|
|
|
1020
1020
|
#: psychopy/app/builder/builder.py:4379 psychopy/app/coder/coder.py:2940
|
|
1021
1021
|
msgid "Runner"
|
|
1022
|
-
msgstr "
|
|
1022
|
+
msgstr "Runner"
|
|
1023
1023
|
|
|
1024
1024
|
#: psychopy/app/builder/builder.py:4381 psychopy/app/coder/coder.py:2941
|
|
1025
1025
|
msgid "Send experiment to Runner"
|
|
1026
|
-
msgstr "Enviar experimento a Runner"
|
|
1026
|
+
msgstr "Enviar experimento a ejecución (Runner)"
|
|
1027
1027
|
|
|
1028
1028
|
#: psychopy/app/builder/builder.py:4387 psychopy/app/coder/coder.py:2945
|
|
1029
1029
|
msgid "Run"
|
|
@@ -1981,7 +1981,7 @@ msgstr "Error de sintaxis de Python en el campo `{}`: {}"
|
|
|
1981
1981
|
#: psychopy/app/builder/validators.py:528
|
|
1982
1982
|
#, python-brace-format
|
|
1983
1983
|
msgid "Looks like your variable '{code}' in '{displayName}' should be set to update."
|
|
1984
|
-
msgstr "Parece que su variable
|
|
1984
|
+
msgstr "Parece que su variable’{code}’ en ‘{displayName}’ debe ser definido para actualizar."
|
|
1985
1985
|
|
|
1986
1986
|
#: psychopy/app/builder/validators.py:548
|
|
1987
1987
|
msgid "Python var `{}` in `{}` is same as Name"
|
|
@@ -2128,7 +2128,7 @@ msgstr "Asistente de fuente"
|
|
|
2128
2128
|
|
|
2129
2129
|
#: psychopy/app/coder/coder.py:1261
|
|
2130
2130
|
msgid "Shell"
|
|
2131
|
-
msgstr "
|
|
2131
|
+
msgstr "Shell (Caparazón)"
|
|
2132
2132
|
|
|
2133
2133
|
#: psychopy/app/coder/coder.py:1267 psychopy/app/plugin_manager/dialog.py:38
|
|
2134
2134
|
msgid "Output"
|
|
@@ -2605,7 +2605,7 @@ msgstr "Cerrar el shell actual."
|
|
|
2605
2605
|
|
|
2606
2606
|
#: psychopy/app/coder/repl.py:66
|
|
2607
2607
|
msgid "Close the current shell and start a new one, this will clear any variables."
|
|
2608
|
-
msgstr "Cierre
|
|
2608
|
+
msgstr "Cierre el sell actual y comience uno nuevo, esto borrará todas las variables."
|
|
2609
2609
|
|
|
2610
2610
|
#: psychopy/app/coder/repl.py:86 psychopy/app/stdout/stdOutRich.py:223
|
|
2611
2611
|
msgid "Clear all previous output."
|
|
@@ -2670,7 +2670,7 @@ msgstr "Esta versión es una actualización demasiado grande para manejarla auto
|
|
|
2670
2670
|
|
|
2671
2671
|
#: psychopy/app/connections/updates.py:144
|
|
2672
2672
|
msgid "Please fetch the latest version from www.psychopy.org and install manually."
|
|
2673
|
-
msgstr "Por favor
|
|
2673
|
+
msgstr "Por favor busque la última versión en www.psychopy.org e instálela de forma manual."
|
|
2674
2674
|
|
|
2675
2675
|
#: psychopy/app/connections/updates.py:149
|
|
2676
2676
|
msgid "Go to downloads"
|
|
@@ -3240,7 +3240,7 @@ msgstr ""
|
|
|
3240
3240
|
#: psychopy/app/pavlovia_ui/project.py:676
|
|
3241
3241
|
#, python-brace-format
|
|
3242
3242
|
msgid "Could not find folder {directory}, please select a different local root."
|
|
3243
|
-
msgstr "
|
|
3243
|
+
msgstr ""
|
|
3244
3244
|
|
|
3245
3245
|
#: psychopy/app/pavlovia_ui/project.py:714
|
|
3246
3246
|
msgid "Project info has changed, update online before closing?"
|
|
@@ -3844,7 +3844,7 @@ msgstr "ejecutar script"
|
|
|
3844
3844
|
|
|
3845
3845
|
#: psychopy/app/preferencesDlg.py:118
|
|
3846
3846
|
msgid "runner script"
|
|
3847
|
-
msgstr "script
|
|
3847
|
+
msgstr "ejecutor(runner) script"
|
|
3848
3848
|
|
|
3849
3849
|
#: psychopy/app/preferencesDlg.py:119
|
|
3850
3850
|
msgid "stop script"
|
|
@@ -3984,7 +3984,7 @@ msgstr "tiempo de espera"
|
|
|
3984
3984
|
|
|
3985
3985
|
#: psychopy/app/preferencesDlg.py:156
|
|
3986
3986
|
msgid "Builder, Coder and Runner"
|
|
3987
|
-
msgstr "Constructor,
|
|
3987
|
+
msgstr "Constructor, Codificador y Ejecutor"
|
|
3988
3988
|
|
|
3989
3989
|
#: psychopy/app/preferencesDlg.py:157
|
|
3990
3990
|
msgid "same as in the file"
|
|
@@ -4109,7 +4109,7 @@ msgstr "Cargando tarea"
|
|
|
4109
4109
|
|
|
4110
4110
|
#: psychopy/app/runner/runner.py:147
|
|
4111
4111
|
msgid "Closing Runner"
|
|
4112
|
-
msgstr "
|
|
4112
|
+
msgstr "Cerrando el Runner"
|
|
4113
4113
|
|
|
4114
4114
|
#: psychopy/app/runner/runner.py:150
|
|
4115
4115
|
msgid "Quitting PsychoPy"
|
|
@@ -4267,27 +4267,27 @@ msgstr "&Ventana siguiente\t%s"
|
|
|
4267
4267
|
|
|
4268
4268
|
#: psychopy/app/utils.py:1466
|
|
4269
4269
|
msgid "Show &builder"
|
|
4270
|
-
msgstr "Mostrar
|
|
4270
|
+
msgstr "Mostrar builder"
|
|
4271
4271
|
|
|
4272
4272
|
#: psychopy/app/utils.py:1466
|
|
4273
4273
|
msgid "Show Builder"
|
|
4274
|
-
msgstr "Mostrar
|
|
4274
|
+
msgstr "Mostrar Builder"
|
|
4275
4275
|
|
|
4276
4276
|
#: psychopy/app/utils.py:1473
|
|
4277
4277
|
msgid "Show &coder"
|
|
4278
|
-
msgstr "Mostrar
|
|
4278
|
+
msgstr "Mostrar coder"
|
|
4279
4279
|
|
|
4280
4280
|
#: psychopy/app/utils.py:1473
|
|
4281
4281
|
msgid "Show Coder"
|
|
4282
|
-
msgstr "Mostrar
|
|
4282
|
+
msgstr "Mostrar Coder"
|
|
4283
4283
|
|
|
4284
4284
|
#: psychopy/app/utils.py:1480
|
|
4285
4285
|
msgid "Show &runner"
|
|
4286
|
-
msgstr "Mostrar
|
|
4286
|
+
msgstr "Mostrar ejecutor"
|
|
4287
4287
|
|
|
4288
4288
|
#: psychopy/app/utils.py:1480
|
|
4289
4289
|
msgid "Show Runner"
|
|
4290
|
-
msgstr "Mostrar
|
|
4290
|
+
msgstr "Mostrar Runner"
|
|
4291
4291
|
|
|
4292
4292
|
#: psychopy/data/experiment.py:425
|
|
4293
4293
|
msgid "Attempted to pause experiment '{}', but it is already paused. Status will remain unchanged."
|
|
@@ -4339,7 +4339,7 @@ msgstr "Archivo de condiciones no encontrado: %s"
|
|
|
4339
4339
|
|
|
4340
4340
|
#: psychopy/data/utils.py:377
|
|
4341
4341
|
msgid "openpyxl or xlrd is required for loading excel files, but neither was found."
|
|
4342
|
-
msgstr "openpyxl o xlrd
|
|
4342
|
+
msgstr "openpyxl o xlrd es requerido para cargar archivos de excel, pero ninguno ha sido encontrado."
|
|
4343
4343
|
|
|
4344
4344
|
#: psychopy/data/utils.py:452
|
|
4345
4345
|
#, python-format
|
|
@@ -4432,7 +4432,7 @@ msgstr "Duración esperada(s)"
|
|
|
4432
4432
|
|
|
4433
4433
|
#: psychopy/experiment/components/_base.py:106
|
|
4434
4434
|
msgid "Store the onset/offset times in the data file (as well as in the log file)."
|
|
4435
|
-
msgstr "
|
|
4435
|
+
msgstr "Almacena los tiempos onset/offset en un archivo de datos (así como el archivo tipo log)."
|
|
4436
4436
|
|
|
4437
4437
|
#: psychopy/experiment/components/_base.py:111
|
|
4438
4438
|
msgid "Save onset/offset times"
|
|
@@ -5080,7 +5080,7 @@ msgstr "Velocidad de los puntos (desplazamiento por cuadro en las unidades espec
|
|
|
5080
5080
|
|
|
5081
5081
|
#: psychopy/experiment/components/dots/__init__.py:92
|
|
5082
5082
|
msgid "Coherence of the dots (fraction moving in the signal direction on any one frame)"
|
|
5083
|
-
msgstr "Coherencia
|
|
5083
|
+
msgstr "Coherencia en los puntos (fracción moviéndose en la dirección de la señal en cualquiera de los cuadros)."
|
|
5084
5084
|
|
|
5085
5085
|
#: psychopy/experiment/components/dots/__init__.py:101
|
|
5086
5086
|
msgid "Size of the dots IN PIXELS regardless of the set units"
|
|
@@ -5293,7 +5293,7 @@ msgstr "Una imagen para definir la máscara alfa (es decir, forma): gauss, círc
|
|
|
5293
5293
|
|
|
5294
5294
|
#: psychopy/experiment/components/grating/__init__.py:73
|
|
5295
5295
|
msgid "Spatial frequency of image repeats across the grating in 1 or 2 dimensions, e.g. 4 or [2,3]"
|
|
5296
|
-
msgstr "La frecuencia espacial de la imagen se repite a
|
|
5296
|
+
msgstr "La frecuencia espacial de la imagen se repite a través del degradado en 1 o 2 dimensiones, p.e. 4 o [2,3]"
|
|
5297
5297
|
|
|
5298
5298
|
#: psychopy/experiment/components/grating/__init__.py:95 psychopy/experiment/components/image/__init__.py:116
|
|
5299
5299
|
#: psychopy/experiment/components/movie/__init__.py:127 psychopy/experiment/components/polygon/__init__.py:103
|
|
@@ -5344,8 +5344,8 @@ msgstr "La imagen que se mostrará: un nombre de archivo, incluida la ruta"
|
|
|
5344
5344
|
#: psychopy/experiment/components/image/__init__.py:63
|
|
5345
5345
|
msgid "An image to define the alpha mask through which the image is seen - gauss, circle, None or a filename (including path)"
|
|
5346
5346
|
msgstr ""
|
|
5347
|
-
"Una imagen para definir la
|
|
5348
|
-
"(
|
|
5347
|
+
"Una imagen para definir la mascará alpha a través de la cual la imagen es vista - gausiano, circulo, Ninguno o un nombre de "
|
|
5348
|
+
"archivo ( incluyendo su ruta)"
|
|
5349
5349
|
|
|
5350
5350
|
#: psychopy/experiment/components/image/__init__.py:72
|
|
5351
5351
|
msgid "Resolution of the mask if one is used."
|
|
@@ -5962,7 +5962,7 @@ msgstr "Color de la línea alrededor de la barra de progreso."
|
|
|
5962
5962
|
|
|
5963
5963
|
#: psychopy/experiment/components/progress/__init__.py:65
|
|
5964
5964
|
msgid "Value between 0 (not started) and 1 (complete) to set the progress bar to."
|
|
5965
|
-
msgstr "Valor entre 0 (no iniciado) y 1 (completo) para
|
|
5965
|
+
msgstr "Valor entre 0 (no iniciado) y 1 ( completo) para definir la barra de progreso."
|
|
5966
5966
|
|
|
5967
5967
|
#: psychopy/experiment/components/progress/__init__.py:67
|
|
5968
5968
|
msgid "Progress"
|
|
@@ -6281,7 +6281,7 @@ msgstr "Ajuste de fondo"
|
|
|
6281
6281
|
|
|
6282
6282
|
#: psychopy/experiment/components/routineSettings/__init__.py:147
|
|
6283
6283
|
msgid "Save the start and stop times of this Routine (according to the global clock) to the data file."
|
|
6284
|
-
msgstr "
|
|
6284
|
+
msgstr "Guarda los tiempos de inicio y de finalización de esta rutina (de acuerdo al reloj global) del archivo de datos."
|
|
6285
6285
|
|
|
6286
6286
|
#: psychopy/experiment/components/serialOut/__init__.py:29
|
|
6287
6287
|
msgid "Serial out: send signals from a serial port"
|
|
@@ -6626,7 +6626,9 @@ msgstr "Guardar archivo hdf5"
|
|
|
6626
6626
|
|
|
6627
6627
|
#: psychopy/experiment/components/settings/__init__.py:389
|
|
6628
6628
|
msgid "How much output do you want in the log files? ('error' is fewest messages, 'debug' is most)"
|
|
6629
|
-
msgstr "
|
|
6629
|
+
msgstr ""
|
|
6630
|
+
"Que cantidad de salida usted quiere en el archivo tipo log? (‘error’ significa menos mensajes, ‘debug’ significa la mayor "
|
|
6631
|
+
"cantidad)"
|
|
6630
6632
|
|
|
6631
6633
|
#: psychopy/experiment/components/settings/__init__.py:400
|
|
6632
6634
|
msgid "Place the HTML files will be saved locally "
|
|
@@ -7018,7 +7020,7 @@ msgstr "Código personalizado"
|
|
|
7018
7020
|
|
|
7019
7021
|
#: psychopy/experiment/components/static/__init__.py:32
|
|
7020
7022
|
msgid "Static: Static screen period (e.g. an ISI). Useful for pre-loading stimuli."
|
|
7021
|
-
msgstr "
|
|
7023
|
+
msgstr "Estatica: Periodo de tiempo estático (p.e. un ISI). Útil para precargar estímulos."
|
|
7022
7024
|
|
|
7023
7025
|
#: psychopy/experiment/components/static/__init__.py:49
|
|
7024
7026
|
msgid "Custom code to be run during the static period (after updates)"
|
|
@@ -7274,8 +7276,8 @@ msgid ""
|
|
|
7274
7276
|
"To have a fixed random sequence provide an integer of your choosing here. Leave blank to have a new random sequence on each run "
|
|
7275
7277
|
"of the experiment."
|
|
7276
7278
|
msgstr ""
|
|
7277
|
-
"Para tener una secuencia aleatoria fija
|
|
7278
|
-
"
|
|
7279
|
+
"Para tener una secuencia aleatoria fija provea un número entero de su preferencia aquí. Deje en blanco para tener una secuencia "
|
|
7280
|
+
"aleatoria para cada ejecución de este experimento."
|
|
7279
7281
|
|
|
7280
7282
|
#: psychopy/experiment/loops.py:145 psychopy/experiment/loops.py:490 psychopy/experiment/loops.py:627
|
|
7281
7283
|
msgid ""
|
|
@@ -8071,7 +8073,7 @@ msgstr ""
|
|
|
8071
8073
|
|
|
8072
8074
|
#: psychopy/preferences/hints.py:67
|
|
8073
8075
|
msgid "Show an error dialog when PsychoPy encounters an unhandled internal error."
|
|
8074
|
-
msgstr "Muestra un
|
|
8076
|
+
msgstr "Muestra un dialogo de error cuando PsychoPy encuentra un error interno no manejado."
|
|
8075
8077
|
|
|
8076
8078
|
#: psychopy/preferences/hints.py:70
|
|
8077
8079
|
msgid "Theme"
|
|
@@ -8431,7 +8433,7 @@ msgstr "PavloviaSession.createProject recibió un nombre de espacio ({namespace}
|
|
|
8431
8433
|
#: psychopy/projects/pavlovia.py:310
|
|
8432
8434
|
#, python-brace-format
|
|
8433
8435
|
msgid "Project `{namespace}/{name}` already exists, please choose another name."
|
|
8434
|
-
msgstr "El proyecto `{namespace}/{name}` ya existe,
|
|
8436
|
+
msgstr "El proyecto `{namespace}/{name}` ya existe, por favor escoja otro nombre."
|
|
8435
8437
|
|
|
8436
8438
|
#: psychopy/projects/pavlovia.py:462
|
|
8437
8439
|
msgid "Most stars"
|
|
@@ -8493,7 +8495,7 @@ msgid ""
|
|
|
8493
8495
|
msgstr ""
|
|
8494
8496
|
"\n"
|
|
8495
8497
|
"\n"
|
|
8496
|
-
"
|
|
8498
|
+
"La Sincronización falló - no se ha podido encontrar proyecto con id {}"
|
|
8497
8499
|
|
|
8498
8500
|
#: psychopy/projects/pavlovia.py:1186
|
|
8499
8501
|
msgid "Avatar is too big, should be at most 200 KB."
|
|
@@ -8614,11 +8616,11 @@ msgstr "Descargar la biblioteca PsychoPy desde Github (puede tardar un poco)"
|
|
|
8614
8616
|
|
|
8615
8617
|
#: psychopy/tools/wizard.py:32
|
|
8616
8618
|
msgid "Benchmark"
|
|
8617
|
-
msgstr "
|
|
8619
|
+
msgstr "Benchmark"
|
|
8618
8620
|
|
|
8619
8621
|
#: psychopy/tools/wizard.py:33
|
|
8620
8622
|
msgid "benchmark version"
|
|
8621
|
-
msgstr "versión
|
|
8623
|
+
msgstr "versión del benchmark"
|
|
8622
8624
|
|
|
8623
8625
|
#: psychopy/tools/wizard.py:35
|
|
8624
8626
|
msgid "dots_circle"
|
|
@@ -8909,9 +8911,9 @@ msgid ""
|
|
|
8909
8911
|
" </p>"
|
|
8910
8912
|
msgstr ""
|
|
8911
8913
|
"<p>Recursos:\n"
|
|
8912
|
-
"
|
|
8913
|
-
"
|
|
8914
|
-
"
|
|
8914
|
+
" |<a href=\"https://www.psychopy.org/documentation.html\">En-documentación de línea</a>\n"
|
|
8915
|
+
" | Descargar <a href=\"https://www.psychopy.org/PsychoPyManual.pdf\">Manual en PDF</a>\n"
|
|
8916
|
+
" |<a href=\"https://discourse.psychopy.org\">Buscar usuario-archivos de grupo</a>\n"
|
|
8915
8917
|
"</p>"
|
|
8916
8918
|
|
|
8917
8919
|
#: psychopy/tools/wizard.py:455
|
|
@@ -9023,7 +9025,7 @@ msgstr "luego vuelve a cambiar. No necesitas hacer nada."
|
|
|
9023
9025
|
|
|
9024
9026
|
#: psychopy/tools/wizard.py:567
|
|
9025
9027
|
msgid "Optional: For best results, please quit all email programs, web-browsers, "
|
|
9026
|
-
msgstr "Opcional:
|
|
9028
|
+
msgstr "Opcional: Para mejorar resultados, por favor finalice todos los programas de e-mail, navegadores de internet,"
|
|
9027
9029
|
|
|
9028
9030
|
#: psychopy/tools/wizard.py:570
|
|
9029
9031
|
msgid "Dropbox, backup or sync services, and others."
|
|
@@ -9073,7 +9075,7 @@ msgstr " Asistente de evaluación comparativa (Benchmark)"
|
|
|
9073
9075
|
|
|
9074
9076
|
#: psychopy/tools/wizard.py:650
|
|
9075
9077
|
msgid "Benchmarking takes ~20-30 seconds to gather"
|
|
9076
|
-
msgstr "La evaluación
|
|
9078
|
+
msgstr "La evaluación tipo Benchmark tarda entre 20 y 30 segundos en recopilarse"
|
|
9077
9079
|
|
|
9078
9080
|
#: psychopy/tools/wizard.py:651
|
|
9079
9081
|
msgid "configuration and performance data. Begin?"
|
|
@@ -9089,11 +9091,11 @@ msgstr "ventana visual para dibujar"
|
|
|
9089
9091
|
|
|
9090
9092
|
#: psychopy/tools/wizard.py:702
|
|
9091
9093
|
msgid "Benchmark complete! (See the Coder output window.)"
|
|
9092
|
-
msgstr "¡Evaluación
|
|
9094
|
+
msgstr "¡Evaluación Benchmark completa! (Consulte la ventana de resultados del Coder)\""
|
|
9093
9095
|
|
|
9094
9096
|
#: psychopy/tools/wizard.py:711
|
|
9095
9097
|
msgid "Click OK to view full configuration and benchmark data."
|
|
9096
|
-
msgstr "Haga clic en Aceptar para ver la configuración completa y los datos
|
|
9098
|
+
msgstr "Haga clic en Aceptar para ver la configuración completa y los datos del benchmark."
|
|
9097
9099
|
|
|
9098
9100
|
#: psychopy/tools/wizard.py:712
|
|
9099
9101
|
msgid "Click Cancel to stay in PsychoPy."
|
|
Binary file
|