diff --git a/locale/circuitpython.pot b/locale/circuitpython.pot index 03c5fae62f..85c46aa4b5 100644 --- a/locale/circuitpython.pot +++ b/locale/circuitpython.pot @@ -1924,6 +1924,7 @@ msgstr "" msgid "Pull not used when direction is output." msgstr "" +#: ports/atmel-samd/common-hal/watchdog/WatchDogTimer.c #: ports/raspberrypi/common-hal/watchdog/WatchDogTimer.c msgid "RAISE mode is not implemented" msgstr "" @@ -2413,6 +2414,7 @@ msgstr "" msgid "WARNING: Your code filename has two extensions\n" msgstr "" +#: ports/atmel-samd/common-hal/watchdog/WatchDogTimer.c #: ports/nrf/common-hal/watchdog/WatchDogTimer.c #: ports/raspberrypi/common-hal/watchdog/WatchDogTimer.c msgid "WatchDogTimer cannot be deinitialized once mode is set to RESET" @@ -2439,9 +2441,9 @@ msgstr "" msgid "" "Welcome to Adafruit CircuitPython %s!\n" "\n" -"Please visit learn.adafruit.com/category/circuitpython for project guides.\n" +"Visit circuitpython.org for more information.\n" "\n" -"To list built-in modules please do `help(\"modules\")`.\n" +"To list built-in modules type `help(\"modules\")`.\n" msgstr "" #: shared-bindings/wifi/Radio.c @@ -3325,10 +3327,6 @@ msgstr "" msgid "int() arg 2 must be >= 2 and <= 36" msgstr "" -#: py/objstr.c -msgid "integer required" -msgstr "" - #: extmod/ulab/code/numpy/approx.c msgid "interp is defined for 1D iterables of equal length" msgstr "" @@ -3902,6 +3900,7 @@ msgstr "" #: ports/espressif/boards/gravitech_cucumber_rs/mpconfigboard.h #: ports/espressif/boards/lilygo_ttgo_t8_s2_st7789/mpconfigboard.h #: ports/espressif/boards/lolin_s2_mini/mpconfigboard.h +#: ports/espressif/boards/lolin_s2_pico/mpconfigboard.h #: ports/espressif/boards/microdev_micro_c3/mpconfigboard.h #: ports/espressif/boards/microdev_micro_s2/mpconfigboard.h #: ports/espressif/boards/morpheans_morphesp-240/mpconfigboard.h @@ -4155,6 +4154,7 @@ msgstr "" msgid "time.struct_time() takes a 9-sequence" msgstr "" +#: ports/atmel-samd/common-hal/watchdog/WatchDogTimer.c #: ports/espressif/common-hal/watchdog/WatchDogTimer.c #: ports/nrf/common-hal/watchdog/WatchDogTimer.c #: ports/raspberrypi/common-hal/watchdog/WatchDogTimer.c diff --git a/py/builtinhelp.c b/py/builtinhelp.c index 35bd3d3bca..fc32de5abe 100644 --- a/py/builtinhelp.c +++ b/py/builtinhelp.c @@ -176,7 +176,7 @@ STATIC mp_obj_t mp_builtin_help(size_t n_args, const mp_obj_t *args) { if (n_args == 0) { // print a general help message. Translate only works on single strings on one line. mp_cprintf(MP_PYTHON_PRINTER, - 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"), + translate("Welcome to Adafruit CircuitPython %s!\n\nVisit circuitpython.org for more information.\n\nTo list built-in modules type `help(\"modules\")`.\n"), MICROPY_GIT_TAG); } else { // try to print something sensible about the given object