Skip to content

Commit 9b0b9d2

Browse files
authored
Merge pull request #5494 from kattni/update-help-message
Update help() message to have circuitpython.org
2 parents cf4597c + 2c15f54 commit 9b0b9d2

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

locale/circuitpython.pot

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1924,6 +1924,7 @@ msgstr ""
19241924
msgid "Pull not used when direction is output."
19251925
msgstr ""
19261926

1927+
#: ports/atmel-samd/common-hal/watchdog/WatchDogTimer.c
19271928
#: ports/raspberrypi/common-hal/watchdog/WatchDogTimer.c
19281929
msgid "RAISE mode is not implemented"
19291930
msgstr ""
@@ -2413,6 +2414,7 @@ msgstr ""
24132414
msgid "WARNING: Your code filename has two extensions\n"
24142415
msgstr ""
24152416

2417+
#: ports/atmel-samd/common-hal/watchdog/WatchDogTimer.c
24162418
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
24172419
#: ports/raspberrypi/common-hal/watchdog/WatchDogTimer.c
24182420
msgid "WatchDogTimer cannot be deinitialized once mode is set to RESET"
@@ -2439,9 +2441,9 @@ msgstr ""
24392441
msgid ""
24402442
"Welcome to Adafruit CircuitPython %s!\n"
24412443
"\n"
2442-
"Please visit learn.adafruit.com/category/circuitpython for project guides.\n"
2444+
"Visit circuitpython.org for more information.\n"
24432445
"\n"
2444-
"To list built-in modules please do `help(\"modules\")`.\n"
2446+
"To list built-in modules type `help(\"modules\")`.\n"
24452447
msgstr ""
24462448

24472449
#: shared-bindings/wifi/Radio.c
@@ -3325,10 +3327,6 @@ msgstr ""
33253327
msgid "int() arg 2 must be >= 2 and <= 36"
33263328
msgstr ""
33273329

3328-
#: py/objstr.c
3329-
msgid "integer required"
3330-
msgstr ""
3331-
33323330
#: extmod/ulab/code/numpy/approx.c
33333331
msgid "interp is defined for 1D iterables of equal length"
33343332
msgstr ""
@@ -3902,6 +3900,7 @@ msgstr ""
39023900
#: ports/espressif/boards/gravitech_cucumber_rs/mpconfigboard.h
39033901
#: ports/espressif/boards/lilygo_ttgo_t8_s2_st7789/mpconfigboard.h
39043902
#: ports/espressif/boards/lolin_s2_mini/mpconfigboard.h
3903+
#: ports/espressif/boards/lolin_s2_pico/mpconfigboard.h
39053904
#: ports/espressif/boards/microdev_micro_c3/mpconfigboard.h
39063905
#: ports/espressif/boards/microdev_micro_s2/mpconfigboard.h
39073906
#: ports/espressif/boards/morpheans_morphesp-240/mpconfigboard.h
@@ -4155,6 +4154,7 @@ msgstr ""
41554154
msgid "time.struct_time() takes a 9-sequence"
41564155
msgstr ""
41574156

4157+
#: ports/atmel-samd/common-hal/watchdog/WatchDogTimer.c
41584158
#: ports/espressif/common-hal/watchdog/WatchDogTimer.c
41594159
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
41604160
#: ports/raspberrypi/common-hal/watchdog/WatchDogTimer.c

py/builtinhelp.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ STATIC mp_obj_t mp_builtin_help(size_t n_args, const mp_obj_t *args) {
176176
if (n_args == 0) {
177177
// print a general help message. Translate only works on single strings on one line.
178178
mp_cprintf(MP_PYTHON_PRINTER,
179-
translate("Welcome to Adafruit CircuitPython %s!\n\nPlease visit learn.adafruit.com/category/circuitpython for project guides.\n\nTo list built-in modules please do `help(\"modules\")`.\n"),
179+
translate("Welcome to Adafruit CircuitPython %s!\n\nVisit circuitpython.org for more information.\n\nTo list built-in modules type `help(\"modules\")`.\n"),
180180
MICROPY_GIT_TAG);
181181
} else {
182182
// try to print something sensible about the given object

0 commit comments

Comments
 (0)