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
|
@@ -14,7 +14,7 @@ msgstr ""
|
|
|
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
|
|
@@ -218,7 +219,7 @@ msgstr "El atributo RGB `.{rgbAttrib}` ya no está en uso, ya que ahora los colo
|
|
|
218
219
|
|
|
219
220
|
#: psychopy/app/Resources/psychopy.desktop:5 psychopy/app/Resources/psychopy.desktop:6
|
|
220
221
|
msgid "PsychoPy"
|
|
221
|
-
msgstr "
|
|
222
|
+
msgstr "PsychoPy"
|
|
222
223
|
|
|
223
224
|
#: psychopy/app/Resources/psychopy.desktop:7
|
|
224
225
|
msgid "Psychology software in Python"
|
|
@@ -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
|
|
|
@@ -415,7 +416,7 @@ msgstr "&Abrir...\t%s"
|
|
|
415
416
|
|
|
416
417
|
#: psychopy/app/builder/builder.py:317 psychopy/app/coder/coder.py:1396
|
|
417
418
|
msgid "Open &Recent"
|
|
418
|
-
msgstr "
|
|
419
|
+
msgstr "Abrir Recientes"
|
|
419
420
|
|
|
420
421
|
#: psychopy/app/builder/builder.py:320 psychopy/app/coder/coder.py:1398
|
|
421
422
|
#, python-format
|
|
@@ -582,11 +583,11 @@ msgstr "Ejecutar el script actual"
|
|
|
582
583
|
#: psychopy/app/builder/builder.py:449 psychopy/app/coder/coder.py:1679
|
|
583
584
|
#, python-format
|
|
584
585
|
msgid "Send to runner\t%s"
|
|
585
|
-
msgstr "Enviar al
|
|
586
|
+
msgstr "Enviar al runner\t%s"
|
|
586
587
|
|
|
587
588
|
#: psychopy/app/builder/builder.py:450 psychopy/app/coder/coder.py:1680
|
|
588
589
|
msgid "Send current script to runner"
|
|
589
|
-
msgstr "Enviar script actual
|
|
590
|
+
msgstr "Enviar script actual a ejecución (runner)"
|
|
590
591
|
|
|
591
592
|
#: psychopy/app/builder/builder.py:454 psychopy/app/coder/coder.py:1685
|
|
592
593
|
msgid "PsychoPy updates..."
|
|
@@ -606,7 +607,7 @@ msgstr "Administrar paquetes de Python y complementos opcionales para PsychoPy"
|
|
|
606
607
|
|
|
607
608
|
#: psychopy/app/builder/builder.py:464 psychopy/app/coder/coder.py:1693
|
|
608
609
|
msgid "Benchmark wizard"
|
|
609
|
-
msgstr "Asistente de
|
|
610
|
+
msgstr "Asistente de Benchmark"
|
|
610
611
|
|
|
611
612
|
#: psychopy/app/builder/builder.py:465 psychopy/app/coder/coder.py:1694
|
|
612
613
|
msgid "Check software & hardware, generate report"
|
|
@@ -1020,11 +1021,11 @@ msgstr "Compilar en script JS"
|
|
|
1020
1021
|
|
|
1021
1022
|
#: psychopy/app/builder/builder.py:4379 psychopy/app/coder/coder.py:2940
|
|
1022
1023
|
msgid "Runner"
|
|
1023
|
-
msgstr "
|
|
1024
|
+
msgstr "Runner"
|
|
1024
1025
|
|
|
1025
1026
|
#: psychopy/app/builder/builder.py:4381 psychopy/app/coder/coder.py:2941
|
|
1026
1027
|
msgid "Send experiment to Runner"
|
|
1027
|
-
msgstr "Enviar experimento a Runner"
|
|
1028
|
+
msgstr "Enviar experimento a ejecución (Runner)"
|
|
1028
1029
|
|
|
1029
1030
|
#: psychopy/app/builder/builder.py:4387 psychopy/app/coder/coder.py:2945
|
|
1030
1031
|
msgid "Run"
|
|
@@ -1982,7 +1983,7 @@ msgstr "Error de sintaxis de Python en el campo `{}`: {}"
|
|
|
1982
1983
|
#: psychopy/app/builder/validators.py:528
|
|
1983
1984
|
#, python-brace-format
|
|
1984
1985
|
msgid "Looks like your variable '{code}' in '{displayName}' should be set to update."
|
|
1985
|
-
msgstr ""
|
|
1986
|
+
msgstr "Parece que su variable’{code}’ en ‘{displayName}’ debe ser definido para actualizar."
|
|
1986
1987
|
|
|
1987
1988
|
#: psychopy/app/builder/validators.py:548
|
|
1988
1989
|
msgid "Python var `{}` in `{}` is same as Name"
|
|
@@ -2129,7 +2130,7 @@ msgstr "Asistente de fuente"
|
|
|
2129
2130
|
|
|
2130
2131
|
#: psychopy/app/coder/coder.py:1261
|
|
2131
2132
|
msgid "Shell"
|
|
2132
|
-
msgstr "
|
|
2133
|
+
msgstr "Shell (Caparazón)"
|
|
2133
2134
|
|
|
2134
2135
|
#: psychopy/app/coder/coder.py:1267 psychopy/app/plugin_manager/dialog.py:38
|
|
2135
2136
|
msgid "Output"
|
|
@@ -2606,7 +2607,7 @@ msgstr "Cerrar el shell actual."
|
|
|
2606
2607
|
|
|
2607
2608
|
#: psychopy/app/coder/repl.py:66
|
|
2608
2609
|
msgid "Close the current shell and start a new one, this will clear any variables."
|
|
2609
|
-
msgstr ""
|
|
2610
|
+
msgstr "Cierre el sell actual y comience uno nuevo, esto borrará todas las variables."
|
|
2610
2611
|
|
|
2611
2612
|
#: psychopy/app/coder/repl.py:86 psychopy/app/stdout/stdOutRich.py:223
|
|
2612
2613
|
msgid "Clear all previous output."
|
|
@@ -2671,7 +2672,7 @@ msgstr "Esta versión es una actualización demasiado grande para manejarla auto
|
|
|
2671
2672
|
|
|
2672
2673
|
#: psychopy/app/connections/updates.py:144
|
|
2673
2674
|
msgid "Please fetch the latest version from www.psychopy.org and install manually."
|
|
2674
|
-
msgstr ""
|
|
2675
|
+
msgstr "Por favor busque la última versión en www.psychopy.org e instálela de forma manual."
|
|
2675
2676
|
|
|
2676
2677
|
#: psychopy/app/connections/updates.py:149
|
|
2677
2678
|
msgid "Go to downloads"
|
|
@@ -3845,7 +3846,7 @@ msgstr "ejecutar script"
|
|
|
3845
3846
|
|
|
3846
3847
|
#: psychopy/app/preferencesDlg.py:118
|
|
3847
3848
|
msgid "runner script"
|
|
3848
|
-
msgstr "script
|
|
3849
|
+
msgstr "ejecutor(runner) script"
|
|
3849
3850
|
|
|
3850
3851
|
#: psychopy/app/preferencesDlg.py:119
|
|
3851
3852
|
msgid "stop script"
|
|
@@ -3985,7 +3986,7 @@ msgstr "tiempo de espera"
|
|
|
3985
3986
|
|
|
3986
3987
|
#: psychopy/app/preferencesDlg.py:156
|
|
3987
3988
|
msgid "Builder, Coder and Runner"
|
|
3988
|
-
msgstr "Constructor,
|
|
3989
|
+
msgstr "Constructor, Codificador y Ejecutor"
|
|
3989
3990
|
|
|
3990
3991
|
#: psychopy/app/preferencesDlg.py:157
|
|
3991
3992
|
msgid "same as in the file"
|
|
@@ -4110,7 +4111,7 @@ msgstr "Cargando tarea"
|
|
|
4110
4111
|
|
|
4111
4112
|
#: psychopy/app/runner/runner.py:147
|
|
4112
4113
|
msgid "Closing Runner"
|
|
4113
|
-
msgstr "
|
|
4114
|
+
msgstr "Cerrando el Runner"
|
|
4114
4115
|
|
|
4115
4116
|
#: psychopy/app/runner/runner.py:150
|
|
4116
4117
|
msgid "Quitting PsychoPy"
|
|
@@ -4268,27 +4269,27 @@ msgstr "&Ventana siguiente\t%s"
|
|
|
4268
4269
|
|
|
4269
4270
|
#: psychopy/app/utils.py:1466
|
|
4270
4271
|
msgid "Show &builder"
|
|
4271
|
-
msgstr "Mostrar
|
|
4272
|
+
msgstr "Mostrar builder"
|
|
4272
4273
|
|
|
4273
4274
|
#: psychopy/app/utils.py:1466
|
|
4274
4275
|
msgid "Show Builder"
|
|
4275
|
-
msgstr "Mostrar
|
|
4276
|
+
msgstr "Mostrar Builder"
|
|
4276
4277
|
|
|
4277
4278
|
#: psychopy/app/utils.py:1473
|
|
4278
4279
|
msgid "Show &coder"
|
|
4279
|
-
msgstr "Mostrar
|
|
4280
|
+
msgstr "Mostrar coder"
|
|
4280
4281
|
|
|
4281
4282
|
#: psychopy/app/utils.py:1473
|
|
4282
4283
|
msgid "Show Coder"
|
|
4283
|
-
msgstr "Mostrar
|
|
4284
|
+
msgstr "Mostrar Coder"
|
|
4284
4285
|
|
|
4285
4286
|
#: psychopy/app/utils.py:1480
|
|
4286
4287
|
msgid "Show &runner"
|
|
4287
|
-
msgstr "Mostrar
|
|
4288
|
+
msgstr "Mostrar ejecutor"
|
|
4288
4289
|
|
|
4289
4290
|
#: psychopy/app/utils.py:1480
|
|
4290
4291
|
msgid "Show Runner"
|
|
4291
|
-
msgstr "Mostrar
|
|
4292
|
+
msgstr "Mostrar Runner"
|
|
4292
4293
|
|
|
4293
4294
|
#: psychopy/data/experiment.py:425
|
|
4294
4295
|
msgid "Attempted to pause experiment '{}', but it is already paused. Status will remain unchanged."
|
|
@@ -4340,7 +4341,7 @@ msgstr "Archivo de condiciones no encontrado: %s"
|
|
|
4340
4341
|
|
|
4341
4342
|
#: psychopy/data/utils.py:377
|
|
4342
4343
|
msgid "openpyxl or xlrd is required for loading excel files, but neither was found."
|
|
4343
|
-
msgstr ""
|
|
4344
|
+
msgstr "openpyxl o xlrd es requerido para cargar archivos de excel, pero ninguno ha sido encontrado."
|
|
4344
4345
|
|
|
4345
4346
|
#: psychopy/data/utils.py:452
|
|
4346
4347
|
#, python-format
|
|
@@ -4433,7 +4434,7 @@ msgstr "Duración esperada(s)"
|
|
|
4433
4434
|
|
|
4434
4435
|
#: psychopy/experiment/components/_base.py:106
|
|
4435
4436
|
msgid "Store the onset/offset times in the data file (as well as in the log file)."
|
|
4436
|
-
msgstr ""
|
|
4437
|
+
msgstr "Almacena los tiempos onset/offset en un archivo de datos (así como el archivo tipo log)."
|
|
4437
4438
|
|
|
4438
4439
|
#: psychopy/experiment/components/_base.py:111
|
|
4439
4440
|
msgid "Save onset/offset times"
|
|
@@ -5081,7 +5082,7 @@ msgstr "Velocidad de los puntos (desplazamiento por cuadro en las unidades espec
|
|
|
5081
5082
|
|
|
5082
5083
|
#: psychopy/experiment/components/dots/__init__.py:92
|
|
5083
5084
|
msgid "Coherence of the dots (fraction moving in the signal direction on any one frame)"
|
|
5084
|
-
msgstr ""
|
|
5085
|
+
msgstr "Coherencia en los puntos (fracción moviéndose en la dirección de la señal en cualquiera de los cuadros)."
|
|
5085
5086
|
|
|
5086
5087
|
#: psychopy/experiment/components/dots/__init__.py:101
|
|
5087
5088
|
msgid "Size of the dots IN PIXELS regardless of the set units"
|
|
@@ -5294,7 +5295,7 @@ msgstr "Una imagen para definir la máscara alfa (es decir, forma): gauss, círc
|
|
|
5294
5295
|
|
|
5295
5296
|
#: psychopy/experiment/components/grating/__init__.py:73
|
|
5296
5297
|
msgid "Spatial frequency of image repeats across the grating in 1 or 2 dimensions, e.g. 4 or [2,3]"
|
|
5297
|
-
msgstr ""
|
|
5298
|
+
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]"
|
|
5298
5299
|
|
|
5299
5300
|
#: psychopy/experiment/components/grating/__init__.py:95 psychopy/experiment/components/image/__init__.py:116
|
|
5300
5301
|
#: psychopy/experiment/components/movie/__init__.py:127 psychopy/experiment/components/polygon/__init__.py:103
|
|
@@ -5345,6 +5346,8 @@ msgstr "La imagen que se mostrará: un nombre de archivo, incluida la ruta"
|
|
|
5345
5346
|
#: psychopy/experiment/components/image/__init__.py:63
|
|
5346
5347
|
msgid "An image to define the alpha mask through which the image is seen - gauss, circle, None or a filename (including path)"
|
|
5347
5348
|
msgstr ""
|
|
5349
|
+
"Una imagen para definir la mascará alpha a través de la cual la imagen es vista - gausiano, circulo, Ninguno o un nombre de "
|
|
5350
|
+
"archivo ( incluyendo su ruta)"
|
|
5348
5351
|
|
|
5349
5352
|
#: psychopy/experiment/components/image/__init__.py:72
|
|
5350
5353
|
msgid "Resolution of the mask if one is used."
|
|
@@ -5961,7 +5964,7 @@ msgstr "Color de la línea alrededor de la barra de progreso."
|
|
|
5961
5964
|
|
|
5962
5965
|
#: psychopy/experiment/components/progress/__init__.py:65
|
|
5963
5966
|
msgid "Value between 0 (not started) and 1 (complete) to set the progress bar to."
|
|
5964
|
-
msgstr ""
|
|
5967
|
+
msgstr "Valor entre 0 (no iniciado) y 1 ( completo) para definir la barra de progreso."
|
|
5965
5968
|
|
|
5966
5969
|
#: psychopy/experiment/components/progress/__init__.py:67
|
|
5967
5970
|
msgid "Progress"
|
|
@@ -6280,7 +6283,7 @@ msgstr "Ajuste de fondo"
|
|
|
6280
6283
|
|
|
6281
6284
|
#: psychopy/experiment/components/routineSettings/__init__.py:147
|
|
6282
6285
|
msgid "Save the start and stop times of this Routine (according to the global clock) to the data file."
|
|
6283
|
-
msgstr ""
|
|
6286
|
+
msgstr "Guarda los tiempos de inicio y de finalización de esta rutina (de acuerdo al reloj global) del archivo de datos."
|
|
6284
6287
|
|
|
6285
6288
|
#: psychopy/experiment/components/serialOut/__init__.py:29
|
|
6286
6289
|
msgid "Serial out: send signals from a serial port"
|
|
@@ -6626,6 +6629,8 @@ msgstr "Guardar archivo hdf5"
|
|
|
6626
6629
|
#: psychopy/experiment/components/settings/__init__.py:389
|
|
6627
6630
|
msgid "How much output do you want in the log files? ('error' is fewest messages, 'debug' is most)"
|
|
6628
6631
|
msgstr ""
|
|
6632
|
+
"Que cantidad de salida usted quiere en el archivo tipo log? (‘error’ significa menos mensajes, ‘debug’ significa la mayor "
|
|
6633
|
+
"cantidad)"
|
|
6629
6634
|
|
|
6630
6635
|
#: psychopy/experiment/components/settings/__init__.py:400
|
|
6631
6636
|
msgid "Place the HTML files will be saved locally "
|
|
@@ -7017,7 +7022,7 @@ msgstr "Código personalizado"
|
|
|
7017
7022
|
|
|
7018
7023
|
#: psychopy/experiment/components/static/__init__.py:32
|
|
7019
7024
|
msgid "Static: Static screen period (e.g. an ISI). Useful for pre-loading stimuli."
|
|
7020
|
-
msgstr ""
|
|
7025
|
+
msgstr "Estatica: Periodo de tiempo estático (p.e. un ISI). Útil para precargar estímulos."
|
|
7021
7026
|
|
|
7022
7027
|
#: psychopy/experiment/components/static/__init__.py:49
|
|
7023
7028
|
msgid "Custom code to be run during the static period (after updates)"
|
|
@@ -7273,6 +7278,8 @@ msgid ""
|
|
|
7273
7278
|
"To have a fixed random sequence provide an integer of your choosing here. Leave blank to have a new random sequence on each run "
|
|
7274
7279
|
"of the experiment."
|
|
7275
7280
|
msgstr ""
|
|
7281
|
+
"Para tener una secuencia aleatoria fija provea un número entero de su preferencia aquí. Deje en blanco para tener una secuencia "
|
|
7282
|
+
"aleatoria para cada ejecución de este experimento."
|
|
7276
7283
|
|
|
7277
7284
|
#: psychopy/experiment/loops.py:145 psychopy/experiment/loops.py:490 psychopy/experiment/loops.py:627
|
|
7278
7285
|
msgid ""
|
|
@@ -8068,7 +8075,7 @@ msgstr ""
|
|
|
8068
8075
|
|
|
8069
8076
|
#: psychopy/preferences/hints.py:67
|
|
8070
8077
|
msgid "Show an error dialog when PsychoPy encounters an unhandled internal error."
|
|
8071
|
-
msgstr ""
|
|
8078
|
+
msgstr "Muestra un dialogo de error cuando PsychoPy encuentra un error interno no manejado."
|
|
8072
8079
|
|
|
8073
8080
|
#: psychopy/preferences/hints.py:70
|
|
8074
8081
|
msgid "Theme"
|
|
@@ -8428,7 +8435,7 @@ msgstr "PavloviaSession.createProject recibió un nombre de espacio ({namespace}
|
|
|
8428
8435
|
#: psychopy/projects/pavlovia.py:310
|
|
8429
8436
|
#, python-brace-format
|
|
8430
8437
|
msgid "Project `{namespace}/{name}` already exists, please choose another name."
|
|
8431
|
-
msgstr ""
|
|
8438
|
+
msgstr "El proyecto `{namespace}/{name}` ya existe, por favor escoja otro nombre."
|
|
8432
8439
|
|
|
8433
8440
|
#: psychopy/projects/pavlovia.py:462
|
|
8434
8441
|
msgid "Most stars"
|
|
@@ -8488,6 +8495,9 @@ msgid ""
|
|
|
8488
8495
|
"\n"
|
|
8489
8496
|
"Sync failed - could not find project with id {}"
|
|
8490
8497
|
msgstr ""
|
|
8498
|
+
"\n"
|
|
8499
|
+
"\n"
|
|
8500
|
+
"La Sincronización falló - no se ha podido encontrar proyecto con id {}"
|
|
8491
8501
|
|
|
8492
8502
|
#: psychopy/projects/pavlovia.py:1186
|
|
8493
8503
|
msgid "Avatar is too big, should be at most 200 KB."
|
|
@@ -8608,11 +8618,11 @@ msgstr "Descargar la biblioteca PsychoPy desde Github (puede tardar un poco)"
|
|
|
8608
8618
|
|
|
8609
8619
|
#: psychopy/tools/wizard.py:32
|
|
8610
8620
|
msgid "Benchmark"
|
|
8611
|
-
msgstr "
|
|
8621
|
+
msgstr "Benchmark"
|
|
8612
8622
|
|
|
8613
8623
|
#: psychopy/tools/wizard.py:33
|
|
8614
8624
|
msgid "benchmark version"
|
|
8615
|
-
msgstr "versión
|
|
8625
|
+
msgstr "versión del benchmark"
|
|
8616
8626
|
|
|
8617
8627
|
#: psychopy/tools/wizard.py:35
|
|
8618
8628
|
msgid "dots_circle"
|
|
@@ -8903,9 +8913,9 @@ msgid ""
|
|
|
8903
8913
|
" </p>"
|
|
8904
8914
|
msgstr ""
|
|
8905
8915
|
"<p>Recursos:\n"
|
|
8906
|
-
"
|
|
8907
|
-
"
|
|
8908
|
-
"
|
|
8916
|
+
" |<a href=\"https://www.psychopy.org/documentation.html\">En-documentación de línea</a>\n"
|
|
8917
|
+
" | Descargar <a href=\"https://www.psychopy.org/PsychoPyManual.pdf\">Manual en PDF</a>\n"
|
|
8918
|
+
" |<a href=\"https://discourse.psychopy.org\">Buscar usuario-archivos de grupo</a>\n"
|
|
8909
8919
|
"</p>"
|
|
8910
8920
|
|
|
8911
8921
|
#: psychopy/tools/wizard.py:455
|
|
@@ -9017,7 +9027,7 @@ msgstr "luego vuelve a cambiar. No necesitas hacer nada."
|
|
|
9017
9027
|
|
|
9018
9028
|
#: psychopy/tools/wizard.py:567
|
|
9019
9029
|
msgid "Optional: For best results, please quit all email programs, web-browsers, "
|
|
9020
|
-
msgstr ""
|
|
9030
|
+
msgstr "Opcional: Para mejorar resultados, por favor finalice todos los programas de e-mail, navegadores de internet,"
|
|
9021
9031
|
|
|
9022
9032
|
#: psychopy/tools/wizard.py:570
|
|
9023
9033
|
msgid "Dropbox, backup or sync services, and others."
|
|
@@ -9067,7 +9077,7 @@ msgstr " Asistente de evaluación comparativa (Benchmark)"
|
|
|
9067
9077
|
|
|
9068
9078
|
#: psychopy/tools/wizard.py:650
|
|
9069
9079
|
msgid "Benchmarking takes ~20-30 seconds to gather"
|
|
9070
|
-
msgstr "La evaluación
|
|
9080
|
+
msgstr "La evaluación tipo Benchmark tarda entre 20 y 30 segundos en recopilarse"
|
|
9071
9081
|
|
|
9072
9082
|
#: psychopy/tools/wizard.py:651
|
|
9073
9083
|
msgid "configuration and performance data. Begin?"
|
|
@@ -9083,11 +9093,11 @@ msgstr "ventana visual para dibujar"
|
|
|
9083
9093
|
|
|
9084
9094
|
#: psychopy/tools/wizard.py:702
|
|
9085
9095
|
msgid "Benchmark complete! (See the Coder output window.)"
|
|
9086
|
-
msgstr "¡Evaluación
|
|
9096
|
+
msgstr "¡Evaluación Benchmark completa! (Consulte la ventana de resultados del Coder)\""
|
|
9087
9097
|
|
|
9088
9098
|
#: psychopy/tools/wizard.py:711
|
|
9089
9099
|
msgid "Click OK to view full configuration and benchmark data."
|
|
9090
|
-
msgstr "Haga clic en Aceptar para ver la configuración completa y los datos
|
|
9100
|
+
msgstr "Haga clic en Aceptar para ver la configuración completa y los datos del benchmark."
|
|
9091
9101
|
|
|
9092
9102
|
#: psychopy/tools/wizard.py:712
|
|
9093
9103
|
msgid "Click Cancel to stay in PsychoPy."
|
|
Binary file
|